AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Onboard

skill-viknesh20-20-claude-code-tool-kit-onboard · by viknesh20-20

Generates a comprehensive codebase onboarding guide by scanning the project structure, detecting the stack, mapping architecture, and identifying key entry points. Use when joining a new project or onboarding teammates.

No reviews yet
0 installs
35 views
0.0% view→install

Install

$ agentstack add skill-viknesh20-20-claude-code-tool-kit-onboard

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-viknesh20-20-claude-code-tool-kit-onboard)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Onboard? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Codebase Onboarding

Auto-Scan

!find . -type f -not -path "*/node_modules/*" -not -path "*/.git/*" -not -path "*/vendor/*" -not -path "*/__pycache__/*" -not -path "*/target/*" -not -path "*/dist/*" -not -path "*/build/*" -not -path "*/.next/*" 2>/dev/null | wc -l

Project Files

!ls package.json requirements.txt pyproject.toml go.mod Cargo.toml *.csproj *.sln Gemfile composer.json mix.exs Makefile Dockerfile docker-compose* 2>/dev/null

Directory Structure

!tree -L 2 -I "node_modules|.git|vendor|__pycache__|target|dist|build|.next" 2>/dev/null || find . -type d -maxdepth 2 -not -path "*/node_modules/*" -not -path "*/.git/*" 2>/dev/null

README

!cat README.md 2>/dev/null | head -50

Git Activity

!git log --oneline -20 2>/dev/null !git shortlog -sn --no-merges 2>/dev/null | head -10


Onboarding Guide Generation

Section 1: Project Overview

  • What this project does (from README + code analysis)
  • Who maintains it (from git history)
  • How active it is (recent commits, contributors)

Section 2: Tech Stack

Detect and document:

  • Language(s) and version(s)
  • Framework(s)
  • Database(s)
  • Package manager
  • Test framework
  • Build tools
  • CI/CD system

Section 3: Directory Map

Annotated directory tree:

src/
├── components/   # UI components
├── services/     # Business logic
├── utils/        # Shared utilities
├── types/        # Type definitions
└── config/       # Configuration

Section 4: Key Entry Points

  • Application entry point (main file, index, app)
  • API routes / endpoints
  • Database schema / models
  • Configuration files
  • Environment variables needed

Section 5: How to Run

  • Prerequisites (runtime versions, tools)
  • Installation steps
  • Development server command
  • Test command
  • Build command

Section 6: Architecture Patterns

  • Code organization pattern (MVC, hexagonal, feature-based, etc.)
  • State management approach
  • Data flow (request lifecycle)
  • Error handling strategy
  • Authentication/authorization approach

Section 7: Where to Start

Based on the codebase analysis:

  • "If you need to fix a bug, start here: ..."
  • "If you need to add a feature, start here: ..."
  • "If you need to understand the data model, look at: ..."

Section 8: Gotchas & Tribal Knowledge

  • Non-obvious conventions found in the code
  • Common pitfalls (from error handling patterns and comments)
  • Areas with tech debt (complex, undocumented, or heavily modified files)

Rules

  • Base everything on actual code — don't assume
  • Flag areas that lack documentation
  • Be honest about code quality and tech debt
  • Include exact file paths for every reference

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.