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 skills/lessweb/deepcode-cli/skill-digesternpx skills add lessweb/deepcode-cli --skill skill-digestergit clone --depth 1 https://github.com/lessweb/deepcode-cliWhat 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.00070 | $0.02564 |
| Opus 5 | $0.00035 | $0.01282 |
| Sonnet 5 | $0.00014 | $0.00513 |
| Haiku 4.5 | $0.00007 | $0.00256 |
Grade A, and why
skill-digester scanned grade A with 0 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 206 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill Digester
Use this skill for two related tasks:
- Review and optionally rewrite the
descriptionfield of another DeepCode skill. - Guide installation of an Agent Skill into an interoperable
.agents/skillsroot.
Interaction Rule
Whenever user input is needed, call the AskUserQuestion tool. Do not ask follow-up questions as plain assistant text. This includes missing skill names or paths, install scope, language preference, duplicate matches, malformed frontmatter decisions, and whether to apply a recommended rewrite.
Workflow
First classify the request:
- If the user asks to install, add, copy, or place an Agent Skill, use the Install Agent Skill Workflow.
- Otherwise, use the Digest Description Workflow.
Digest Description Workflow
- Identify the target skill from the user's request.
-
If the user did not provide a skill name, use
AskUserQuestionto ask for one. -
Locate the skill by running the bundled Node script from this skill directory:
node ~/.deepcode/skills/skill-digester/scripts/find-skill.js "<skill-name-or-path>" "<project-root>"If this skill is loaded from a project-level or different user-level path, use the
scripts/find-skill.jsfile next to thisSKILL.mdinstead. -
The script searches the same roots Deep Code CLI scans, in priority order:
- Project native skills:
./.deepcode/skills/<folder>/SKILL.md - Project interoperable skills:
./.agents/skills/<folder>/SKILL.md - User native skills:
~/.deepcode/skills/<folder>/SKILL.md - User interoperable skills:
~/.agents/skills/<folder>/SKILL.md
- Project native skills:
-
Treat
./as the current Deep Code project root only; do not scan parent directories unless the running project root is changed. -
The script resolves each candidate's skill name the way Deep Code does: use the trimmed frontmatter
namewhen present, otherwise use the folder name with underscores converted to hyphens. -
Match the user's input against the resolved skill name first. If needed, also consider the folder name or an explicit path the user provided.
-
Treat the matched skill's
pathas the sourceSKILL.mdto review. -
Treat the matched skill's
digestTarget.pathas the only outputSKILL.mdpath to create or edit. -
digestTarget.pathalways points to the same scope's native Deep Code root:- Project sources from
./.deepcode/skillsor./.agents/skillsdigest to./.deepcode/skills/<folder>/SKILL.md. - User sources from
~/.deepcode/skillsor~/.agents/skillsdigest to~/.deepcode/skills/<folder>/SKILL.md.
- Project sources from
-
If the script returns one active match, use its
pathfor reading anddigestTarget.pathfor writing. -
If the script returns active and shadowed matches, present each source path and digest target path, then use
AskUserQuestionbefore using a shadowed source. -
If the script returns no match, state that the skill was not found in Deep Code's scanned skill roots and use
AskUserQuestionto ask whether the user wants to try another name.
-
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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 · 206 lines · 70 tokens per session scan A e616d7348d21
skill-digester is a skill published in the GitHub repository lessweb/deepcode-cli (2,224 stars, last pushed 4d ago), licensed MIT. It adds 70 tokens to every session and 2,564 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
bilibili-helper
B站内容助手 - 视频标题描述优化、标签策略、封面设计建议、分区选择、评论互动.
skill-creator
Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.
dsh-doc-standards
Use when writing, moving, reviewing, or auditing documentation in the deepseek-harness repo — choosing hierarchy and detail, separating tutorials from references, checking tutorial progression, trimming doc slop, responding to a verify-doc-budgets failure, or requests like "improve the docs", "audit the docs", "where…
use-artifacts
Teach the agent when and how to use the artifact tool: what content belongs in artifacts, when to upload/update, and the SearchExtraTools + ExecuteExtraTool invocation flow for the deferred artifact tool.
notion-knowledge-capture
Capture conversations and decisions into structured Notion pages; use when turning chats/notes into wiki entries, how-tos, decisions, or FAQs with proper linking.
dsh-first-plugin
当需要从零做出并装上第一个 DSH 插件时使用——给出跑通的完整流程(写文件、写 overlay、加载、验证),以及实测会踩到的三个报错和它们的确切修法。.