Generate project-specific workflow commands (research, plan, implement, qa)
Generates customized workflow commands for research, planning, implementation, and QA tailored to your project.
/plugin marketplace add bradleygolden/claude-marketplace-elixir/plugin install bradleygolden-meta-plugins-meta@bradleygolden/claude-marketplace-elixirThis command invokes the workflow-generator skill to create a complete set of customized workflow commands for your project.
Generates four workflow commands tailored to your project:
/research - Document codebase and answer questions/plan - Create detailed implementation plans/implement - Execute plans with verification/qa - Validate implementation qualityInvoke the workflow-generator skill from the meta plugin:
Execute the workflow-generator@elixir skill, which will:
1. Discover project context (tech stack, build tools, structure)
2. Ask customization questions about your project
3. Generate customized workflow commands
4. Create supporting documentation
5. Provide usage instructions
The skill has full autonomy to ask questions using AskUserQuestion tool and generate all necessary files.
Invoke the skill:
Skill(command="workflow-generator")
.claude/commands/.claude/
├── commands/
│ ├── research.md # Customized research command
│ ├── plan.md # Customized planning command
│ ├── implement.md # Customized implementation command
│ ├── qa.md # Customized QA command
│ └── oneshot.md # Complete workflow in one command
└── [your-docs-location]/ # Documentation directories
├── research/
└── plans/
[WORKFLOWS.md location] # Complete workflow documentation
# (You'll choose where during generation)
Note: You'll be asked where to save WORKFLOWS.md during generation (options include .claude/, project root, docs/, etc.)
Once complete, you can use your new commands:
/research "your question"
/plan "feature description"
/implement "plan-name"
/qa
See your WORKFLOWS.md file (location chosen during generation) for full documentation.