Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/vncntvx/dsh-zotero/agents-mdgit clone --depth 1 https://github.com/Vncntvx/dsh-zoteroWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.03308 | $0.03308 |
| Opus 5 | $0.01654 | $0.01654 |
| Sonnet 5 | $0.00662 | $0.00662 |
| Haiku 4.5 | $0.00331 | $0.00331 |
Grade B, and why
dsh-zotero AGENTS.md scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
chmod 600 "$DSH_HOME/.credentials.yaml" "$DSH_HOME/settings.yaml" Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -w '%{http_code}' -o /dev/null http://127.0.0.1:3307 # 200 How it starts
The opening of the file, as written. The whole thing — 126 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Workspace and source of truth
- You work in
.This repo is a standalone sibling to../deepseek-harness. You keep it beside the harness for local dev. Treat this as temp local layout, hard-coded for your machine. - You find the dsh source in
../deepseek-harness. Read../deepseek-harness/docs/AGENTS.md,../deepseek-harness/docs/architecture.md,../deepseek-harness/docs/user/develop/,../deepseek-harness/docs/subsystems/,../deepseek-harness/docs/cookbook/, and../deepseek-harness/packages/*/README.mdwhen you touch harness contracts. - You touch slots, services, the web shell, the client-module graph, or Typert, so you check harness source first. Harness source outranks this file.
Git commit conventions
Follow Conventional Commits: <type>(<scope>): <subject>, types lowercase (feat, fix, refactor, docs, test, chore, perf, style, build, ci, revert), subject in imperative mood, header under 72 chars. Optionally place an emoji matching the type right after the colon, before the subject. Body: blank line, bullet points only, each item wraps at 72, what and why.
Commands
npm install # sibling at ../deepseek-harness; add --no-workspaces only for a nested copy
npm run typecheck # tsc --noEmit for the node, test, and client projects
npm test # vitest unit tests against the mock Zotero server
npm run test:coverage # coverage gate on src/ (97 stmts / 95 branches / 98 funcs / 97 lines); pure re-export and types-only modules excluded, see vitest.config.ts
npm run build # tsc emits the node half into lib/; esbuild emits the browser half lib/client.js (with a loader-handoff self-check)
npm run build:client # rebuild the browser half only
npm run dev # tsc --watch
npm run dev:client # esbuild --watch for the browser half
npm run format # prettier --write across the repo
npm run format:check # verify formatting; run before committing
npm run test:integration # live Zotero at 127.0.0.1:23119; skipped unless ZOTERO_INTEGRATION=1
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 126 lines · 3,308 tokens per session scan B 4efb75859aa8
dsh-zotero AGENTS.md is an instructions file published in the GitHub repository Vncntvx/dsh-zotero (10 stars, last pushed 2d ago), licensed MIT. It adds 3,308 tokens to every session, about $0.0165 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
deepseek-harness AGENTS.md
Instructions for deepseek-ai/deepseek-harness, covering agents.md, pre-release stance: foundation over blast radius, repository layout, commands and host sandbox failures.
deepseek-harness CLAUDE.md
Instructions for deepseek-ai/deepseek-harness, a project described as: DeepSeek Harness: Everything is a Plugin.
dsh-web AGENTS.md
Instructions for zhu1090093659/dsh-web, covering dsh-web repository instructions, repository layout, common commands, repository rules and development workflow.
dsh-mcp-panel AGENTS.md
Instructions for PerryLink/dsh-mcp-panel, covering agents.md, layout, hard rules applied here, config and build.
dsh-industry-research AGENTS.md
Instructions for PerryLink/dsh-industry-research, covering agents.md, layout, hard rules applied here, checks and release.
dsh-mcp-admin AGENTS.md
Instructions for kairoz9/dsh-mcp-admin, covering agents.md — agent & contributor guide for dsh-mcp-admin, 📁 repository structure, 🛠️ development & build commands, 1. install dependencies and 2. run typescript typecheck (0 error tolerance).