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 skills add gongyijie85/mattpocock-skills-dsh-zh --skill ask-matt-zhgit clone --depth 1 https://github.com/gongyijie85/mattpocock-skills-dsh-zhWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/gongyijie85/mattpocock-skills-dsh-zh/ask-matt-zh)<a href="https://agentmods.dev/skills/gongyijie85/mattpocock-skills-dsh-zh/ask-matt-zh"><img src="https://agentmods.dev/badge/skills/gongyijie85/mattpocock-skills-dsh-zh/ask-matt-zh/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/gongyijie85/mattpocock-skills-dsh-zh/ask-matt-zh"><img src="https://agentmods.dev/badge/skills/gongyijie85/mattpocock-skills-dsh-zh/ask-matt-zh.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What 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.1 | $0.00031 | $0.03328 |
| Opus 5 | $0.00015 | $0.01664 |
| Sonnet 5 | $0.00006 | $0.00666 |
| Haiku 4.5 | $0.00003 | $0.00333 |
Grade A, and why
ask-matt-zh 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 — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Ask Matt
你不可能记住每一个 skill,所以问吧。
一个 flow(流程) 是贯穿各 skill 的一条路径。大多数路径沿着一条 main flow(主流程) 展开,并有两条 on-ramp(入口) 汇入其中。其他一切都是独立的,或者是运行在底层的一层 vocabulary(词汇)。
主流程:idea → ship
这是大多数工作走的路线。你有一个想法,希望把它构建出来。
-
grill-with-docs— 通过访谈打磨想法。当你在工作目录中工作时,从这里开始:它是有状态的,会把学到的东西保留在CONTEXT.md和 ADR 中。(没有工作目录?使用grill-me— 见 Standalone。两者运行的是同一个grilling原语;grill-with-docs是会留下书面记录的那个,因此只要有仓库可供留下记录,它就是两者中更好的选择。) -
分支 — 所有问题都能在对话中解决吗? 如果某个问题需要一个可运行的答案(state、业务逻辑、你必须亲眼看到的 UI),就绕道经过一个 prototype,由
handoff双向桥接(prototype 住在自己的目录里,这正是handoff的用途 — 见 Phase boundaries):handoff出去,然后针对那个文件开启一个新 session,prototype用一次性代码回答这个问题,handoff把你学到的东西带回来,并在原始的 idea 线程中引用它。
-
分支 — 这是一个 multi-session(多会话)构建吗?
- 是 →
to-spec(把线程变成 spec),然后to-tickets把它拆成 tracer-bullet tickets,每个 ticket 声明自己的 blocking edges(阻塞边界)。在本地 tracker 上,每个 ticket 是.scratch/<feature>/issues/下的一个文件,手工按 blockers-first(先处理阻塞项)推进;在真正的 tracker 上,这些边变成原生的 blocking links,因此任何 blockers 已完成的 ticket 都可以被领取 — 每个 ticket 启动一次implement,并在每两个之间/clear上下文。每个 ticket 都是自包含的,所以最后一个 ticket 的上下文可以直接丢弃。 - 否 → 就在当前 context window 里运行
implement。
无论哪种方式,
implement都会在内部驱动tdd来构建每个 issue — 一次一个 red-green(红绿)切片 — 然后在提交之前,运行code-review(对 diff 的双轴审查:Standards + Spec)收尾。当你只是想在没有完整 spec 的情况下以 test-first(测试先行)方式构建一个具体行为时,单独使用tdd;每当你想针对某个固定点审查分支或 PR 时,单独使用code-review。 - 是 →
Context 卫生
把第 1–3 步保持在一个不间断的 context window 中 — 在 to-tickets 之前不要 compact 或 clear — 这样 grilling、spec 和 tickets 都建立在同一个思考之上。之后每个 implement 都从 ticket 出发、以全新状态开始。
这其中的限制是 smart zone:模型仍能敏锐推理的窗口(在最先进的模型上约为 150k tokens)。如果 session 在 to-tickets 之前逼近这个窗口,不要在退化的状态下硬撑 — 在最近的 phase boundary 处 /compact,然后继续(见 Phase boundaries)。
On-ramps(入口)
一种产生工作的起始情境,随后汇入主流程。
- Bug 和请求堆积 →
triage。它让 issues 经过 triage 角色流转,产出 agent-ready(agent 可直接处理)的 issues,之后由implement接手。
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 · 91 lines · 31 tokens per session scan A 791c5ae9a45a
ask-matt-zh is a skill published in the GitHub repository gongyijie85/mattpocock-skills-dsh-zh (5 stars, last pushed yesterday), licensed MIT. It adds 31 tokens to every session and 3,328 once invoked, about $0.0002 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-09-11.
Other skills, from other repositories
manage-taskboard
Manage work in the native DeepSeek Harness Taskboard with exact task ids and optimistic versions. Use when an Agent must inspect project work, claim an eligible todo, record progress or blockers, verify an implementation, submit it for human review, or release its own claim; also use when a human asks how to accept…
dev-team
Simulate a collaborative dev team session where multiple role-based personas (PM, Architect, Developer, QA) respond to the same problem together in one session. Use when designing a feature, reviewing a proposal, or onboarding a new initiative and you want multi-role perspective without switching agents manually.
product-prd
A Chinese-language product-definition and requirements workflow that turns an approved idea into a product definition and a PRD, a detailed product requirements document.
iteration
A product maintenance stage that turns user feedback into a prioritised feedback list, roadmap, and next-version plan.
setup-matt-pocock-skills
Configure this repo for the engineering skills: set up its issue tracker, triage label vocabulary, and domain doc layout. Run once before first use of the other engineering skills.
wayfinder
Plan a huge chunk of work (more than one agent session can hold) as a shared map of decision tickets on your issue tracker, and resolve them one at a time until the way to the destination is clear.