Borrowing it
Nothing to install: this file belongs to zapprosite/claude-code-minimax. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/zapprosite/claude-code-minimax/master/.claude/agents/repo-onboard.mdgit clone --depth 1 https://github.com/zapprosite/claude-code-minimaxWrote 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/agents/zapprosite/claude-code-minimax/repo-onboard)<a href="https://agentmods.dev/agents/zapprosite/claude-code-minimax/repo-onboard"><img src="https://agentmods.dev/badge/agents/zapprosite/claude-code-minimax/repo-onboard/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/agents/zapprosite/claude-code-minimax/repo-onboard"><img src="https://agentmods.dev/badge/agents/zapprosite/claude-code-minimax/repo-onboard.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.00030 | $0.00898 |
| Opus 5 | $0.00015 | $0.00449 |
| Sonnet 5 | $0.00006 | $0.00180 |
| Haiku 4.5 | $0.00003 | $0.00090 |
Grade D, and why
repo-onboard scanned grade D with 2 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 9d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
- Bash(chmod 777*) Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
- Bash(rm -rf*) How it starts
The opening of the file, as written. The whole thing — 146 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Repo Onboard Agent
Inicializa um novo repositório com a estrutura padrão de .claude/ do host.
Verificação Inicial
# Verificar se é um repo git
git rev-parse --git-dir 2>/dev/null || echo "NOT_GIT"
# Verificar se já existe .claude/
ls -la .claude/ 2>/dev/null || echo "NO_CLAUDE_DIR"
# Listar arquivos no diretório atual
ls -la
Estrutura do Template
O template padrão está em ~/.claude/templates/default/.claude/:
.claude/
├── CLAUDE.md # Diretivas específicas do projeto
├── agents/
│ └── README.md # Placeholder
├── skills/
│ └── README.md # Placeholder
├── rules/
│ └── default.rules # Decision matrix
└── .clauderc # Configuração
Fluxo de Onboarding
1. Detectar Ausência de .claude/
Se .claude/ não existe no repo:
- Oferecer copiar do template host
- Explicar o que será copiado
- Pedir confirmação antes de copiar
2. Se .claude/ já existe
- Verificar se tem
CLAUDE.md - Verificar se tem
agents/ouskills/customizados - Oferecer adicionar apenas peças faltantes
3. Copiar Template
# Copiar estrutura do template
TEMPLATE="$HOME/.claude/templates/default/.claude"
TARGET="$(pwd)/.claude"
mkdir -p "$TARGET"
cp -r "$TEMPLATE"/* "$TARGET/"
# Ajustar permissões
chmod 755 "$TARGET"
chmod 644 "$TARGET"/*.md "$TARGET"/*.rules 2>/dev/null
echo "Template copiado para: $TARGET"
4. Ajustar CLAUDE.md do Projeto
Se CLAUDE.md existe no repo (de repositório externo):
- Perguntar se quer manter o existente ou sobrescrever
- Se sobrescrever: copiar template e adaptar
5. Configurar Git Hooks (opcional)
# Verificar se hooks estão configurados
cat .git/hooks/post-commit 2>/dev/null || echo "NO_HOOK"
# Oferecer adicionar hook de segurança padrão
# (protege contra commit de secrets)
Estrutura do CLAUDE.md Padrão
# CLAUDE.md — <nome do projeto>
## Regras do Projeto
### Padrão de Código
- <padrões específicos do projeto>
### Estrutura
- <árvore de diretórios>
### Workflows
- <como fazer build, test, deploy>
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.
- 9d ago First seen · 146 lines · 30 tokens per session scan D 1356c58d3f7c
repo-onboard is an agent published in the GitHub repository zapprosite/claude-code-minimax (2 stars, last pushed 5mo ago), licensed MIT. It adds 30 tokens to every session and 898 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it D with 2 findings (asks for root, recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
AVM Owner Triage
Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.
Ultimate Transparent Thinking Beast Mode
Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.
Context7-Expert
Expert in latest library versions, best practices, and correct syntax using up-to-date documentation.
Modernization Agent
Human-in-the-loop modernization assistant for analyzing, documenting, and planning complete project modernization with architectural recommendations.