End-to-End: Claude + Conductor
This runbook is intentionally strict about unknowns. Anything not verified is marked with [RESEARCH REQUIRED].
- Environment: Conductor workspace + Claude-based coding agent
- Method: ACE (
/auro.constitution->/auro.charter->/auro.plan->/auro.tasks->/auro.implement) - Outcome: shipped change + traceable artifacts
Preflight
Section titled “Preflight”- Confirm repository and branch strategy:
- Repo URL:
<RESEARCH REQUIRED: canonical repo URL> - Default branch:
<RESEARCH REQUIRED: protected branch policy>
- Confirm local prerequisites:
git --versionnode --versionnpm --version
- Confirm Auro CLI:
auro --version
- Confirm Conductor workspace setup details:
<RESEARCH REQUIRED: exact Conductor UI flow/versioned labels>
- Confirm Claude integration mode:
<RESEARCH REQUIRED: Claude model + tool permissions policy>
Phase 1: Project Bootstrap
Section titled “Phase 1: Project Bootstrap”- Create/open workspace in Conductor.
- Ensure working directory is correct.
- Initialize Auro (if missing):
auro init <PROJECT_NAME>- Validate
.auro/structure exists.
Expected artifacts:
.auro/constitution.md.auro/templates/.auro/scripts/
Phase 2: Governance First
Section titled “Phase 2: Governance First”Run once per project:
/auro.constitutionChecklist:
- principles are testable
- constraints are explicit
- no conflicting rules
If uncertain:
- add
[NEEDS CLARIFICATION: ...]instead of assumptions
Phase 3: Charter
Section titled “Phase 3: Charter”Run:
/auro.charter "<feature request>"Review for:
- independent user stories (P1/P2/P3)
- numbered requirements
- measurable success criteria
- edge cases
Stop condition:
- no unresolved ambiguity markers
Phase 4: Plan
Section titled “Phase 4: Plan”Run:
/auro.planValidate phase gates:
- Simplicity
- Anti-Abstraction
- Integration-First
Expected outputs:
plan.mdresearch.mddata-model.mdcontracts/quickstart.md
Phase 5: Tasks
Section titled “Phase 5: Tasks”Run:
/auro.tasksValidate:
- every task maps to a user story
[P]markers only where safe- phases are dependency-correct
Phase 6: Implementation
Section titled “Phase 6: Implementation”Run:
/auro.implementExecution guardrails:
- small commits per task cluster
- run tests after each phase
- stop and revise charter/plan if behavior drifts
Phase 7: Verification
Section titled “Phase 7: Verification”Run project checks:
<RESEARCH REQUIRED: exact lint command><RESEARCH REQUIRED: exact test command><RESEARCH REQUIRED: exact build command>Manual verification checklist:
- happy path
- one expected failure path
- one boundary/edge case
Phase 8: Ship
Section titled “Phase 8: Ship”- Open PR against
main. - Include artifact traceability:
- charter section -> plan section -> task IDs -> commits
- Merge with CI green.
- Verify deployed URL:
<RESEARCH REQUIRED: environment URL>
Failure Recovery
Section titled “Failure Recovery”If run gets stuck:
- Return to latest valid charter.
- Regenerate plan from charter.
- Regenerate tasks from plan.
- Continue implementation with smaller phase scope.
Research Placeholders To Resolve
Section titled “Research Placeholders To Resolve”- Conductor version-specific UI flow
- Claude configuration and permissions
- Canonical CI commands for this repo
- Deployment verification URL/process