DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Pi Prompts — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

@qw457812/dsh-pi-prompts

Pi Prompts

Expose Pi prompt templates as DeepSeek Harness slash commands

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add @qw457812/dsh-pi-prompts@0.2.3
READMECompatibilityVersions

Compatibility and provenance

Pi Prompts is published as @qw457812/dsh-pi-prompts and currently resolves to version 0.2.3. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.2.3stable
9/10/2026
0.2.2stable
8/27/2026
0.2.1stable
8/19/2026
Show 4 more versionsCollapse versions
0.2.0stable
8/19/2026
0.1.2stable
8/18/2026
0.1.1stable
8/18/2026
0.1.0stable
8/18/2026

Related plugins

Loading related plugins…

Latest
0.2.3
DSH
*
HMR
Process restart
Tree shaking
Declares sideEffects: false
Unpacked size
19.2 kB
Files
7
Surface
any
License
MIT
Source
npm
GitHub
★ 5
Weekly downloads
54
Last push
9/16/2026
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

@qw457812/dsh-pi-prompts

Expose Pi prompt templates as agent-scoped DeepSeek Harness slash commands.

Each direct *.md file in Pi's global or project prompts directory becomes a dsh command. The command name is the file stem, while description and argument-hint are read from YAML frontmatter with the same yaml.parse semantics Pi uses.

Install

Install the bundle into each profile that needs Pi prompts:

dsh plugin --profile <profile> add @qw457812/dsh-pi-prompts

Remove it with:

dsh plugin --profile <profile> remove @qw457812/dsh-pi-prompts

The plugin is profile-scoped; installing it in one profile does not affect other profiles.

Prompt directories

For every root agent, the plugin loads direct *.md children from:

  • Global: $PI_CODING_AGENT_DIR/prompts, or ~/.pi/agent/prompts when the environment variable is unset.
  • Project: <session-cwd>/.pi/prompts, only when that project is trusted by Pi.

Discovery is non-recursive. File symlinks are followed, broken symlinks and invalid dsh command names are skipped, and one bad file does not prevent other templates from loading.

The plugin scans these two directories directly. It does not apply Pi's settings.json prompts entries (including filters and custom paths), CLI prompt paths, or package-provided prompts. Consequently, a direct file disabled through Pi's resource configuration is still exposed by this plugin.

Project trust

The plugin reuses Pi's persisted project-trust policy:

  1. The nearest decision for the canonical session cwd or one of its ancestors in <agent-dir>/trust.json wins.
  2. Without a saved decision, global <agent-dir>/settings.json defaultProjectTrust applies.
  3. always enables project prompts; never and ask disable them. If neither a saved decision nor a valid global default is available, the plugin fails closed.

DSH does not currently present Pi's interactive trust prompt. Use Pi's /trust command to save a decision, then start a new dsh session.

Loading and precedence

Templates are loaded when a root agent is created. Start a new session after adding, changing, or trusting a project prompt.

Project templates override same-named global templates. Existing DSH commands take precedence over all prompt templates, so a project cannot replace built-in or extension commands such as /plan.

Each agent receives commands from its own recorded session cwd; concurrent sessions from different projects do not share project templates.

Prompt format

---
description: "Review: focused"
argument-hint: "[scope]"
---

Review $1. Remaining arguments: ${@:2}

Supported placeholders mirror Pi:

  • $1, $2, ... for positional arguments.
  • $@ and $ARGUMENTS for all arguments.
  • ${N:-default}, ${@:-default}, and ${ARGUMENTS:-default} for defaults.
  • ${@:N} and ${@:N:L} for slices.

Arguments support Pi's single- and double-quoted grouping. Substitution is single-pass, so placeholder-like text inside argument values remains literal.

Development

pnpm install
pnpm run check
npm pack --dry-run

License

MIT. Portions are adapted from Pi's MIT-licensed implementation; see THIRD_PARTY_NOTICES.md.