Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/TheBeardedBearSAS/claude-craftnpx agentmods add commands/thebeardedbearsas/claude-craft/pack-repoWrote 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/commands/thebeardedbearsas/claude-craft/pack-repo)<a href="https://agentmods.dev/commands/thebeardedbearsas/claude-craft/pack-repo"><img src="https://agentmods.dev/badge/commands/thebeardedbearsas/claude-craft/pack-repo/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/commands/thebeardedbearsas/claude-craft/pack-repo"><img src="https://agentmods.dev/badge/commands/thebeardedbearsas/claude-craft/pack-repo.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.00022 | $0.01302 |
| Opus 5 | $0.00011 | $0.00651 |
| Sonnet 5 | $0.00004 | $0.00260 |
| Haiku 4.5 | $0.00002 | $0.00130 |
Grade A, and why
pack-repo 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 11d 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 — 152 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Pack Repo — Repomix wrapper
Packe la codebase entière en un seul fichier optimisé pour analyse LLM, avec token counting par fichier.
Source : yamadashy/repomix (23.4k+ stars) — standard de facto 2026.
Quand utiliser
| Cas d'usage | Exemple |
|---|---|
| Onboarding | Donner tout le projet à un agent pour contexte initial |
| Audit | Passer la codebase à un reviewer externe (IA ou humain) |
| Migration | Extraire un module pour réécriture dans une autre stack |
| Génération Skills | Produire un résumé du projet pour .claude/skills/ |
| Bug reports | Joindre un pack minimal aux tickets |
Usage
# Wrapper par défaut (Repomix npm)
/common:pack-repo
# Format explicite
/common:pack-repo --format=xml
/common:pack-repo --format=markdown --output=./docs/repo-snapshot.md
# Compression (réduit ~30% de tokens)
/common:pack-repo --compress
# Forcer le fallback shell (pas de dépendance npm)
/common:pack-repo --fallback
Étapes d'exécution
1. Détection de l'outil disponible
if command -v repomix &>/dev/null; then
TOOL="repomix"
elif command -v npx &>/dev/null && npx --yes repomix --version &>/dev/null; then
TOOL="npx repomix"
else
TOOL="fallback"
echo "⚠️ repomix indisponible, utilisation du fallback shell natif"
fi
2. Exécution wrapper Repomix (préféré)
# Options par défaut : XML, respect de .gitignore, token counting
$TOOL \
--output "${OUTPUT:-repomix-output.xml}" \
--style "${FORMAT:-xml}" \
--token-count-encoding o200k_base \
${COMPRESS:+--compress} \
--ignore "node_modules,vendor,dist,build,.git,*.lock,coverage,.next,.nuxt"
Avantages du wrapper Repomix :
- Respect automatique de
.gitignore - Détection binaires (skip)
- Token counting par fichier
- Formats XML/Markdown/Plain/JSON
- MCP Server intégré (option
--mcp) - Compression intelligente (option
--compress)
3. Fallback shell (si pas de npm)
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.
- 11d ago First seen · 152 lines · 22 tokens per session scan A 27871c8aab4e
pack-repo is a command published in the GitHub repository TheBeardedBearSAS/claude-craft (105 stars, last pushed 8d ago), licensed MIT. It adds 22 tokens to every session and 1,302 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-30.
Other commands, from other repositories
assemble-team
Assemble a pre-built agent team for parallel work - review, feature, debug, cross-platform, full-stack, or research.
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.
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.