npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@loommii/dsh-input-history

v0.2.0

Published

Arrow-key input history for the DeepSeek Harness Web GUI: press Up/Down at the composer boundary to recall previously sent messages, with a floating history dropdown and a /history command that opens the same panel from the slash menu. Built for the Lexic

Readme

🎬 演示

✨ 功能

本插件给每个会话注入两条互补的输入历史召回通道:

  • ⌨️ 终端式方向键翻查 — 仿 shell 命令历史,不弹列表,↑/↓ 直接替换输入框内容
  • 📋 /history 历史面板 — 可搜索的悬浮列表,支持鼠标点选与键盘操作

⌨️ 方向键翻查

| 操作 | 效果 | |---|---| | ↑ / ↓(空输入框或光标在最前) | 开始翻查,取回最近一条已发送消息 | | Esc | 还原草稿并退出翻查 |

📋 /history 面板

| 方式 | 召回语义 | |---|---| | 斜杠菜单选中 /history | 插入模式:消息插入到 /history 词元位置,前后文保留 |

面板支持搜索过滤、鼠标点选与 ↑/↓ + Enter 操作;Esc 或点击面板外取消。

数据读取自当前会话的完整日志(含分页),按会话严格隔离;相邻重复消息自动折叠。

🚀 安装

从 NPM 安装:

dsh plugin --profile web add @loommii/dsh-input-history@latest

或从 GitHub 安装:

dsh plugin --profile web add github:loommii/dsh-input-history

安装后重启 profile(dsh web / dsh --profile <name>)。

升级 / 卸载:

dsh plugin --profile web update @loommii/dsh-input-history
dsh plugin --profile web remove @loommii/dsh-input-history

💡 使用

聚焦任意会话的聊天输入框:

  • 空输入框按 ↑/↓,或光标移到最前按 ↑:开始终端式翻查。
  • 输入 /history 并从斜杠菜单选中,或直接回车:打开历史面板。

🏗️ 架构

本插件是纯客户端 UI:历史从宿主 remote.session 完整会话日志分页读取(按会话隔离缓存),回填走 conversation 输入壳的 setDraft。

📄 许可

MIT