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 MK27MK/no-bs-skills --skill add-didactic-commentsgit clone --depth 1 https://github.com/MK27MK/no-bs-skillsWrote 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/mk27mk/no-bs-skills/add-didactic-comments)<a href="https://agentmods.dev/skills/mk27mk/no-bs-skills/add-didactic-comments"><img src="https://agentmods.dev/badge/skills/mk27mk/no-bs-skills/add-didactic-comments/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/mk27mk/no-bs-skills/add-didactic-comments"><img src="https://agentmods.dev/badge/skills/mk27mk/no-bs-skills/add-didactic-comments.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.00027 | $0.00539 |
| Opus 5 | $0.00014 | $0.00269 |
| Sonnet 5 | $0.00005 | $0.00108 |
| Haiku 4.5 | $0.00003 | $0.00054 |
Grade A, and why
add-didactic-comments 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 10d 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.
What it actually says
Unstaged work
Files with unstaged changes, tracked and untracked:
!git status --porcelain --untracked-files=all | grep -E '^.[^ ]' || true
- If that list is empty, go ahead with the skill.
- If it is not empty, stop.
Reply with exactly this line and nothing else, no file list, no explanation, no preamble:
Stopping - unstaged files detected. Stage them and then invoke this skill again.
Add didactic comments
The user tagged files and folders and named the topics they want to learn. Teach those topics inside those files. Change nothing but comments.
- Comment every call that belongs to
topics. Skip the rest of the code: plain python, obvious assignments, imports. - One comment per call, on the line above it.
- Say what the call does here, on this data. Not what the API does in general.
- End the comment with the doc URL of the exact symbol you commented, deep link included:
pandas.DataFrame.groupby, notpandas. - IF
topicsis empty, THEN infer them from the imports of the tagged files, and say which ones you picked. - IF a folder is tagged, THEN comment every source file under it.
Links
- Get the URL from the docs, never from memory. Fetch the page, confirm the anchor names the symbol, then paste the URL.
- IF the anchor does not exist, THEN link the closest page that does and drop the anchor. Never invent a fragment.
- Same symbol used twice in a file: link it once, at the first use.
Format
# {what this call does to this data}, {the argument that matters and why}
# https://{deep link to the symbol}
frame_by_year = sales.groupby("year")
Rules
- Never edit code, names, or order. Comments only.
- Never delete a comment. Rewrite one only if it starts with
AIand it is wrong. - No temporal anchors, no change narration.
- No comment restates the line.
# read the fileabovepath.read_text()is noise; explain the encoding, the failure mode, the return type.
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.
- 10d ago First seen · 55 lines · 27 tokens per session scan A af40597351d5
add-didactic-comments is a skill published in the GitHub repository MK27MK/no-bs-skills (2 stars, last pushed 11d ago), licensed MIT. It adds 27 tokens to every session and 539 once invoked, about $0.0001 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
ccc-research
In addition to web search, research can use connected channels as surfaces.
dp-patterns
Reference for dynamic programming patterns — recognition signals, constraint mapping, Python templates, edge cases, and common mistakes for 8 core DP techniques.
search-and-optimization
Reference patterns for search, optimization, and greedy algorithms. Covers binary search (classic and on-answer), two pointers, sliding window, greedy strategies, prefix sums, merge intervals, and monotonic stack. Use when solving problems that involve searching sorted data, optimizing over constraints, processing…
data-structures
Reference for advanced data structure patterns used in competitive programming and technical interviews. Covers heaps, monotonic stacks, tries, segment trees, Fenwick trees, stack-based parsing, and ordered sets with Python templates, recognition signals, and edge case guidance.
math-and-combinatorics
Reference patterns for mathematical and combinatorial problem-solving. Covers modular arithmetic, prime sieves, GCD/LCM, binomial coefficients, fast exponentiation, counting techniques, inclusion-exclusion, and game theory. Load this skill when a problem involves number theory, combinatorics, modular operations, or…
string-algorithms
Reference for string algorithm patterns — KMP, Z-function, Rabin-Karp, Manacher's, string hashing, suffix arrays, and Aho-Corasick. Covers recognition signals, core ideas, Python templates, edge cases, and common mistakes for each technique.