onboard
3
总安装量
3
周安装量
#56318
全站排名
安装命令
npx skills add https://github.com/kaiboo404/agent-skills-with-project-template --skill onboard
Agent 安装分布
gemini-cli
3
github-copilot
3
codex
3
kimi-cli
3
opencode
3
amp
3
Skill 文档
Onboard
Produces an instant project dashboard by reading all .context/ files. Designed for fast orientation at the start of any AI session or for team onboarding.
When to Use This Skill
- Starting a new development session
- Onboarding a new team member
- Getting a quick status check
- After a long break from the project
Execution Flow
Step 1: Read All Context Files
Read these files in order (fail gracefully if any are missing):
.context/project.mdâ product context.context/stack.mdâ technology stack.context/architecture.mdâ directory structure.context/conventions.mdâ coding standards.agents/skills/skills.jsonâ installed skills
Step 2: Scan Active Specs
Read file names in .context/specs/ (exclude .archive/ and _template.md):
- Count by status:
[ ],[/],[x],[!] - Identify the highest-priority active spec
Step 3: Generate Dashboard
Output format:
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
â PROJECT DASHBOARD â
â âââââââââââââââââââââââââââââââââââââââââââââââââââââââ£
â â
â ð Project: {name} â
â ð Phase: {phase} â
â ð¯ Summary: {one-line description} â
â â
â âââââââââââââââââââââââââââââââââââââââââââââââââââââââ£
â ð§ STACK â
â âââ Language: {language} {version} â
â âââ Framework: {framework} {version} â
â âââ Database: {db} {version} â
â âââ Testing: {test framework} â
â â
â âââââââââââââââââââââââââââââââââââââââââââââââââââââââ£
â ð ARCHITECTURE â
â âââ {module_count} modules defined â
â âââ Key modules: {top 3 modules} â
â â
â âââââââââââââââââââââââââââââââââââââââââââââââââââââââ£
â ð ACTIVE SPECS â
â âââ In Progress: {count} â
â âââ Not Started: {count} â
â âââ Blocked: {count} â
â âââ Archived: {count} â
â â
â âââââââââââââââââââââââââââââââââââââââââââââââââââââââ£
â ð§© INSTALLED SKILLS ({count}) â
â âââ {comma-separated skill names} â
â â
â âââââââââââââââââââââââââââââââââââââââââââââââââââââââ£
â â ï¸ NOTICES â
â {any warnings from context-sync validation} â
â {any stale specs from spec-lifecycle} â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Step 4: Suggest Next Action
Based on the dashboard, suggest one of:
- “Start work on…” â if there are
[ ] Not Startedspecs - “Continue work on…” â if there are
[/] In Progressspecs - “Unblock…” â if there are
[!] Blockedspecs - “Archive completed specs” â if there are
[x] Completedspecs still in active directory - “Run context-sync validation” â if context files may be stale
Lightweight Mode
For quick status without the full dashboard:
ð {PROJECT_NAME} ({phase}) | ð§ {language}+{framework} | ð {active_spec_count} active specs | ð§© {skill_count} skills
Missing Context Handling
If a .context/ file is missing, report it clearly:
â ï¸ MISSING CONTEXT FILES:
- .context/stack.md â Technology stack not defined
- .context/architecture.md â No architecture documentation
Run: Create these files to improve AI assistance quality.
Integration
- Runs
context-syncvalidation as part of the notices section - Reads
spec-lifecyclestatus for the active specs section - Non-destructive: this skill only reads, never writes