Onboarding โ turning documents into project context
What you need: A scaffolded project-state/ directory.
Scaffolding creates the empty substrate. Onboarding fills it with context from your existing project documents. These are different operations, and they run as different skills โ but onboarding is designed to run immediately after scaffolding.
The inbox-first approach
The pattern is simple: drop files, triage, promote.
-
Copy your project documents into
project-state/documents/inbox/. Anything works โ PDFs, Word docs, spreadsheets, slide decks, markdown files. The inbox is a staging area, not a permanent location. -
Run the triage:
/project-inbox
- The inbox skill reads each document, scores its relevance, and produces a triage summary:
# Inbox Triage โ 2026-05-28
| # | Document | Type | Relevance | Route |
|---|--------------------------------|---------------|-----------|---------------|
| 1 | Contribution-Agreement-v2.pdf | legal | high | imprint |
| 2 | Project-Charter-Draft.docx | planning | high | imprint |
| 3 | Weekly-Standup-Notes-W19.md | status | medium | reference |
| 4 | Vendor-Quote-Enzymes.pdf | procurement | low | reference |
| 5 | Team-Slack-Export.json | communication | medium | intel |
Imprint documents: 2 (will seed onboarding context)
Reference documents: 2
Intel documents: 1
Documents classified as "imprint" are the high-value ones โ project charters, contribution agreements, proposals, grant applications. These contain the information that seeds milestones, stakeholders, risks, and goals.
What the inbox extracts
The triage produces two things:
- Classification metadata โ each document gets a type, relevance score, and routing recommendation.
- Orientation YAML โ for imprint documents, the inbox extracts structured data: project goals, named stakeholders, timeline commitments, budget figures, deliverable lists, risk factors.
This orientation data flows directly into the onboarding skill. When you run:
/project-onboarding
The nine onboarding chapters check for inbox-orientation data first. If it exists, the onboarding flow uses PreFilledField components โ instead of asking "What are your project milestones?", it says "The project charter mentions these milestones. Confirm or edit:"
Milestone 1: Pilot-scale extraction protocol validated [confirmed]
Milestone 2: Regulatory pre-submission package complete [confirmed]
Milestone 3: Cost-per-kg target met at bench scale [edit โ "...at pilot scale"]
The difference between blank-slate onboarding and inbox-primed onboarding is significant. With documents, onboarding takes 10-15 minutes of confirmation. Without documents, it takes 30-45 minutes of answering questions.
The nine chapters
The onboarding skill runs as a guided 9-chapter flow:
- Project identity โ name, organization, kind, timeline
- Stakeholders โ people, roles, organizations, contact info
- Milestones โ deliverables, target dates, owners
- Risks โ known risks, likelihood, impact, mitigation
- Decisions โ key decisions already made
- Surfaces โ where to publish (Slack, Gmail, blog, website, calendar)
- Reporting matrix โ what reports, for whom, at what cadence
- Phase configuration โ current phase, gate status
- Context documents โ goals, scope, constraints, background
Each chapter writes directly to the substrate. By the end, you have populated milestones/, risks/, decisions/, and documents/references/ directories, a filled-in manifest.yaml, and a working reporting-matrix.yaml.
Output artifacts
After onboarding completes, the substrate contains:
project-state/
โโโ manifest.yaml # Filled with real stakeholders and contacts
โโโ reporting-matrix.yaml # Configured for your stakeholder groups
โโโ state.json # Phase set, counters updated
โโโ milestones/
โ โโโ M01-pilot-extraction.yaml # From chapter 3
โ โโโ M02-regulatory-package.yaml
โ โโโ M03-cost-target.yaml
โโโ risks/
โ โโโ R-01-enzyme-supply.yaml # From chapter 4
โ โโโ R-02-regulatory-timeline.yaml
โโโ decisions/
โ โโโ 2026-05-28-extraction-method.yaml # From chapter 5
โโโ documents/
โ โโโ references/
โ โ โโโ goals.md # Extracted from imprint docs
โ โ โโโ context.md # Background, constraints, scope
โ โโโ inbox/ # Now empty (documents promoted)
โโโ logs/
โโโ activity.ndjson # Every onboarding action logged
Without documents
Onboarding works without any inbox documents. The chapters still run โ they just ask questions instead of presenting pre-filled confirmations. You type the answers, and the same substrate gets created.
The inbox-first approach is faster and more accurate (documents don't forget details), but it's not required. Some projects start with nothing but a conversation.
Next step
The substrate is populated. The natural question becomes "what should I do now?" The daily routine shows how the orchestrator reads your state and calendar to answer that question every day.