Install
openclaw skills install @emersonbraun/eb-dev-workflowMaster orchestrator for the full autonomous development lifecycle. Use this skill whenever the user mentions starting a new feature, has an idea to implement, wants to plan development, says "quero desenvolver", "tenho uma ideia", "nova feature", "começar uma issue", "próxima issue", or asks what the next step in development is. This skill coordinates all phases and delegates to existing skills (PRD, Issues, Code Review) where available, filling in QA Planning, Development, Testing, and PR management. Trigger even if the user only mentions one phase — this skill decides what comes next and runs autonomously via Claude Code.
openclaw skills install @emersonbraun/eb-dev-workflowAutonomous end-to-end lifecycle manager for Claude Code. Coordinates all phases from idea to merged PR. Delegates to your existing skills where they exist; owns the phases in between.
| Phase | Owner |
|---|---|
| 1 — PRD | Invoke skill: write-a-prd |
| 2 — Issues from PRD | Invoke skill: prd-to-issues |
| 3 — Architecture | Invoke skill: software-architect |
| 4 — QA Planning | This skill |
| 5 — Development | Invoke skills: senior-frontend, senior-backend |
| 6 — Automated Testing | This skill (npm test + Playwright) |
| 7 — Code Review | Invoke skill: code-review:code-review |
| 8 — PR + Close + Advance | This skill |
IDEA
|-- [Phase 1] invoke skill: write-a-prd
|-- [Phase 2] invoke skill: prd-to-issues -> ordered issues
|-- For each issue:
|-- [Phase 3] invoke skill: software-architect
|-- [Phase 4] QA Planning (before any code)
|-- [Phase 5] invoke skills: senior-frontend + senior-backend
|-- [Phase 6] npm test + Playwright + coverage check
|-- [Phase 7] invoke skill: code-review:code-review
|-- [Phase 8] PR created -> issue closed -> next issue
At the start of every session, output this state block and ask the user to confirm:
DEV WORKFLOW STATE
Feature PRD : #[number] - [title]
Current issue : #[number] - [title]
Current phase : [1-8] - [phase name]
Remaining : #X, #Y, #Z
If starting fresh, ask: "Nova feature ou continuando uma issue existente?"
Owner: your existing skill.
Invoke skill write-a-prd to create the PRD through user interview and codebase exploration.
Wait for the PRD to be submitted as a GitHub issue before advancing.
Exit condition: PRD issue created on GitHub.
Trigger: PRD exists but contains ambiguities before issue breakdown begins.
If the PRD contains ambiguities, run a structured clarification pass: identify up to 5 critical unknowns, resolve each through targeted Q&A before proceeding to Phase 2.
Skip this phase when the PRD is unambiguous or the user explicitly says to proceed.
Exit condition: All critical unknowns resolved and documented on the PRD issue.
Owner: your existing skill.
Invoke skill prd-to-issues to break the PRD into independently-grabbable GitHub issues
using tracer-bullet vertical slices. The skill handles ordering, dependencies, and scoping.
Wait for all issues to be created and confirmed by the user before advancing.
Exit condition: All issues created on GitHub, order confirmed by user.
Owner: software-architect skill.
Invoke skill software-architect to design the system structure for this issue/feature.
For the first issue in a new feature, this produces the full architecture. For subsequent
issues, review and update the existing architecture if the new issue changes boundaries.
Skip this phase for small issues that don't affect system structure (bug fixes, copy changes, minor UI tweaks).
Exit condition: Architecture document exists and is appropriate for the issue scope.
Trigger: Architecture exists (or skipped) for this issue. Rule: This runs BEFORE any code is written.
Generate and post as a GitHub comment on the issue:
## Test Plan - #[issue-number]
### Unit Tests
- [ ] [unit] should [behavior] when [condition]
### Integration Tests
- [ ] [flow] should [result] given [state]
### Edge Cases
- [ ] Null / empty inputs
- [ ] Boundary values
- [ ] Concurrent operations (if applicable)
- [ ] Network / auth failures (if applicable)
### E2E Scenarios (Playwright)
- [ ] Happy path: [user does X -> sees Y]
- [ ] Error path: [user does X -> sees error Z]
### Regression Scope
- Features this change touches: [list files/components]
Exit condition: Test plan posted as issue comment. Do not write code before this exists.
Trigger: QA plan exists on the issue.
Invoke skills senior-frontend and/or senior-backend as appropriate for the implementation.
Use senior-frontend for UI components, pages, and client-side logic.
Use senior-backend for API routes, database schemas, and server-side logic.
Claude Code implements autonomously following these rules:
mainfeat/#[issue-number]-short-descriptionfeat: [description] (#[issue-number])Exit condition: Implementation complete, all files saved, ready for testing.
Trigger: Implementation complete.
Always use npm to run tests, regardless of what package manager the project uses:
npm test -- --coverage
Gate: coverage >= 80%. If below, return to Phase 5 with coverage report.
Run smoke tests on every feature listed in "Regression Scope" from the QA plan.
## Test Results - #[issue-number]
- Unit/Integration : X passing | X failing
- Coverage : X% (gate: 80%)
- E2E : X passing | X failing
- Regressions : None | [list]
Exit condition: All green, coverage >= 80%, zero regressions. On failure, return to Phase 5 with the report attached.
Owner: your existing Code Review skill.
Invoke skill code-review:code-review directly. Pass it the branch/diff context.
Wait for verdict before advancing.
Exit condition: Code Review skill returns Approved.
Trigger: Code review approved.
## What
[One paragraph describing the change]
## Why
Closes #[issue-number]
Part of #[parent-PRD-number]
## Checklist
- [x] Unit/Integration tests passing
- [x] E2E tests passing
- [x] Coverage >= 80%
- [x] No regressions detected
- [x] Code review approved
Resolved via #[PR-number]Exit condition: PR merged, issue closed, next phase identified.
This skill has detailed reference templates. Consult references/spec-templates.md
for structured templates for specs, plans, tasks, and checklists.
| Template | Purpose | When to use |
|---|---|---|
| Feature Specification | Full spec with scenarios, FRs, entities, success criteria | Phase 1 PRD creation |
| Implementation Plan | Phased plan with research, gates, MVP cut line | Phase 2 issue breakdown |
| Task Breakdown | T-NNN task list with parallel markers and user story links | Phase 2 / Phase 4 prep |
| Requirements Checklist | CHK-NNN quality gates for spec approval | Before Phase 2 begins |
| Constitution (optional) | Project-level architectural principles | Phase 0 for greenfield projects |
| Gate | Requirement | On failure |
|---|---|---|
| QA Plan exists | Before Phase 5 starts | Block — do not proceed |
| Unit coverage | >= 80% | Return to Phase 5 |
| E2E tests | All passing | Return to Phase 5 |
| Regressions | Zero detected | Return to Phase 5 |
| Code Review | Approved | Return to Phase 5 |
Never skip a gate. If the user requests skipping, state the risk clearly and require explicit confirmation before proceeding.