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/midfang/ai-agent-skills-workflow/bugfix-comment-contextnpx skills add midFang/ai-agent-skills-workflow --skill bugfix-comment-contextgit clone --depth 1 https://github.com/midFang/ai-agent-skills-workflowWrote 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/midfang/ai-agent-skills-workflow/bugfix-comment-context)<a href="https://agentmods.dev/skills/midfang/ai-agent-skills-workflow/bugfix-comment-context"><img src="https://agentmods.dev/badge/skills/midfang/ai-agent-skills-workflow/bugfix-comment-context.svg" alt="Measured on agentmods" 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.00114 | $0.00744 |
| Opus 5 | $0.00057 | $0.00372 |
| Sonnet 5 | $0.00023 | $0.00149 |
| Haiku 4.5 | $0.00011 | $0.00074 |
Grade A, and why
bugfix-comment-context 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 5d ago.
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 — 51 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Bugfix Comment Context
Purpose
Use this skill to leave a compact maintenance note near non-obvious bugfix code. The note should explain the real-world problem that triggered the change, not just restate what the code does.
Workflow
- Identify the smallest code location future maintainers are likely to question or delete: a guard clause, fallback, retry, compatibility branch, lifecycle ordering check, vendor workaround, or defensive exception.
- Capture the original user-facing symptom in plain language. Include the actor, state, trigger, and observed result when known.
- Capture the evidence-backed cause or strongest diagnosis. Mention logs, crash type, race, protocol mismatch, lifecycle timing, vendor behavior, or data shape only if actually confirmed.
- Explain why the code returns, retries, waits, no-ops, falls back, or throws. Make clear whether the behavior is a real failure, a deferred retry, or a deliberate compatibility boundary.
- Add the comment immediately above the relevant code, or as a function/class KDoc when the whole helper exists only for this fix.
- Re-run the narrowest relevant compile/test command when comments are in source files, especially in Kotlin/Java where comment encoding or formatting can still break builds.
Comment Content Checklist
Include only high-signal items that future readers need:
- Original symptom: what the user saw, such as "background receiver disconnects and app restarts".
- Trigger conditions: platform, lifecycle state, device/vendor, input shape, timing, or protocol step.
- Confirmed evidence: log tag, exception class, crash signal, status code, stack frame, or observed state.
- Fix intent: why this branch exists and why a simpler-looking path is unsafe.
- Retry/fallback semantics: whether returning
false, skipping work, or no-op means "try later" rather than "give up". - Boundaries: note uncertainty or device-specific scope when the root cause is inferred.
Style Rules
- Write comments in the repository's existing language; for Chinese projects, use concise Chinese.
- Do not narrate obvious code mechanics, such as "checks if x is null".
- Do not exaggerate certainty. Use "日志确认", "这里先挡住", or "疑似" according to evidence strength.
- Keep each comment close to the code it protects. Prefer one focused paragraph or 3-8 short comment lines.
- Preserve existing business comments; extend them instead of replacing useful context.
- Avoid TODO-style wording unless follow-up work is actually required.
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.
- 5d ago First seen · 51 lines · 114 tokens per session scan A 84295f82b5c4
bugfix-comment-context is a skill published in the GitHub repository midFang/ai-agent-skills-workflow (2 stars, last pushed 2mo ago), licensed MIT. It adds 114 tokens to every session and 744 once invoked, about $0.0006 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-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…