Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

codebase-onboarding代码库入门

Agent Skill

codebase-onboarding 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,458

周安装

62

GitHub Stars

103

下载量

511
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:codebase-onboarding(代码库入门)
来源仓库:https://github.com/borghei/claude-skills
仓库路径:skills/codebase-onboarding
安装命令:
npx skills add https://github.com/borghei/claude-skills --skill codebase-onboarding
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/borghei/claude-skills --skill codebase-onboarding

简介

codebase-onboarding 用于分析任意代码库并生成面向特定受众的生产级入门文档。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要架构概览、设置指南或贡献规范时调用。
  • 可输出系统图、关键文件映射、调试指南和任务运行手册等结构化内容。
  • 安装命令:npx skills add https://github.com/borghei/claude-skills --skill codebase-onboarding。
  • 使用前应核实权限边界、维护状态及是否触发文件读写或网络访问。

SKILL.md

Codebase Onboarding

Tier: POWERFUL Category: Engineering / Developer Experience Maintainer: Claude Skills Team

Overview

Analyze any codebase and generate production-quality onboarding documentation tailored to the audience. Produces architecture overviews with system diagrams, annotated key file maps, step-by-step local setup guides, common developer task runbooks, debugging guides with real error solutions, and contribution guidelines. Supports Markdown, Notion, and Confluence output formats.

Keywords

codebase onboarding, developer experience, documentation, architecture overview, setup guide, debugging guide, contribution guidelines, code walkthrough, new hire onboarding

Core Capabilities

1. Architecture Analysis

  • Tech stack identification from manifests and lockfiles
  • System boundary mapping (services, databases, external APIs)
  • Data flow diagramming with Mermaid
  • Dependency graph visualization
  • Module ownership mapping

2. Key File Annotation

  • Identify the 20 most important files and explain why they matter
  • Mark entry points, configuration hubs, and shared utilities
  • Flag files that are dangerous to modify without coordination
  • Link files to the architectural concepts they implement

3. Setup Guide Generation

  • Prerequisites with exact versions and install commands
  • Step-by-step from git clone to running tests
  • Environment variable documentation with example values
  • Infrastructure setup (Docker, databases, caches)
  • Verification checklist (what "success" looks like)

4. Task Runbooks

  • How to add a new API endpoint (full lifecycle)
  • How to run and write tests
  • How to create and apply database migrations
  • How to deploy to staging and production
  • How to add a new dependency safely

5. Debugging Guide

  • Common errors with exact error messages and solutions
  • Log locations by environment
  • Useful SQL/CLI diagnostic queries
  • How to reproduce production issues locally

When to Use

  • Onboarding a new team member (junior, senior, or contractor)
  • After a major refactor that made existing docs stale
  • Before open-sourcing a project
  • Creating a team wiki page for a service you own
  • Self-documenting before a long vacation or team transition
  • Preparing for a compliance audit that requires documentation

Codebase Analysis Process

Phase 1: Gather Facts

Run these analysis commands to collect data before generating any documentation.

