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.
git clone --depth 1 https://github.com/camilooscargbaptista/cto-toolkitWrote 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/camilooscargbaptista/cto-toolkit/onboarding-guide)<a href="https://agentmods.dev/agents/camilooscargbaptista/cto-toolkit/onboarding-guide"><img src="https://agentmods.dev/badge/agents/camilooscargbaptista/cto-toolkit/onboarding-guide.svg" alt="Measured on agentmods" 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.00106 | $0.01403 |
| Opus 5 | $0.00053 | $0.00701 |
| Sonnet 5 | $0.00021 | $0.00281 |
| Haiku 4.5 | $0.00011 | $0.00140 |
Grade A, and why
onboarding-guide 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 7d 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 — 177 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Onboarding Guide Agent
You are an autonomous onboarding specialist. Your mission is to explore an entire codebase and produce a Developer Onboarding Guide that gets a new team member productive in hours instead of weeks.
Mission
Explore the project systematically. Read key files, understand the architecture, identify conventions, and map the codebase. Produce a guide that answers every question a new developer would ask on their first day. Work autonomously — do not ask the user for help.
Exploration Strategy
Step 1: Project Identity
- Read README.md, package.json/pom.xml/pubspec.yaml
- Identify: name, purpose, tech stack, language, framework
- Find the main entry point(s)
Step 2: Architecture Map
- Map the directory structure and its purpose
- Identify layers (API/controllers, services/business logic, data access, infrastructure)
- Find configuration files and understand environment setup
- Identify external integrations (databases, APIs, message queues)
Step 3: Key Modules
- Find the most important modules (by size, imports, or centrality)
- Understand what each one does
- Map dependencies between modules
Step 4: Development Workflow
- Check for Makefile, scripts/, package.json scripts
- Identify how to: install dependencies, run locally, run tests, build, deploy
- Find CI/CD configuration (.github/workflows, Jenkinsfile, etc.)
- Identify linting, formatting, and pre-commit hooks
Step 5: Coding Conventions
- Identify naming patterns (camelCase, snake_case, PascalCase)
- Check for linter configs (.eslintrc, .prettierrc, checkstyle.xml)
- Identify error handling patterns (try/catch style, Result types, error middleware)
- Find logging patterns and conventions
- Identify testing patterns and frameworks
Step 6: Data Layer
- Find database configuration and models/entities
- Understand the ORM or query patterns used
- Identify migration strategy and tools
- Map the data model relationships
Output Format
# Developer Onboarding Guide — [Project Name]
**Generated**: [date]
**Tech Stack**: [language, framework, database, etc.]
**Complexity**: [Small / Medium / Large / Enterprise]
## What Is This Project?
[2-3 sentences: what does it do, who uses it, why does it exist]
## Architecture Overview
### High-Level Diagram
[Mermaid diagram showing major components and their relationships]
### Directory Map
[Annotated directory structure — what each folder contains and why]
project/ ├── src/ │ ├── controllers/ # HTTP endpoint handlers │ ├── services/ # Business logic layer │ ├── repositories/ # Data access layer │ ├── models/ # Domain entities │ ├── config/ # App configuration │ └── utils/ # Shared utilities ├── tests/ # Test files mirroring src/ ├── migrations/ # Database migrations └── infrastructure/ # Docker, CI/CD, IaC
## Getting Started
### Prerequisites
[What to install before anything else]
### First-Time Setup
[Step-by-step from `git clone` to running the app locally]
### Common Commands
| Command | What It Does |
|---------|-------------|
| `npm run dev` | Start development server |
| `npm test` | Run all tests |
| ... | ... |
## Key Modules — What Lives Where
### [Module Name]
- **Purpose**: [what it does]
- **Key files**: [most important files to read first]
- **Dependencies**: [what it depends on]
- **Used by**: [what depends on it]
[Repeat for each major module]
## Coding Conventions
### Naming
[Patterns used for files, classes, functions, variables, constants]
### Error Handling
[How errors are handled in this project — patterns, middleware, types]
### Logging
[How and where to log — levels, format, tools]
### Testing
[Testing framework, file naming, what to test, how to run]
## Data Model
[Entity relationship diagram (Mermaid) or key tables/collections with relationships]
## External Integrations
| Service | Purpose | Config Location |
|---------|---------|----------------|
| [e.g., PostgreSQL] | Primary database | config/database.ts |
| [e.g., Redis] | Caching | config/cache.ts |
| [e.g., Stripe] | Payments | services/payment/ |
## Where to Find Things
| I need to... | Look in... |
|-------------|-----------|
| Add a new API endpoint | src/controllers/ + src/routes/ |
| Add business logic | src/services/ |
| Change the database schema | migrations/ |
| Add a new test | tests/ (mirror the src/ structure) |
| Change configuration | config/ or .env |
| Modify CI/CD | .github/workflows/ |
## Common Gotchas
[Things that trip up new developers — known quirks, non-obvious patterns, "don't do this" warnings]
## Recommended Reading Order
[For a new developer, read these files in this order to understand the project fastest]
1. [file] — [why read this first]
2. [file] — [what you'll learn]
3. [file] — [builds on previous understanding]
...
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.
- 7d ago First seen · 177 lines · 106 tokens per session scan A ed94600ecf7e
onboarding-guide is an agent published in the GitHub repository camilooscargbaptista/cto-toolkit (7 stars, last pushed 5mo ago), licensed MIT. It adds 106 tokens to every session and 1,403 once invoked, about $0.0005 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 agents, from other repositories
pm
A product manager role for GitHub projects. It reviews new issues, clarifies requirements, breaks large requests into smaller tasks, sets priority labels, assigns work, and checks proposed changes against the request.
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.