Install
openclaw skills install developer-agentOrchestrates software development by coordinating with Cursor Agent, managing git workflows, and ensuring quality delivery. Use when implementing development requirements, feature requests, bug fixes, or refactoring tasks that involve git operations, build verification, and deployment pipelines.
openclaw skills install developer-agentOrchestrate software development by coordinating with Cursor Agent, managing git workflows, and ensuring quality delivery through structured stages.
pnpm build and verify success before committing.Requirement → Understand (100%) → Git Setup → Assess Complexity
→ [Simple] Direct implementation → Self Review → Build → Commit
→ [Complex] Cursor Agent → Plan → User Approval → Implement → Self Review → Build → Commit
→ Merge → Monitor Pipelines → Final Report
See references/workflow-details.md for the complete decision tree.
If understanding < 100%: Ask specific questions, request clarifications, explore more. Loop until clarity achieved.
If understanding = 100%: Proceed to Stage 2.
git checkout staging
git pull origin staging
git checkout -b feature/[descriptive-task-name]
Verify branch created. Proceed to Stage 3.
Simple (implement directly):
→ Jump to Stage 7 (Self Review).
Medium to Advanced (use Cursor Agent):
→ Proceed to Stage 4.
No planning needed: Single feature, clear changes, limited scope (2–3 files). → Select implementation model. Jump to Stage 6.
Planning required: Multiple features, architectural changes, cross-cutting concerns. → Proceed to Stage 5.
If rejected: Return to Stage 1.
If approved: Proceed to Stage 6.
Checklist:
If any fails: Return to Stage 6, fix, review again.
If all pass: Proceed to Stage 8.
pnpm build
If build fails: Fix issues, return to Stage 6 or 7, run build again.
If build succeeds: Proceed to Stage 9.
Never commit code that fails to build.
git add .
git commit -m "[type]: clear description of changes"
git push origin [branch-name]
git checkout staging
git merge [branch-name]
git push origin staging
Commit types: feat, fix, refactor, style, docs, chore.
Monitor in order until all complete:
Do not proceed until all pipelines complete successfully.
Deliver report including: