bugfix-comment-context

bugfix-comment-context is a skill for Codex from midFang/ai-agent-skills-workflow. It costs 114 tokens per session (744 once invoked), scanned A, original, MIT.

A method for writing maintenance comments beside unusual bug fixes. Each comment records the user-visible symptom, the confirmed cause or best diagnosis, and why the special code is needed.

In plain words
What is it for?
Use it after fixing a non-obvious bug, such as a timing issue, compatibility problem, retry condition, defensive check, or vendor-specific workaround.
Why use it?
Without this context, someone may later remove a guard, retry, fallback, or workaround because its purpose is unclear. The comments preserve the reasoning behind the fix.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Install

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.

agentmods
npx agentmods add skills/midfang/ai-agent-skills-workflow/bugfix-comment-context
Any agent
npx skills add midFang/ai-agent-skills-workflow --skill bugfix-comment-context
Clone the repo
git clone --depth 1 https://github.com/midFang/ai-agent-skills-workflow

Made for: Codex.

Wrote 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.

agentmods badge for bugfix-comment-context

README.md
[![agentmods](https://agentmods.dev/badge/skills/midfang/ai-agent-skills-workflow/bugfix-comment-context.svg)](https://agentmods.dev/skills/midfang/ai-agent-skills-workflow/bugfix-comment-context)
Your own site
<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>
Per session 114 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 744 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 5d ago against content hash 84295f82b5c4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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.

bugfix-comment-context/SKILL.md · 51 lines

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

  1. 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.
  2. Capture the original user-facing symptom in plain language. Include the actor, state, trigger, and observed result when known.
  3. 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.
  4. 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.
  5. Add the comment immediately above the relevant code, or as a function/class KDoc when the whole helper exists only for this fix.
  6. 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.

Read the full file on GitHub · 51 lines

Files

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.

Changes

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.

  1. 5d ago First seen · 51 lines · 114 tokens per session scan A 84295f82b5c4

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

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…

microsoft/ai-agents-for-beginners · 200 tokens

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…

microsoft/vscode · 72 tokens

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.

microsoft/vscode · 53 tokens

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…

microsoft/vscode · 71 tokens

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…

vercel/next.js · 95 tokens