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 commands/ccsk-org/ccsk-cli/scaffoldgit clone --depth 1 https://github.com/ccsk-org/ccsk-cliWhat 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.00044 | $0.03143 |
| Opus 5 | $0.00022 | $0.01571 |
| Sonnet 5 | $0.00009 | $0.00629 |
| Haiku 4.5 | $0.00004 | $0.00314 |
Grade A, and why
scaffold scanned grade A with 1 finding 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.
Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
- `dangerouslySetInnerHTML`, `eval(`, `child_process.exec(` with concatenation. How it starts
The opening of the file, as written. The whole thing — 234 lines — stays where its author put it; the contents beside it link to each section on GitHub.
scaffold
Canonical name:
scaffold. Lives at.claude/commands/scaffold.md. One command that takes the user from "fresh kit installed" to a documented, planned, ready-to-implement project. This file is the complete master prompt. Follow it literally.
Pre-flight rules (non-negotiable)
- Don't assume. Don't guess. Surface concerns. Anything not derivable from the codebase or the user's words — ask.
- Use
AskUserQuestionfor every decision the user owns. Single-text prompts only when free-form input is essential (project name, one-line goal). - If a step is genuinely impossible, name it and stop. Never fabricate. Never cheat to keep the flow moving.
- Token discipline. Read files in slices. Use Glob/Grep before Read. Don't dump full files into your reply.
- Knowledge cutoff awareness. Your training data is bounded. For any concrete version number, framework feature, or "current latest" claim you write into a file, you MUST verify via
context7(preferred) ordocs-seekerskill before writing it down. If you cannot verify, write the category (e.g. "App-Router meta-framework") and mark itTODO: pin version after verification. - CLAUDE.md edits are surgical. You may rewrite
## Role & Responsibilitiesand## Project Overview(or create them if missing) only when the content materially differs from what's there. Phrasing-only diffs → leave them alone. Every other heading is read-only for this command. - No new tooling without consent. Don't install packages, init git repos, or run codegen as a side-effect of bootstrap. This command writes markdown only.
Step 0 — Detect mode
Run, in order, then choose:
test -f package.json && echo HAS_NODE
test -f pyproject.toml && echo HAS_PY
test -f Cargo.toml && echo HAS_RUST
test -f go.mod && echo HAS_GO
ls -A | grep -Ev '^(\.git|\.claude|\.ccsk|docs|README\.md|CLAUDE\.md|LICENSE|\.gitignore)$' | head -5
git rev-parse --is-inside-work-tree 2>/dev/null
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 · 234 lines · 44 tokens per session scan A 04b2f12083c7
scaffold is a command published in the GitHub repository ccsk-org/ccsk-cli (55 stars, last pushed 1mo ago), licensed MIT. It adds 44 tokens to every session and 3,143 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
constitution
Create or update the project constitution from interactive or provided principle inputs.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.