pack-repo

pack-repo is a command for Claude Code from TheBeardedBearSAS/claude-craft. It costs 22 tokens per session (1,302 once invoked), scanned A, original, MIT.

A command that packages a codebase into one file for review by an AI or person, including a token count for each file; tokens are the text units used by language models.

In plain words
What is it for?
Use it to create XML or Markdown snapshots, make a smaller compressed package, extract selected context, or use a shell fallback when the usual packaging tool is unavailable.
Why use it?
It removes the need to gather project files manually when sharing context for onboarding, audits, migrations, bug reports, or documentation work.

Command for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: reads .claude/ paths; mentions subagents.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is bash Dev/scripts/pack-repo-fallback.sh \.

Part of the claude-craft plugin — 56 skills, 94 commands, 47 agents, 5 hooks shipped together

Good fit Use it to create XML or Markdown snapshots, make a smaller compressed package, extract selected context, or use a shell fallback when the usual packaging tool is unavailable.

Compare 6 commands from other repositories ↓
Install

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.

Clone the repo
git clone --depth 1 https://github.com/TheBeardedBearSAS/claude-craft
agentmods
npx agentmods add commands/thebeardedbearsas/claude-craft/pack-repo

Made for: Claude Code.

Or install claude-craft, the plugin that ships this one along with the rest of its 56 skills, 94 commands, 47 agents, 5 hooks.

Wrote 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.

agentmods badge for pack-repo

README.md
[![agentmods](https://agentmods.dev/badge/commands/thebeardedbearsas/claude-craft/pack-repo/github.svg)](https://agentmods.dev/commands/thebeardedbearsas/claude-craft/pack-repo)
Your own site
<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.

agentmods 80×15 button for pack-repo

Your own site · 80×15
<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>
Per session 22 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,302 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 11d ago against content hash 27871c8aab4e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

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.

.claude/commands/common/pack-repo.md · 152 lines

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)

Read the full file on GitHub · 152 lines

Changes

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.

  1. 11d ago First seen · 152 lines · 22 tokens per session scan A 27871c8aab4e

Subscribe to this mod's changes

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.