Codebase Onboarding logo

Codebase Onboarding

Community
brucesongs
codebase-onboarding

Rapidly acquire a mental model of any unfamiliar codebase — from a 500-line script to a 100M+ line monorepo. This skill transforms raw code into structured intelligence: architecture maps, entry points, data flows, security surfaces, and onboarding confidence scores.

Overview

Publisherbrucesongs
Repositorykali-claw
Skill namecodebase-onboarding
Stars
70
Forks
18
Bundled files
14
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 14 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by brucesongs on GitHub. Read the source before you install it.

Installation

Install the Codebase Onboarding AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/brucesongs/kali-claw.git /tmp/kali-claw
mkdir -p .claude/skills
cp -r /tmp/kali-claw/skills/codebase-onboarding .claude/skills/codebase-onboarding
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Codebase Onboarding in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Codebase Onboarding on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Codebase Onboarding is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Codebase Onboarding

Summary

This skill transforms raw code into structured intelligence: architecture maps, entry points, data flows, security surfaces, and onboarding confidence scores.

Domain: knowledge

Skill Identity

AttributeValue
DomainKnowledge Operations
Skill IDcodebase-onboarding
Version1.0.0
Hacker LawsLaw 1 (Know Your Battlefield), Law 3 (Intelligence Over Force), Law 9 (Systematic Over Random)
Related Skillsknowledge-ops, deep-research, social-intelligence

Purpose

Rapidly acquire a mental model of any unfamiliar codebase — from a 500-line script to a 100M+ line monorepo. This skill transforms raw code into structured intelligence: architecture maps, entry points, data flows, security surfaces, and onboarding confidence scores.

In security contexts, codebase onboarding is the first step before code audits, vulnerability research, exploit development, and supply chain analysis.

Scope Modes

Three modes based on what you need to know, not how much time you have:

ModeWhen to UseOutput
TargetedYou know what you're looking for (e.g., "find all auth code")Focused map of specific subsystem
ExploratoryYou need to understand a feature area or moduleModule-level architecture + data flows
ComprehensiveFull audit, exploit research, or security reviewComplete intelligence package

Choose mode before starting. Switching modes mid-session is allowed but requires re-baselining.

Phase 0: Search-First (All Modes)

Before reading any code:

  1. Find existing documentation

    • README, CONTRIBUTING, ARCHITECTURE, docs/, wiki/
    • OpenAPI/Swagger specs, Protobuf definitions
    • CI/CD config (reveals build structure and test commands)
  2. Identify the skeleton

    • package.json, go.mod, Cargo.toml, requirements.txt, pom.xml, build.gradle
    • Entry points: main(), app.py, index.js, server.go
    • Config files: .env.example, config/, settings.py
  3. Detect framework signatures

    • Import patterns, directory names, config file names
    • See Language Support section for framework detection by language
  4. Run static index (Targeted/Comprehensive modes)

    • ctags, cscope, or language server for symbol maps
    • File tree with line counts: find . -name "*.py" | xargs wc -l | sort -rn | head -50

Methodology

Phase 1: Orientation

  • Count files, LOC, and language distribution
  • Identify primary language(s) and detect framework
  • Map top-level directory structure to functional areas
  • Find entry points and main execution paths

Phase 2: Architecture Mapping

  • Trace request/data flow from entry point to persistence
  • Identify layers: API → Business Logic → Data Access → Storage
  • Map inter-service dependencies (microservices) or module boundaries (monolith)
  • Detect shared libraries, utilities, middleware

Phase 3: Security Surface Analysis

  • Authentication and authorization code locations
  • Input validation and sanitization points
  • External integrations (APIs, databases, message queues)
  • Secret/credential handling
  • Known dangerous patterns by language

Phase 4: Deep Dive (Comprehensive mode only)

  • Critical path tracing for key operations
  • Data flow for sensitive operations (payments, auth, PII)
  • Dependency vulnerability surface (outdated packages, CVE exposure)
  • Test coverage gaps that indicate under-reviewed areas

Phase 5: Knowledge Consolidation

  • Generate structured output (see Output Format below)
  • Record confidence scores per subsystem
  • Identify gaps for follow-up research
  • Hand off to knowledge-ops for persistence

Language Support

Tier 1 — Full Automation Support (75–90% automated)

LanguageFrameworks DetectedEntry Point Detection
PythonDjango, Flask, FastAPI, Celerymain.py, app.py, manage.py, wsgi.py
JavaScriptExpress, React, Next.js, NestJSindex.js, server.js, app.js
TypeScriptSame as JS + Angularmain.ts, index.ts, server.ts
JavaSpring Boot, Quarkus, MicronautApplication.java, Main.java, pom.xml
GoGin, Echo, Chi, gRPCmain.go, cmd/, internal/
PHPLaravel, Symfony, WordPressindex.php, artisan, composer.json

Tier 2 — Partial Automation Support (50–70% automated)

LanguageNotes
C / C++ctags/cscope required; complex build systems (CMake, Makefile) need manual interpretation
RustCargo workspace support good; unsafe block detection is primary security focus
RubyRails well-supported; Rack-based apps need manual routing trace
C# / .NETSolution file parsing; dependency injection containers require manual tracing

Tier 3 — Manual-Heavy (20–40% automated)

Kotlin, Scala, Swift, Objective-C, Erlang, Elixir, Haskell, COBOL, and other languages require primarily manual analysis. Use Phase 0 docs-first approach and lean on test files for behavior discovery.

100M+ Line Strategy

