Generate a dev-setup and onboarding guide for the repo from its actual config and entry points
Scanned 9/3/2026
Install to Claude Code
npx -y skills add black141312/ada --skill onboard --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Onboard?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/black141312-onboard)More formats (shields.io, HTML) on the badges page.
---
name: onboard
description: Generate a dev-setup and onboarding guide for the repo from its actual config and entry points
category: meta
---
# Onboard
Reach for this when a repo lacks a clear "get started" path and a new contributor would have to reverse-engineer setup. Produces a concrete, verified onboarding guide grounded in the repo's real files.
1. Detect the stack: read manifests and lockfiles (`package.json`, `pyproject.toml`/`requirements.txt`, `go.mod`, `Cargo.toml`, `Gemfile`) plus version pins (`.nvmrc`, `.tool-versions`, `.python-version`) and container files (`Dockerfile`, `compose.yaml`).
2. Extract the real commands from scripts/targets (npm `scripts`, `Makefile`, `Justfile`, `Taskfile`) rather than inventing them — note install, build, run, test, lint.
3. Find required config: scan for `.env.example`, secret/config templates, and CI workflows (`.github/workflows`) to learn what env vars and services (DB, cache, queues) the app expects.
4. Map entry points: identify how to start the app and where the codebase begins (main/server file, top-level packages) and how to run a single test. Name each top-level folder's role in a line each, and separate the core modules that carry domain logic from glue, vendored code, and generated output.
5. Verify the happy path by running install + build + test (or a fast subset); record any step that fails and the fix.
6. Write `ONBOARDING.md` (or `CONTRIBUTING.md`) with prerequisites, exact copy-paste setup steps, run/test commands, env vars table, and a "first PR" pointer. End with a short "start here, then read these" orientation naming the handful of files worth reading first.
## Rules
- Lead with the few files that explain the most; do not enumerate every directory, and flag generated/vendored/build-output dirs so a newcomer does not read them as source.
- Note the primary language, framework, and any monorepo/workspace boundaries up front.
- A map, not a tutorial — point at where to learn something, don't re-teach the framework.
- Only document commands that exist in the repo or that you actually ran — never guess invocations.
- Pin tool versions you observed; flag when none is specified instead of assuming "latest".
- List env vars as a table (name, required?, example/default) sourced from `.env.example` and code, never real secret values.
- Keep steps copy-pasteable and OS-aware; call out platform-specific commands (bash vs PowerShell) when they differ.
- If a setup step fails, fix or clearly mark it as broken — do not ship an untested guide.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!