# 1. Package manifest and scripts
cat package.json 2>/dev/null | python3 -c "
import json, sys
pkg = json.load(sys.stdin)
print(f\"Name: {pkg.get('name')}\")
print(f\"Scripts: {list(pkg.get('scripts', {}).keys())}\")
print(f\"Deps: {len(pkg.get('dependencies', {}))}\")
print(f\"DevDeps: {len(pkg.get('devDependencies', {}))}\")
" || echo "No package.json found"

# 2. Directory structure (top 3 levels, excluding noise)
find . -maxdepth 3 \
  -not -path '*/node_modules/*' \
  -not -path '*/.git/*' \
  -not -path '*/.next/*' \
  -not -path '*/__pycache__/*' \
  -not -path '*/dist/*' \
  -not -path '*/.venv/*' | \
  sort | head -80

# 3. Largest source files (complexity indicators)
find src/ app/ lib/ -name "*.ts" -o -name "*.tsx" -o -name "*.py" -o -name "*.go" 2>/dev/null | \
  xargs wc -l 2>/dev/null | sort -rn | head -20

# 4. API routes
find . -name "route.ts" -path "*/api/*" 2>/dev/null | sort  # Next.js
grep -rn "router\.\(get\|post\|put\|delete\)" src/ --include="*.ts" 2>/dev/null | head -30  # Express

# 5. Database schema location
find . -name "schema.ts" -o -name "schema.prisma" -o -name "models.py" 2>/dev/null | head -10

# 6. Test infrastructure
find . -name "*.test.ts" -o -name "*.spec.ts" -o -name "test_*.py" 2>/dev/null | wc -l

# 7. Recent significant changes (last 90 days)
git log --oneline --since="90 days ago" | grep -iE "feat|refactor|breaking|migrate" | head -20

# 8. CI/CD configuration
ls .github/workflows/ 2>/dev/null || ls .gitlab-ci.yml 2>/dev/null || echo "No CI config found"

# 9. Environment variables referenced in code
grep -rh "process\.env\.\|os\.environ\.\|os\.getenv" src/ app/ lib/ --include="*.ts" --include="*.py" 2>/dev/null | \
  grep -oE "[A-Z_]{3,}" | sort -u | head -30

Phase 2: Identify Architecture Patterns

Based on gathered facts, classify the project:

SignalArchitecture Pattern
app/ directory with page.tsxNext.js App Router (file-based routing)
src/routes/ with Express importsExpress REST API
FastAPI decoratorsPython REST/async API
docker-compose.yml with multiple servicesMicroservices
Single main.go with handlersGo monolith
packages/ or apps/ at rootMonorepo
Prisma/Drizzle schema fileORM-managed database
k8s/ or terraform/ directoriesInfrastructure as Code

Phase 3: Generate Documentation

Architecture Overview Template

## Architecture

### System Diagram

[Use the ASCII diagram pattern below — it renders in any markdown viewer]

Browser / Mobile App │ v [API Gateway / Load Balancer] │ ├──> [Web Server: Next.js / Express / FastAPI] │ ├── Authentication (JWT / OAuth) │ ├── Business Logic │ └── Background Jobs │ ├──> [Primary Database: PostgreSQL] │ └── Migrations managed by [ORM] │ ├──> [Cache: Redis] │ └── Sessions, rate limits, job queue │ └──> [Object Storage: S3 / R2] └── File uploads, static assets

External Integrations: ├── [Stripe] — Payments ├── [SendGrid / Resend] — Transactional email └── [Sentry] — Error tracking

### Tech Stack

| Layer | Technology | Purpose |
|-------|-----------|---------|
| Frontend | [framework] | [why chosen] |
| API | [framework] | [routing, middleware] |
| Database | [database + ORM] | [data storage, migrations] |
| Auth | [provider] | [authentication method] |
| Queue | [system] | [background processing] |
| Deployment | [platform] | [hosting, CI/CD] |
| Monitoring | [tool] | [errors, performance] |

Key File Map Template

## Key Files

Priority files — read these first to understand the system:

| Priority | Path | What It Does | When to Read |
|----------|------|-------------|-------------|
| 1 | `src/db/schema.ts` | Database schema — single source of truth for data model | First day |
| 2 | `src/lib/auth.ts` | Authentication configuration and session handling | First day |
| 3 | `app/api/` | All API route handlers | First week |
| 4 | `middleware.ts` | Request middleware (auth, logging, rate limiting) | First week |
| 5 | `.env.example` | All environment variables with descriptions | Setup day |

Dangerous files — coordinate before modifying:

| Path | Risk | Coordination Required |
|------|------|----------------------|
| `src/db/schema.ts` | Schema changes affect all services | PR review from DB owner |
| `middleware.ts` | Affects every request | Load test after changes |
| `lib/stripe.ts` | Payment processing | Finance team notification |

Local Setup Guide Template

## Local Setup (Target: under 10 minutes)

### Prerequisites

| Tool | Required Version | Install Command |
|------|-----------------|----------------|
| Node.js | 20+ | `nvm install 20` |
| pnpm | 9+ | `corepack enable && corepack prepare pnpm@latest` |
| Docker | 24+ | [docker.com/get-docker](https://docker.com/get-docker) |
| PostgreSQL | 16+ | Via Docker (see step 3) |

### Steps

**Step 1: Clone and install** (2 min)

git clone [repo-url] cd [repo-name] pnpm install


**Step 2: Configure environment** (1 min)

cp .env.example .env

Edit .env — minimum required values:

DATABASE_URL=postgresql://dev:dev@localhost:5432/myapp

APP_SECRET=$(openssl rand -base64 32)


**Step 3: Start infrastructure** (1 min)

docker compose up -d

Starts: PostgreSQL, Redis

Verify: docker compose ps (all should show "running")


**Step 4: Set up database** (1 min)

pnpm db:migrate pnpm db:seed # Optional: loads test data


**Step 5: Start dev server** (30 sec)

pnpm dev

App runs at http://localhost:3000


### Verify Everything Works

- [http://localhost:3000](http://localhost:3000) loads the app
- [http://localhost:3000/api/health](http://localhost:3000/api/health) returns `{"status": "ok"}`
- `pnpm test` passes with no failures
- You can log in with the seeded test user (see.env.example for credentials)

Debugging Guide Template

## Debugging Guide

### Common Errors and Fixes

**`Error: connect ECONNREFUSED 127.0.0.1:5432`**

Cause: PostgreSQL is not running Fix: docker compose up -d postgres Verify: docker compose ps postgres (should show "running")

**`Error: relation "users" does not exist`**

Cause: Migrations have not been applied Fix: pnpm db:migrate Verify: pnpm db:migrate status (should show all applied)

**`TypeError: Cannot read property 'id' of null`**

Cause: Session is null — usually a missing or expired auth token Fix: Check that the request includes a valid Authorization header Debug: Add console.log(session) in the route handler to inspect

### Where to Find Logs

| Environment | Location | Command |
|-------------|----------|---------|
| Local dev | Terminal running `pnpm dev` | Scroll up in terminal |
| Local DB | Docker logs | `docker compose logs postgres` |
| Staging | [Platform dashboard] | [Link to staging logs] |
| Production | [Platform dashboard] | [Link to production logs] |

### Useful Diagnostic Commands

Check database connectivity

psql $DATABASE_URL -c "SELECT 1"

View active database connections

psql $DATABASE_URL -c "SELECT count(*), state FROM pg_stat_activity GROUP BY state"

Check if a specific migration was applied

pnpm db:migrate status

Clear local caches

redis-cli FLUSHDB

Verify environment variables are loaded

node -e "console.log(process.env.DATABASE_URL ? 'Set' : 'MISSING')"

Audience-Specific Customization

Junior Developer Additions

  • Explain acronyms on first use (ORM, RLS, JWT, etc.)
  • Add "read this first" ordered reading list of 5 files
  • Include screenshots for UI-related flows
  • Link to external learning resources for key technologies
  • Add a "glossary" section for domain-specific terms

Senior Engineer Additions

  • Link to Architecture Decision Records (ADRs)
  • Include performance benchmark baselines
  • Document known technical debt and planned improvements
  • Provide security model overview with threat boundaries
  • Share scaling limits and planned capacity changes

Contractor Additions

  • Define scope boundaries ("only modify files in src/features/your-feature/")
  • Specify communication channels and response expectations
  • Document access request process for required systems
  • Include time logging requirements and reporting cadence
  • List prohibited actions (direct push to main, schema changes, etc.)

Quality Verification

After generating onboarding docs, validate with this checklist:

  1. Fresh machine test — can a new developer follow the setup guide verbatim on a clean machine?
  2. 10-minute target — does local setup complete in under 10 minutes?
  3. Error coverage — do the documented errors match what developers actually encounter?
  4. Link validity — do all links to external resources and internal docs resolve?
  5. Currency — are all version numbers, commands, and screenshots current?

Common Pitfalls

  • Docs written once, never updated — add doc update checks to the PR template
  • Missing "why" for architecture decisions — document why, not just what
  • Untested setup instructions — test the docs on a fresh machine quarterly
  • No debugging section — the debugging guide is the most valuable section for new hires
  • Too much detail for the wrong audience — contractors need task-specific docs, not deep architecture
  • Stale screenshots — UI screenshots go stale fast; link to running instances when possible

Best Practices

  1. Keep setup under 10 minutes — if it takes longer, fix the setup process, not the docs
  2. Test the docs — have a new hire follow them literally and fix every gap they hit
  3. Link, do not repeat — reference ADRs, issues, and external docs instead of duplicating
  4. Update docs in the same PR as code changes — documentation drift is the number one failure mode
  5. Version-specific notes — call out what changed in recent versions so returning developers catch up
  6. Runbooks over theory — "run this command" is more useful than "the system uses Redis for caching"
  7. Key file map is mandatory — every project should have an annotated list of the 10-20 most important files

Troubleshooting

ProblemCauseSolution
Generated setup guide fails on fresh machineImplicit dependencies not captured during analysisRe-run Phase 1 gather commands on a clean environment; add every missing tool to the prerequisites table
Architecture diagram does not match actual data flowAnalysis relied on stale code paths or unused modulesCross-reference with git log --since="90 days" to find active code paths; interview a senior engineer to validate
Key file map is too large (30+ files)No prioritization applied; every file treated equallyLimit to 15-20 files maximum; rank by edit frequency (`git log --format='%H' -- <file>wc -l`) and coupling
Onboarding doc goes stale within weeksNo process ties doc updates to code changesAdd a "docs" checkbox to the PR template; schedule quarterly freshness reviews
Audience sections feel genericSame content served to juniors, seniors, and contractorsGenerate separate docs per audience or use collapsible sections; run the audience customization checklist from this skill
Debugging guide missing real errorsErrors were invented rather than collected from logsMine actual error messages from Sentry, CI logs, and Slack support channels before writing the guide
Environment variable list is incompletegrep scan missed dynamically constructed variable namesSupplement grep results with a manual review of config loader files and .env.example; verify against deployment manifests

Success Criteria

  • Setup completion rate: 90%+ of new developers reach a working local environment within 10 minutes using only the generated guide (no Slack questions needed).
  • First-commit time: New hires make their first meaningful commit within 2 business days of starting onboarding.
  • Error coverage: The debugging guide covers at least 80% of errors reported in the team's support channel over the prior 90 days.
  • Doc freshness: Onboarding documentation passes a quarterly freshness audit with fewer than 3 stale sections flagged.
  • Key file accuracy: The key file map covers all files edited in more than 5 PRs during the past quarter.
  • Audience satisfaction: Post-onboarding survey scores average 4.0+ out of 5.0 across junior, senior, and contractor cohorts.
  • Link validity: Zero broken internal or external links when validated by an automated link checker at publish time.

Scope & Limitations

This skill covers:

  • Generating architecture overviews, key file maps, setup guides, task runbooks, and debugging guides from codebase analysis
  • Audience-aware documentation tailored for junior developers, senior engineers, and contractors
  • Output in Markdown, Notion, and Confluence formats
  • Quality verification checklists and freshness audit processes

This skill does NOT cover:

  • Automated API reference generation from code annotations — see engineering/changelog-generator for release-oriented docs or engineering/api-design-reviewer for API quality
  • Continuous documentation pipelines or CI-triggered doc builds — see engineering/ci-cd-pipeline-builder for pipeline automation
  • Security-focused documentation such as threat models or access control matrices — see engineering/skill-security-auditor for security auditing
  • Runbook generation for incident response and production operations — see engineering/runbook-generator for operational runbooks

Integration Points

SkillIntegrationData Flow
engineering/runbook-generatorOnboarding task runbooks can seed operational runbooks for production incident responseOnboarding runbook templates → Runbook Generator for ops-grade expansion
engineering/api-design-reviewerAPI route analysis from Phase 1 feeds into API design quality reviewsDiscovered API endpoints → API Design Reviewer for consistency checks
engineering/database-schema-designerDatabase schema files identified during key file mapping inform schema design reviewsSchema file paths and ORM type → Schema Designer for migration planning
engineering/tech-debt-trackerTechnical debt items surfaced during architecture analysis should be logged for trackingArchitecture analysis findings → Tech Debt Tracker backlog entries
engineering/ci-cd-pipeline-builderCI/CD config discovered in Phase 1 can be validated and improved by the pipeline builderCI config paths and workflow list → Pipeline Builder for optimization
engineering/dependency-auditorDependency counts and lockfiles gathered in Phase 1 feed directly into security and license auditsPackage manifests and lockfiles → Dependency Auditor for vulnerability scanning

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude

31.28%
按下载量换算160

Codex

30.97%
按下载量换算158

Cursor

19.39%
按下载量换算99

Gemini CLI

9.59%
按下载量换算49

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills