DeepSeek Harness plugin

dsh-at-mention

DSH profile bundle: @-mention files and directories of the current session's workspace in the composer — prioritized fuzzy search, arrow-key/Tab completion, plain-text mentions that can be copied or

Jump to install

Source facts

Repository
ShiraGawaAnri/dsh-at-mention
Latest update
Aug 16, 2026
Category
Docs & Rendering
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/ShiraGawaAnri/dsh-at-mention
Plugin: dsh-at-mention
Author: ShiraGawaAnri

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer4 files
README.mdSource · read only
README language

中文 | English

dsh-at-mention

A DSH profile bundle that adds @-file mentions to the composer, with an interaction model similar to Claude Code / Codex Desktop. Typing @ in the input box opens a prioritized fuzzy search over files and directories in the current session workspace.

Features

  • Per-session workspace scope: @ only surfaces files/directories of the

session's own workspace (header.cwd); switching workspaces switches the index automatically (LRU cache for up to 3 workspaces, no rescanning).

  • Prioritized fuzzy search: exact name > name prefix > name substring >

path prefix > path substring > fuzzy subsequence; shallower directories and shorter paths rank higher, matches at path-segment boundaries get a bonus.

  • Keyboard: ↑/↓ to move, Tab / Enter to pick, Esc to close

(Tab is consumed even with no matches, so focus never jumps away).

  • Space-separated consecutive mentions: @a @b is two mentions, @a@b

is a single token (mirrors the built-in trigger rules).

  • Plain-text mentions: picking inserts @relative/path (configurable:

absolute path, trailing space on/off). The inserted text can be copied or edited later and remains a valid mention.

  • Hover a candidate to see its full path (absolute + relative) in the

tooltip when the row text is truncated.

  • Durable settings in Settings → @ 提及: enable, max results, insert

path style, fuzzy / case-sensitive / directories / trailing space, excluded directories, index file cap, auto-refresh interval, and a manual rebuild index button with live index status.

  • Cross-platform indexing: find fast path on Linux/WSL/macOS, with a

pure readdir fallback anywhere find is missing (e.g. native Windows). Default exclusions: .git, .godot, .import, node_modules, .codegraph, .kimi-code (editable).

Installation

Prerequisites: a working DSH installation (dsh web) and pnpm on PATH (dsh plugin forwards to pnpm).

# 1. Unzip, e.g. to D:\plugins\dsh-at-mention

# 2. Install into the web profile
dsh plugin --profile web add file:D:/plugins/dsh-at-mention

# or from the parent directory of the unzipped folder:
dsh plugin --profile web add ./dsh-at-mention

dsh plugin add runs pnpm in the profile directory and appends the bundle's cordis.patch.yml to the profile patch stack. Restart the web app afterwards (the client bundle and routes are wired at boot).

Removal:

dsh plugin --profile web remove @dsh-external/dsh-at-mention

API routes (same-origin, for reference)

RoutePurpose
GET /_dsh/at-mention/api?q=&sessionId=&root=Fuzzy search over the session workspace index
GET /_dsh/at-mention/api/settingsCurrent settings snapshot
POST /_dsh/at-mention/api/settingsSave settings ({ action: 'save', value: {...} })
GET /_dsh/at-mention/api/statusIndex status (root, count, builtAt, error)
POST /_dsh/at-mention/api/rebuildRebuild the current workspace index

POST routes reject cross-site requests.

Notes

  • The mention text itself is plain text (@relative/path), so the model in

the session resolves it against the session workspace; relative paths are portable across Linux and Windows.

  • While the mention menu is open, the built-in trigger menu is hidden (it

shares the @ trigger); the / command menu is unaffected.