onboard-repo
Skill: Onboard Repository (Orchestrator)
Purpose
This skill does not perform analysis itself. It is a meta skill that orchestrates a fixed sequence of atomic skills to rapidly onboard a new or unfamiliar repository — producing architecture findings, standardized documentation, and actionable recommendations in one pass. Use it when joining a new project, inheriting a codebase, or preparing a repository for team onboarding. For individual tasks (e.g. only generating a README or only reviewing architecture), invoke the corresponding atomic skill directly (generate-standard-readme, review-architecture, etc.).
Core Objective
Primary Goal: Produce a comprehensive repository onboarding report by orchestrating atomic skills in a fixed sequence, aggregating architecture findings, standardized documentation, and recommendations.
Success Criteria (ALL must be met):
- ✅ Codebase review completed: Architecture, patterns, and tech debt assessed via review-codebase
- ✅ Architecture findings generated: Module boundaries, dependency direction, and coupling assessed via review-architecture
- ✅ README generated or improved: Standardized front-page documentation produced via generate-standard-readme
- ✅ AGENTS.md generated or improved: Agent entry contract established via write-agents-entry
- ✅ Aggregated report delivered: All findings, generated docs, and recommendations merged into a single onboarding report
More from nesnilnehc/ai-cortex
review-codebase
Review given file/dir/repo for current-state code organization: module boundaries, design patterns, cross-module dependencies, tech debt, and interface stability. Scope-only atomic skill; output is a findings list.
106review-vue
Review Vue 3 code for Composition API, reactivity, components, state (Pinia), routing, and performance. Framework-only atomic skill; output is a findings list.
94review-diff
Review only git diff for impact, regression, correctness, compatibility, and side effects. Scope-only atomic skill; output is a findings list for aggregation.
91review-java
Review Java code for language and runtime conventions: concurrency, exceptions, try-with-resources, API versioning, collections and Streams, NIO, and testability. Language-only atomic skill; output is a findings list.
84review-architecture
Review code for architecture: module and layer boundaries, dependency direction, single responsibility, cyclic dependencies, interface stability, and coupling. Cognitive-only atomic skill; output is a findings list.
83review-security
Review code for security: injection, sensitive data, auth, dependencies, config, and crypto. Atomic skill; output is a findings list.
74