一键导入
onboard
Interactive project setup: copy templates, configure fleet, define compliance floor, add first specialist agent.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Interactive project setup: copy templates, configure fleet, define compliance floor, add first specialist agent.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Behavioral floor management. Propose changes, review proposals, apply approved changes, view status. Routes to COO as behavioral floor guardian.
Compliance program management. Propose changes, review proposals, apply approved changes, audit conformance, view change log.
Generic floor management. Routes to the declared guardian for any governance floor. Use /floor propose <floor-name> <change> to propose changes to any active floor.
Structured agent-to-agent handoff. Validates artifact, logs metrics event, dispatches receiving agent.
Run a retrospective for the last completed work item. Pulls DORA metrics, summarizes flow, captures keep/stop/start.
Product Owner commands -- backlog management, prioritization, grooming, review, and status. Routes to the product-owner agent.
| name | onboard |
| description | Interactive project setup: copy templates, configure fleet, define compliance floor, add first specialist agent. |
Interactive setup for a new project using the Venutian Antfarm harness. Follows docs/GETTING-STARTED.md.
Verify required tools are available:
command -v git && command -v claude && command -v bash
command -v jq # optional but recommended
Report any missing prerequisites before proceeding.
Create the runtime directories and copy content templates to their runtime locations. These directories are not shipped in the repo — they are populated by /onboard at setup time.
# Runtime directories (empty, populated by agents at runtime)
mkdir -p .claude/compliance/{compiled,eslint,semgrep,proposals}
mkdir -p .claude/governance/decisions
mkdir -p .claude/governance/guidance/{ceo,cfo,ciso,cko,coo,cto}
mkdir -p .claude/floors
mkdir -p .claude/findings
mkdir -p .claude/metrics
# Copy content templates to runtime locations
cp templates/compliance/change-log.md .claude/compliance/change-log.md
cp templates/compliance/targets.md .claude/compliance/targets.md
cp templates/governance/executive-brief.md .claude/governance/executive-brief.md
cp templates/governance/guidance-registry.md .claude/governance/guidance-registry.md
cp templates/findings/register.md .claude/findings/register.md
cp templates/findings/information-needs.md .claude/findings/information-needs.md
# Initialize empty runtime files
touch .claude/metrics/events.jsonl
Note: The CRO does not have a guidance directory — CRO uses the compliance infrastructure (proposals, change-log) rather than a guidance slot.
Check if floors/compliance.md exists at project root.
templates/floors/compliance.md and ask the user to define 3-5 non-negotiable rules for their domain. Provide examples:
After the compliance floor is defined:
mkdir -p .claude/floors/compliance
sha256sum floors/compliance.md | cut -d' ' -f1 > .claude/floors/compliance/floor-checksum.sha256
echo "$(git rev-parse HEAD)" >> .claude/floors/compliance/floor-checksum.sha256
/compliance propose.Ask the user if they want to define behavioral rules for their team.
templates/floors/behavioral.md to floors/behavioral.md. Walk the user through example behavioral rules:
mkdir -p .claude/floors/behavioral
sha256sum floors/behavioral.md | cut -d' ' -f1 > .claude/floors/behavioral/floor-checksum.sha256
echo "$(git rev-parse HEAD)" >> .claude/floors/behavioral/floor-checksum.sha256
/behavioral propose.Check if fleet-config.json exists at project root.
templates/fleet-config.json and walk the user through:
project.name — their project namemetrics.backend — recommend "jsonl" to startagents.specialists — which specialist agents they plan to addretro.cadence — recommend 1 (retro after every item) for new teamsAsk the user what their primary tech stack is, then recommend a specialist template:
| Stack | Template |
|---|---|
| Node/Python/Go/Rust backend | templates/agents/backend-specialist.md |
| React/Vue/Angular frontend | templates/agents/frontend-specialist.md |
| Security-focused | templates/agents/security-reviewer.md |
| E2E testing | templates/agents/e2e-test-engineer.md |
| Infrastructure/DevOps | templates/agents/infrastructure-ops.md |
Copy the chosen template to .claude/agents/ and help the user customize:
Help the user create their first tier file at docs/plans/tier-1-launch-blockers.md with at least one work item. Walk them through the item format defined in .claude/COLLABORATION.md.
Run validation to confirm everything is wired up:
ops/dora.sh # metrics pipeline works
ops/pathways.sh # pathway analysis works
bash -n ops/*.sh # all scripts parse
Print a checklist of what was set up:
## Onboarding Complete
- [x] Compliance floor defined
- [x] Fleet configured
- [x] Specialist agent added: <name>
- [x] First backlog item created
- [x] Validation passed
- [x] Compliance floor guardianship activated (CRO + checksum)
- [x] Security review completed (CISO)
- [ ] Behavioral floor defined (optional)
Next steps:
- Run `/po` to see your status overview
- Run `/po groom` to refine your first item
- Start building with `/po next`