For very large codebases (100M+ LOC):

  1. Index First: Run ctags/cscope before reading any files
  2. Smart Sampling: Focus on files with highest churn (git log), most imports, or security-critical paths
  3. Divide & Conquer: Treat each top-level module as a separate Targeted-mode session
  4. Boundary Focus: Understand module interfaces (APIs, contracts) before internals
  5. Avoid Full Reads: Never attempt to read entire large files; sample entry, middle, and exit sections

Output Format

Confidence Score

Rate onboarding completeness per area:

ScoreMeaning
0–20Uncharted — no meaningful understanding
21–40Partial — know structure, not behavior
41–60Functional — can navigate, some gaps
61–80Solid — understand core flows and surfaces
81–100Expert — deep understanding, audit-ready

Report as: Overall: 72/100 | Auth: 85 | Data Layer: 60 | API Surface: 78 | Internal Logic: 65

Structured Intelligence Package

json
{
  "project": "target-name",
  "analyzed_at": "2026-05-11",
  "mode": "Comprehensive",
  "language_primary": "Go",
  "framework": "Gin + GORM",
  "loc_total": 85000,
  "confidence": {
    "overall": 72,
    "auth": 85,
    "data_layer": 60,
    "api_surface": 78,
    "internal_logic": 65
  },
  "entry_points": ["cmd/server/main.go", "cmd/worker/main.go"],
  "architecture": "Monolith with event-driven background workers",
  "security_surfaces": {
    "auth": "JWT via middleware/auth.go",
    "input_validation": "Partial — missing in admin routes",
    "secrets": "env vars via config/config.go",
    "dangerous_patterns": ["SQL concatenation in reports/query.go:145"]
  },
  "gaps": ["Payment flow not traced", "gRPC service definitions not reviewed"],
  "next_steps": ["Audit reports/query.go for SQLi", "Review payment/ module"]
}

Architecture Diagram (Mermaid)

mermaid
graph TD
    Client -->|HTTP| Router[Gin Router]
    Router --> AuthMW[Auth Middleware]
    AuthMW --> Handler[Request Handlers]
    Handler --> Service[Business Logic]
    Service --> Repo[Repository Layer]
    Repo --> DB[(PostgreSQL)]
    Service --> Queue[Redis Queue]
    Queue --> Worker[Background Worker]

Use Cases

  1. Pre-Audit Onboarding: Map attack surface before security audit
  2. Exploit Research: Locate vulnerable code patterns in target software
  3. Supply Chain Analysis: Understand third-party library integration points
  4. Incident Response: Rapidly understand compromised codebase structure
  5. CVE Reproduction: Locate affected code for known vulnerabilities

Hacker Laws Alignment

  • Law 1 (Know Your Battlefield): You cannot exploit what you don't understand
  • Law 3 (Intelligence Over Force): Systematic mapping beats random file reading
  • Law 9 (Systematic Over Random): Phase-based approach ensures nothing is missed

Detection Methods

Code Repository Access Anomalies

  • Off-hours access: Agent accessing repositories at 3 AM local; outside typical dev hours.
  • Mass cloning: Sudden spike in git clone operations; large data egress from source control.
  • Unusual file reads: Reads of .env, secrets.yml, *.pem, id_rsa files by automated agents.
  • Cross-repo correlation: Same agent accessing many unrelated repositories.

Agent Activity Indicators

  • Tool call patterns: Sequential calls to read_filesearch_codesend_http (exfil chain).
  • Token consumption: Sustained >100K tokens per session; context-stuffing attack pattern.
  • Filesystem traversal: Reads outside declared working directory; attempts to access /etc/, ~/.ssh/.

SIEM Detection Rules

  • Splunk SPL: index=agent tool="read_file" | where match(path, "(\.env|secrets|\.pem)")
  • GitHub Audit Log: Alert on git.clone events from new IP geolocation.

Defense Evasion Techniques

Stealth Enumeration

  • Slow & low traversal: Pace file reads below rate-limit threshold.
  • Use legitimate paths: Access only typical project files; avoid /etc/, ~/.ssh/ (suspicious).
  • Off-hours operation: Run during typical dev hours to blend with normal activity.
  • Cache file contents: Avoid re-reading same files; reduces read-count anomaly.

Exfiltration Stealth

  • Piggyback on legitimate commits: Hide exfil data in legitimate-looking diff.
  • Distributed commits: Spread exfil across multiple commits/PRs (one chunk each).
  • Encoding tricks: Base64 / hex encode sensitive data to evade DLP scanning.
  • Side-channel exfil: Encode data in commit timing / message length.

Integration

  • Feed output to knowledge-ops for cross-session persistence
  • Use deep-research to research identified frameworks and known vulnerabilities
  • Use exa-search to find CVEs for detected dependency versions
  • Record security surfaces in mission memory before starting active testing

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Codebase Onboarding AI skill do?

Rapidly acquire a mental model of any unfamiliar codebase — from a 500-line script to a 100M+ line monorepo. This skill transforms raw code into structured intelligence: architecture maps, entry points, data flows, security surfaces, and onboarding confidence scores.

Why use Codebase Onboarding on TypingMind?

Because you install it once and use it with any model. Codebase Onboarding is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Codebase Onboarding in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/brucesongs/kali-claw/tree/main/skills/codebase-onboarding. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Codebase Onboarding?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Codebase Onboarding?

As many as you like. As long as a model supports skills, you can use Codebase Onboarding with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Codebase Onboarding AI skill free?

Yes. It is published on GitHub by brucesongs under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