| name | onboard |
| description | Load an existing shared project into the current Claude Code session by finding its project folder and reading context, session logs, decisions, and open questions. |
Onboard Skill
Goal
Bring this Claude Code session up to speed on an existing coordinated project.
Use this skill when the user says:
/onboard <project>
load this project
continue the project
resume the coordinated project
onboard this session
pick up where we left off
Workspace root
Search these locations in order:
./shared/projects/
~/agent-workspace/shared/projects/
~/.claude/shared/projects/
Project matching
Given a project name or description:
- Normalize to lowercase.
- Search project slugs and project titles.
- Prefer exact slug match.
- If multiple candidates are plausible, show the top candidates and ask for selection.
- If one candidate is clearly best, load it.
Files to read
Read in this order:
context.md
session-log.md
decisions.md if present
open-questions.md if present
status.md if present
- Any project-specific
README.md if present
Do not load large artifact files unless the user asks or the current task requires them.
Onboarding summary
After reading, produce:
# Onboarded: <Project Name>
## Current objective
## Last known state
## Key decisions
## Active constraints
## Open questions
## Suggested next actions
## Files loaded
Session registration
Append to session-log.md:
## Session N — YYYY-MM-DD HH:MM
### Session started
- Onboarded into this project.
### Initial task
- <current user request or "not specified yet">
Working behavior after onboarding
For the rest of the session:
- Treat the loaded project context as authoritative unless contradicted by the user.
- Update
session-log.md when major work is completed.
- Update
decisions.md when a decision is made.
- Update
open-questions.md when new unresolved questions appear.
- Keep project files concise and navigable.
Guardrails
- Do not assume the project if matching is ambiguous.
- Do not read or expose secrets.
- Do not overwrite context during onboarding.
- Do not load huge files unless necessary.