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/cassettetapecrackle/claude-starters/clean-code-pythonnpx skills add CassetteTapeCrackle/claude-starters --skill clean-code-pythongit clone --depth 1 https://github.com/CassetteTapeCrackle/claude-startersWhat 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.00039 | $0.00312 |
| Opus 5 | $0.00019 | $0.00156 |
| Sonnet 5 | $0.00008 | $0.00062 |
| Haiku 4.5 | $0.00004 | $0.00031 |
Grade A, and why
clean-code-python 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.
What it actually says
Clean-code Python (depth)
On top of the base rules (type hints, ruff, pytest).
Types & data
- Explicit hints on public functions;
from __future__ import annotationsfor forward refs. No bareAny. - Model records with
@dataclass(or pydantic at boundaries); avoid dicts-as-objects for structured data.
Footguns
- Never mutable default args (
def f(x=[])) — useNone+ assign inside. - EAFP over LBYL:
try/exceptaround the operation rather than pre-checking, but keeptrybodies small. - No bare
except:— catch specific exceptions; re-raise with context.
Idioms
pathlib.Pathoveros.pathstring surgery. Context managers (with) for files/locks/resources.- Comprehensions/generators over manual accumulation loops; generators for large/streamed data.
- f-strings for formatting;
loggingnotprintfor diagnostics.
Smells
- A function taking/returning big untyped dicts → dataclass.
except Exception: pass→ swallows bugs.- Manual file
open/closewithoutwith→ leak on error.
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 · 28 lines · 39 tokens per session scan A c242f572097a
clean-code-python is a skill published in the GitHub repository CassetteTapeCrackle/claude-starters (1 stars, last pushed 13d ago), licensed MIT. It adds 39 tokens to every session and 312 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-08-31.
Other skills, from other repositories
saas-builder
Clone, verify, map, and build on top of ixartz/SaaS-Boilerplate for a user's SaaS idea. Use when a user wants to reuse SaaS Boilerplate, evaluate how their product fits it, or build product-specific pages, database schema, roles, permissions, MVP features, and launch scope on top of the boilerplate.
kelos
Author, debug, and operate Kelos resources (Task, Session, Workspace, AgentConfig, TaskSpawner) on Kubernetes. Use for Kelos CRDs, resource manifests, the kelos CLI, or live cluster operations. Do not use for ordinary Kelos repo code edits, tests, reviews, build/CI, or git tasks unless they involve those resources.
trellis-brainstorm
Guides collaborative requirements discovery before implementation. Creates task directory, seeds PRD, asks high-value questions one at a time, researches technical choices, and converges on MVP scope. Use when requirements are unclear, there are multiple valid approaches, or the user describes a new feature or complex…
link-check
Verify @file references in AIWG skills and agents against the linking contract — per-file or corpus-wide, with optional auto-fix.
ralph-specum-requirements
This skill should be used only when the user explicitly asks to use $ralph-specum-requirements, or explicitly asks Ralph Specum in Codex to run the requirements phase.
eval-agent
Run evaluation tests against an agent to assess quality and archetype resistance.