Plugin directory / Developer / pack-agent-dsh
pack-agent-dsh
Verified · install-tested on dsh sakikoTGW
What it does
Agent Modpack - install your agent like installing a Minecraft modpack
Works — verified, early-stage project
Agent Modpack - install your agent like installing a Minecraft modpack It installs cleanly and boots without issues in our testing. It's early-stage but functional.
“Verified” means our automated CI actually ran dsh plugin add in a clean profile and it booted — nothing more. Feature descriptions and version compatibility are the author’s claims. This is not a security audit and not an endorsement of third-party code.
README
Agent Modpack
English | 中文
Manage DeepSeek Harness config like a Minecraft modpack. Agent Modpack (packagent) packs skills, rules, and MCP into a .pack.zip and installs them into Claude Code, Codex, Cursor, and other harnesses. Uninstall uses the install ledger.
Requires Bun ≥ 1.1. npm: @sakikotgw/pack-agent.
DeepSeek Harness uses a separate package: @sakikotgw/pack-agent-dsh. See dsh-plugin/README.md.
Install
From npm
npm install @sakikotgw/pack-agent
packagent detect
One-off:
npx --yes -p @sakikotgw/pack-agent packagent install foo.pack.json
On Windows, npx --package @sakikotgw/pack-agent -- pack-agent fails. The bin name is packagent.
Use
packagent agents init
packagent export --agent <id>
packagent install .agent-pack/exports/<id>.pack.json --runtime claude-code
packagent eject --name <id>
--runtime installs to one harness. Without it, install targets every harness listed under Will install to in packagent detect. Install writes the current project only. Pass --global-config to write user-global harness config.
MCP
{
"mcpServers": {
"agent-pack": {
"command": "bun",
"args": ["node_modules/@sakikotgw/pack-agent/mcp/server.ts"],
"env": { "AGENT_PACK_CWD": "." }
}
}
}
Supported harnesses
| id | skills | rules | MCP |
|---|---|---|---|
claude-code |
.claude/skills |
CLAUDE.md |
.mcp.json |
codex |
.agents/skills |
AGENTS.md |
.codex/config.toml |
opencode |
.opencode/skills |
AGENTS.md |
opencode.json |
openclaw |
skills.load.extraDirs |
AGENTS.md |
config/mcporter.json |
hermes |
external_dirs | AGENTS.md |
~/.hermes/config.yaml |
gemini-cli |
.gemini/skills |
GEMINI.md |
.gemini/settings.json |
windsurf |
.windsurf/skills |
— | .windsurf/mcp_config.json |
github-copilot |
— | .github/copilot-instructions.md |
.vscode/mcp.json |
Run from source
git clone https://github.com/sakikoTGW/pack-agent.git
cd pack-agent
bun install
License
Install
Install the catalog once, then DeepSeek Harness can find and install any plugin from this site automatically:
dsh plugin add dshbase-catalog Then say "install pack-agent-dsh for me" — your agent finds it in the directory and installs it. Docs: dshbase-catalog · verified packs.
Web profile:
dsh plugin --profile web add @sakikotgw/pack-agent-dsh Headless (CLI) profile:
dsh plugin --profile headless add @sakikotgw/pack-agent-dsh Package
npm: @sakikotgw/pack-agent-dsh · version 0.4.3 · tested on dsh 0.1.0-rc.6
Test report
Verified end-to-end: L1 install + L2 load + L3 runtime Q&A on dsh 0.1.0-rc.6.
When to use it
Extend the agent's coding surface — give it a new tool, workflow, or integration so it handles a dev task it couldn't before.
Who it's for
Developers who want dsh to behave like a teammate on real codebases — editing, running, and verifying changes rather than just answering.
For developers — extending it
The tool/command surface is the seam: expose more of the SDK, add smarter context wiring, or tighten the loop between code changes and verification.