orchestra-implement
Execute an approved spec — create a branch, work through each step, commit progress, and mark complete.
What this skill does
# Implement
Execute an approved spec end-to-end. Work through each step in order, commit progress, verify acceptance criteria, and update the work item status.
## Prerequisites
- A spec must exist at `.orchestra/work/{id}-{name}/spec.md`
- Spec `status` must be `approved`
- Git working tree must be clean (`git status` shows nothing uncommitted)
## Steps
### 1. Load the Spec
- Locate the spec from $ARGUMENTS (path or work item name)
- Read the spec completely — objective, approach steps, deliverables table, acceptance criteria
- Read the PRD alongside it for intent context
- Confirm `status: approved` in the frontmatter — stop and report if `draft`, `in-progress`, or `complete`
**Pre-flight: verify milestone traceability**
Before creating a branch, check whether this work item is anchored to a milestone:
- Read `.orchestra/roadmap.md`
- For each milestone row, read its PRD and scan the materials table
- Check whether this work item's path appears in any materials table
**If found:** note which milestone this serves — include it in the Step 7 report.
**If not found:** surface an advisory and wait for explicit confirmation:
> "This work item does not appear in any milestone's materials table — it has no stated goal it serves. Proceed anyway, or assign it to a milestone first via `/orchestra-roadmap update`?"
- **Proceed** → continue to Step 2
- **Assign first** → stop here; resume after the user runs `/orchestra-roadmap update`
This is advisory, not a blocker. At agentic speed, work sometimes moves faster than the roadmap. The check makes the gap visible so the human consciously decides, rather than silently accepting scope drift.
### 2. Prepare the Branch
```bash
git checkout -b impl/{ticket-id}
```
Branch name: `impl/{ticket-id}` — use the ticket slug from the work item folder name (e.g. `impl/86e15rqpp`).
### 3. Mark In-Progress
Update the spec frontmatter:
```yaml
status: in-progress
```
Commit:
```bash
git add .orchestra/work/{id}-{name}/spec.md
git commit -m "wip({ticket-id}): begin implementation"
```
### 4. Execute Each Step
Work through the spec's approach steps in order:
- Read each step fully before acting
- Complete the step before moving to the next — no partial steps
- After each meaningful unit of work, commit:
```
feat({ticket-id}): {brief description}
```
- If a step cannot be completed (missing dependency, genuine ambiguity in the spec), stop and report — do not skip or guess
### 5. Verify Acceptance Criteria
When all steps are done, check each acceptance criterion from the spec explicitly:
- Work through them one by one
- State pass or fail with brief evidence for each
- If any criterion fails, return to Step 4 to address it before continuing
### 6. Mark Complete
Update the spec frontmatter:
```yaml
status: complete
```
Update the deliverables table — mark each row as delivered.
Commit:
```bash
git add .
git commit -m "feat({ticket-id}): implementation complete"
```
### 7. Report
Output a concise summary:
- Branch name and commit count
- Each acceptance criterion with pass/fail
- Any decisions made during implementation that deviated from the spec
- Signal: ready for `/orchestra-review`
## Quality Checks
- [ ] Milestone traceability checked — gap surfaced and human confirmed before proceeding
- [ ] Every step in the spec was executed — none skipped
- [ ] Every acceptance criterion checked explicitly, not assumed
- [ ] All deliverables in the materials table exist at their specified paths
- [ ] Working tree is clean, no uncommitted changes
- [ ] Spec status is `complete`
## Boundaries
- Do not merge to main — that is `/orchestra-merge`
- Do not push the branch — let the next skill decide
- Do not rewrite the spec mid-execution — if the spec is wrong, stop and surface it
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.