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/dixus/claudeframework/1_implementnpx skills add dixus/claudeframework --skill 1_implementgit clone --depth 1 https://github.com/dixus/claudeframeworkWhat 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.00027 | $0.02346 |
| Opus 5 | $0.00014 | $0.01173 |
| Sonnet 5 | $0.00005 | $0.00469 |
| Haiku 4.5 | $0.00003 | $0.00235 |
Grade A, and why
1_implement 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 2d 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 — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Implement the feature described in a spec file. $ARGUMENTS should be the spec filename (without path or extension), e.g. export-zip. If no argument is given, use the most recently modified file in .claude/specs/.
Steps:
-
Read the spec from
.claude/specs/<name>.md -
Read CLAUDE.md — note the project's test command, lint command, build command, and typecheck command if listed
-
Read all files in
.claude/context/if the directory exists — long-lived project references (schemas, API docs, glossaries) -
Read all files listed under "Affected files", "New files", and "Patterns to mirror" in the spec — the "Patterns to mirror" files are the primary convention references; follow their structure, naming, and style 4b. Context budget check: count the total files from steps 3 and 4. If the total exceeds 15, read "Patterns to mirror" files in full and only read the relevant sections of remaining files. Note which files were fully read vs. partially read.
-
Decomposition gate: count the total files listed under "Affected files" + "New files". If the total exceeds
complexity_gate_max_filesfrom CLAUDE.md (default: 10), or if the spec has a ⚠ Complexity flag, pause and ask the user whether to proceed as a single session or break the spec into smaller sub-specs first. Continue only after confirmation. -
Create a safety checkpoint: if the project uses git and
checkpoint/<spec-name>does not already exist (e.g., already created by/ship), rungit checkout -b checkpoint/<spec-name>from the current branch, then immediately switch back withgit checkout -. This creates a named rollback point that survives crashes and avoids stash collisions. Skip if the checkpoint branch already exists or the working tree is already clean (no staged or unstaged changes). -
Enter plan mode: propose a step-by-step implementation plan and wait for approval before writing any code
-
Phase management — check whether this is a phased implementation: a. If
.claude/specs/<name>-phases.mdalready exists (resuming a later phase): read it, find the nextpendingphase, set its status toin-progress, and implement only that phase's scope. If all phases aredone, report completion and stop. b. If no phase manifest exists but the approved plan proposes splitting into multiple phases: write.claude/specs/<name>-phases.mdusing the format below. Mark Phase 1 asin-progress, others aspending. Implement only Phase 1. c. If no phases are needed, skip the phase manifest and proceed normally.Phase manifest format (
.claude/specs/<name>-phases.md):# Phases for <name> ## Phase 1 — <title> Status: in-progress Scope: - <spec requirement covered in this phase> Validation criteria: - <criterion from spec that applies to this phase> ## Phase 2 — <title> Status: pending Scope: - <spec requirement covered in this phase> Validation criteria: - <criterion from spec that applies to this phase> ## Artifact coverage Every file from the spec's "Affected files" + "New files" must appear in exactly one phase above. Unassigned: - (none)Phase reconciliation (mandatory when creating or resuming a phase manifest): Before proceeding, cross-reference the spec's "Affected files" + "New files" lists against all phases in the manifest. Every spec artifact must be assigned to exactly one phase. If any artifact is missing from all phases, add it to the appropriate phase or create an additional phase for it. The "Unassigned" block in the manifest must be empty — if it is not, stop and resolve before continuing. This prevents silent scope loss where entire subsystems (e.g. frontend) are dropped during decomposition.
When in phased mode, all subsequent steps (9-18) apply only to the current phase's scope and validation criteria — do not flag later-phase items as missing.
-
After approval, implement each step in order, marking todos as you go. For each logical unit of code added, apply the TDD loop: (a) write the test cases from the spec's "Test cases" section, (b) run the tests to confirm they fail (red) — if the test runner cannot find the test file at all, that counts as red; do not skip this step, (c) implement the code, (d) run tests again to confirm they pass (green). Do not defer tests to the end. Do not proceed to the next unit until the current unit is green. 9b. Impact check — before modifying a shared function's signature (adding/removing/renaming params, changing return type), run an impact analysis first:
- Grep for all call sites of the function across the codebase
- Grep for all test mocks that patch it (
patch("...function_name"),vi.mock) - List every site that needs updating alongside the signature change
- Update ALL call sites and mocks in the same step — do not leave stale call sites for a later step
- If the blast radius is large (>10 call sites), pause and flag to the user before proceeding
- This prevents the recurring pattern: "changed helper, forgot 6 call sites, broke unrelated tests"
-
Follow existing code patterns — match the style, naming conventions, and architecture of surrounding code
-
Do not add comments, docstrings, or extra error handling beyond what the spec requires
-
After all changes are made, run the project's verify commands in this order (read them from CLAUDE.md, skip any not listed): a. Typecheck (e.g.
tsc --noEmitor equivalent) b. Lint c. Tests d. Build (if a build command is listed) -
Fix any failures — if a verify step still fails after two fix attempts, stop and report the blocker to the user. Do not loop indefinitely. 13b. Write the blocker to
.claude/blockers/<spec-name>.mdwith: which verify step failed, the exact error message, what was already attempted, and suggested next action for the user. -
Validation criteria gate: read the spec's "Validation criteria" section. For each criterion, confirm it can be observed in the current implementation. If any criterion cannot be confirmed, treat it as a failure and fix it before proceeding. 14b. Artifact inventory check — extract every file path from the spec's "Affected files" + "New files" sections. If in phased mode, filter to only the files assigned to the current phase. Run
git diff --name-only(against the branch point or checkpoint) and compare:
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.
- 2d ago First seen · 108 lines · 27 tokens per session scan A 91584c516a99
1_implement is a skill published in the GitHub repository dixus/claudeframework (10 stars, last pushed 4mo ago), licensed MIT. It adds 27 tokens to every session and 2,346 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
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
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…
agent-host-chat-contributions
Build and review cross-cutting agent-host chat behavior through lifecycle contributions. Use when adding turn lifecycle side effects, prompt or context injection, restored-history transformation, protocol-action observation, or when reviewing changes that add code to AgentSideEffects or AgentService.
auto-perf-optimize
Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.