skills/orchestra-implement/SKILL.md
Execute an approved spec — create a branch, work through each step, commit progress, and mark complete.
npx skillsauth add mpazaryna/agentic-factory orchestra-implementInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Execute an approved spec end-to-end. Work through each step in order, commit progress, verify acceptance criteria, and update the work item status.
.orchestra/work/{id}-{name}/spec.mdstatus must be approvedgit status shows nothing uncommitted)status: approved in the frontmatter — stop and report if draft, in-progress, or completePre-flight: verify milestone traceability
Before creating a branch, check whether this work item is anchored to a milestone:
.orchestra/roadmap.mdIf 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?"
/orchestra-roadmap updateThis 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.
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).
Update the spec frontmatter:
status: in-progress
Commit:
git add .orchestra/work/{id}-{name}/spec.md
git commit -m "wip({ticket-id}): begin implementation"
Work through the spec's approach steps in order:
feat({ticket-id}): {brief description}
When all steps are done, check each acceptance criterion from the spec explicitly:
Update the spec frontmatter:
status: complete
Update the deliverables table — mark each row as delivered.
Commit:
git add .
git commit -m "feat({ticket-id}): implementation complete"
Output a concise summary:
/orchestra-reviewcomplete/orchestra-mergedevelopment
Comprehensive Cloudflare platform skill covering Workers, Pages, storage (KV, D1, R2), AI (Workers AI, Vectorize, Agents SDK), feature flags (Flagship), networking (Tunnel, Spectrum), security (WAF, DDoS), and infrastructure-as-code (Terraform, Pulumi). Use for any Cloudflare development task. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.
tools
Send and receive transactional emails with Cloudflare Email Service (Email Sending + Email Routing). Use when building email sending (Workers binding or REST API), email routing, Agents SDK email handling, or integrating email into any app — Workers, Node.js, Python, Go, etc. Also use for email deliverability, SPF/DKIM/DMARC, wrangler email setup, MCP email tools, or when a coding agent needs to send emails. Even for simple requests like "add email to my Worker" — this skill has critical config details.
tools
Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, chat applications, voice agents, or browser automation. Covers Agent class, state management, callable RPC, Workflows, durable execution, queues, retries, observability, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.
tools
Planning conductor — runs the full PRD → Spec → Gherkin loop in a single interactive session with human approval gates.