onboarding-guide

onboarding-guide is an agent for Claude Code from camilooscargbaptista/cto-toolkit. It costs 106 tokens per session (1,403 once invoked), scanned A, original, MIT.

An autonomous guide-making agent that explores a codebase and explains how the project is organised. It documents the architecture, important modules, development process, coding conventions, and where to find things.

In plain words
What is it for?
Use it when onboarding to a project, explaining an existing codebase, finding the main entry points, understanding module dependencies, or documenting the local development workflow.
Why use it?
It gives new developers a map of an unfamiliar project without requiring someone on the team to explain every part manually.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter; names the NotebookEdit tool.

Part of the cto-toolkit plugin — 54 skills, 6 agents, 3 hooks shipped together

Good fit Use it when onboarding to a project, explaining an existing codebase, finding the main entry points, understanding module dependencies, or documenting the local development workflow.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/camilooscargbaptista/cto-toolkit/onboarding-guide
Install

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.

Clone the repo
git clone --depth 1 https://github.com/camilooscargbaptista/cto-toolkit

Made for: Claude Code.

Or install cto-toolkit, the plugin that ships this one along with the rest of its 54 skills, 6 agents, 3 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 onboarding-guide

README.md
[![agentmods](https://agentmods.dev/badge/agents/camilooscargbaptista/cto-toolkit/onboarding-guide.svg)](https://agentmods.dev/agents/camilooscargbaptista/cto-toolkit/onboarding-guide)
Your own site
<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>
Per session 106 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,403 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.00106 $0.01403
Opus 5 $0.00053 $0.00701
Sonnet 5 $0.00021 $0.00281
Haiku 4.5 $0.00011 $0.00140

Measured 7d ago against content hash ed94600ecf7e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

agents/onboarding-guide.md · 177 lines

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

Read the full file on GitHub · 177 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. 7d ago First seen · 177 lines · 106 tokens per session scan A ed94600ecf7e

Subscribe to this mod's changes

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.