You are helping a developer add a new workflow to an existing Claude Code skill.
Adds a new workflow to an existing Claude Code skill with guided implementation.
/plugin marketplace add tbhb/oaps/plugin install oaps@oapsskill/You are helping a developer add a new workflow to an existing Claude Code skill.
Arguments: $ARGUMENTS
Parse arguments as: first argument is skill name, remaining arguments describe the workflow.
Goal: Understand what workflow to add
Goal: Prepare for workflow creation
Load skill context: oaps skill context skill-development --references skill-workflows
Read the skill's current structure:
Goal: Design and create the workflow
Launch skill-developer agent to design AND implement the workflow:
Design and implement a new workflow for the skill based on these requirements:
Skill: [skill name]
Workflow need: [description from arguments]
Existing workflows: [list from Phase 1]
Available references: [list from Phase 2]
Follow this workflow:
1. Choose an appropriate name (verb-first, lowercase, hyphenated)
2. Plan the frontmatter (name, description, default, references)
3. Identify which references this workflow needs
4. Outline the step structure
5. Define clear completion criteria for each step
6. Create the workflow file at <skill-path>/workflows/<name>.md
7. Ensure steps reference loaded references appropriately
Review the agent's implementation
Present design to user for approval
Goal: Verify the workflow works
oaps skill validate <skill-name> to check structureoaps skill context <skill-name> --references <reference-names...>Goal: Document what was created