feat(dev-workflow): add AI-driven spec-driven development workflow plugin - #2
Open
zccyman wants to merge 1 commit into
Open
feat(dev-workflow): add AI-driven spec-driven development workflow plugin#2zccyman wants to merge 1 commit into
zccyman wants to merge 1 commit into
Conversation
…ugin Add dev-workflow plugin implementing a 10-step spec-driven development workflow with multi-agent orchestration, inspired by Claw Code harness patterns. Features: - 3 modes: quick, standard, full - Spec-driven workflow: analysis → requirement → brainstorm → spec → dev → review → test → docs → delivery - Ship/Show/Ask task categorization with conventional commits - QA gate with 10 quality checks (lint, format, tests, coverage, typecheck, etc.) - 21 code quality rules enforcement - Context persistence for cross-session resumption - 5 tools: dev_workflow_start, workflow_status, task_execute, spec_view, qa_gate_check - Channel plugin with aliases: dwf, devflow Co-authored-by: OpenClaw Maintainers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
dev-workflowplugin implementing a 10-step spec-driven development workflow with multi-agent orchestrationWhat's included
5 Tools
dev_workflow_start- Start an AI-driven development workflowworkflow_status- Check current workflow statustask_execute- Execute a specific task by IDspec_view- View workflow specificationqa_gate_check- Run QA gate quality checksWorkflow Steps
Files
extensions/dev-workflow/- 30 files addedsrc/index.ts- Plugin entry pointsrc/engine/- DevWorkflowEngine orchestrating the 10-step workflowsrc/tools/- 5 tool implementationssrc/channel/- Channel plugin definition (aliases: dwf, devflow)src/hooks/- Hook registrationssrc/agents/- Agent configurationssrc/types.ts- Domain types, feature flags, 21 code quality rulestests/- 8 test files