Awesome-omni-skill extending-workflows
Create and extend workflow definitions using the workflow system architecture
git clone https://github.com/diegosouzapw/awesome-omni-skill
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/development/extending-workflows" ~/.claude/skills/diegosouzapw-awesome-omni-skill-extending-workflows && rm -rf "$T"
skills/development/extending-workflows/SKILL.mdExtend Workflow
Create and extend workflow definitions using the workflow system architecture
Create, extend, and manage workflow definitions using the Factory's workflow system architecture:
- Workflow Creation: Build new workflows from patterns
- Workflow Extension: Enhance existing workflows with new phases
- Integration Design: Configure MCP servers and skills for workflows
- Schema Validation: Ensure workflows conform to the schema
Artifacts Used
| Artifact | Path | Purpose |
|---|---|---|
| Workflow Template | | Markdown structure for workflows |
| Workflow Schema | | Validation rules |
| Workflow Entities | | Entity definitions |
| Workflow Patterns | | Common patterns |
| MCP Catalog | | Available tools |
| Skill Catalog | | Available skills |
Core Concepts
Workflow System Architecture
Workflows follow the entity model defined in
{directories.knowledge}/workflow-entities.json:
Workflow ├── Phases (ordered groups of steps) │ ├── Steps (atomic operations) │ │ ├── Skills (reusable capabilities) │ │ ├── MCP Servers (external tools) │ │ └── Knowledge (reference data) │ └── Decision Points (branching logic) ├── State Machine (lifecycle management) ├── Learning Hooks (continuous improvement) └── Outputs (artifacts produced)
Workflow Lifecycle States
| State | Description |
|---|---|
| Being designed, not executable |
| Ready for execution |
| Currently running |
| Awaiting input or resources |
| Successfully finished |
| Terminated with errors |
| Post-execution analysis |
Research Methods
Method 1: Pattern-Based Creation
Use when: Creating workflow from known patterns
Steps:
- Read existing patterns:
{directories.knowledge}/workflow-patterns.json - Select applicable pattern (bugfix, feature, code-review, etc.)
- Customize for specific use case
- Add project-specific skills and tools
Method 2: Research-Driven Creation
Use when: Creating workflow for new domain
Tools:
web_search, read_file
Step 1: web_search("{{domain}} workflow best practices 2026") Step 2: web_search("{{domain}} automation patterns") Step 3: Synthesize into workflow structure
Method 3: Existing Workflow Extension
Use when: Enhancing an existing workflow
Tools:
read_file, search_replace
Step 1: read_file("{directories.workflows}/{{existing-workflow}}.md") Step 2: Identify extension points Step 3: Add new phases/steps Step 4: Update MCP tools and skills
Creation Procedures
Procedure A: Create New Workflow
Trigger: "Create workflow for {{purpose}}", "Add workflow that {{does_what}}"
Steps:
-
Understand Requirements
→ What problem does the workflow solve? → What are the inputs and outputs? → What tools and skills are needed? → What are the success criteria? -
Check Existing Patterns
read_file("{directories.knowledge}/workflow-patterns.json") → Find similar patterns to use as base -
Read Workflow Schema
read_file("{directories.knowledge}/schemas/workflow-schema.json") → Understand required structure -
Read Entity Definitions
read_file("{directories.knowledge}/workflow-entities.json") → Understand entity relationships -
Identify Required MCP Servers
read_file("{directories.knowledge}/mcp-servers-catalog.json") → Select tools needed for workflow steps -
Identify Required Skills
read_file("{directories.knowledge}/skill-catalog.json") → Select skills for each step -
Design Workflow Structure
- Define phases (ordered groups)
- Define steps within phases
- Add decision points for branching
- Configure escalation paths
- Define learning hooks
-
Read Template
read_file("{directories.templates}/workflows/workflow.md.tmpl") → Get markdown structure -
Generate Workflow
write("{directories.workflows}/{{workflow-name}}.md", content) -
Validate Structure
- Check all required sections present
- Verify MCP tools exist in catalog
- Verify skills exist in catalog
- Ensure phases have clear outputs
Output:
{directories.workflows}/{workflow-name}.md
Procedure B: Create Workflow from Pattern
Trigger: "Create {{pattern_type}} workflow for my project"
Steps:
-
Load Pattern
read_file("{directories.knowledge}/workflow-patterns.json") → Extract pattern: bugfix, feature, code-review, etc. -
Customize for Project
- Replace placeholders with project values
- Add project-specific tools
- Configure project-specific skills
- Set project-specific outputs
-
Generate Workflow
write("{directories.workflows}/{{workflow-name}}.md", content)
Output:
{directories.workflows}/{workflow-name}.md (customized from pattern)
Procedure C: Extend Existing Workflow
Trigger: "Add {{capability}} to {{workflow_name}}", "Extend workflow with {{feature}}"
Steps:
-
Read Existing Workflow
read_file("{directories.workflows}/{{workflow-name}}.md") → Understand current structure -
Identify Extension Points
- Which phase to add steps to?
- Need new phase?
- Need new decision points?
-
Design Extension
- New steps with tools and skills
- New decision logic
- Updated outputs
-
Apply Extension
search_replace("{directories.workflows}/{{workflow-name}}.md", ...) -
Validate Extended Workflow
- Ensure flow is coherent
- Verify all tools exist
- Check for circular dependencies
Output: Updated
{directories.workflows}/{workflow-name}.md
Procedure D: Create Agent-Specific Workflow
Trigger: "Create workflow for {{agent_name}} agent"
Steps:
-
Understand Agent Purpose
read_file("{directories.agents}/{{agent-name}}.md") → Extract responsibilities and skills -
Map Agent Skills to Workflow Steps
- Each skill becomes potential workflow step
- Identify orchestration needs
- Define phase boundaries
-
Design Workflow
- Structure around agent's decision process
- Include escalation to human/other agents
- Add learning hooks for improvement
-
Generate Workflow
write("{directories.workflows}/{{agent-name}}-workflow.md", content)
Output:
{directories.workflows}/{agent-name}-workflow.md
Workflow Template Structure
# {{Workflow Name}} ## Overview {{Brief description of what this workflow accomplishes}} **Project:** {{PROJECT_NAME}} **Version:** {{VERSION}} **Created:** {{DATE}} ## Trigger Conditions {{When this workflow is activated}} ## Phases ### Phase 1: {{Phase Name}} **Description:** {{What this phase accomplishes}} **Entry Criteria:** {{When to enter this phase}} **Exit Criteria:** {{When phase is complete}} #### Step 1.1: {{Step Name}} **Description:** {{What this step does}} **Actions:** - {{action 1}} - {{action 2}} **MCP Tools:** - `{{server}}-{{tool}}`: {{purpose}} **Skills:** - `{{skill-name}}`: {{purpose}} **Knowledge:** - `{{knowledge-file}}`: {{purpose}} **Outputs:** - {{output 1}} - {{output 2}} **Is Mandatory:** Yes/No --- ## Decision Points ### Decision: {{Decision Name}} **Condition:** {{What triggers this decision}} **Options:** | Condition | Next Phase | Rationale | |-----------|------------|-----------| | {{condition}} | {{phase}} | {{why}} | --- ## Escalation Paths | Trigger | Action | Escalate To | |---------|--------|-------------| | {{trigger}} | {{action}} | {{target}} | --- ## Learning Hooks | Hook Point | Capture | Use For | |------------|---------|---------| | {{when}} | {{what data}} | {{improvement}} | --- ## Output Artifacts | Artifact | Location | Purpose | |----------|----------|---------| | {{name}} | {{path}} | {{purpose}} | --- ## Fallback Procedures | Condition | Action | |-----------|--------| | {{issue}} | {{resolution}} | --- ## Related Artifacts - **Agent**: {{agent if any}} - **Skills**: {{list of skills}} - **Knowledge**: {{list of knowledge files}}
Chat Examples
Example 1: Create Debugging Workflow
User: Create a workflow for debugging pipeline failures Agent: I'll create a comprehensive debugging workflow. [read_file("{directories.knowledge}/workflow-patterns.json")] → Check existing patterns [read_file("{directories.knowledge}/mcp-servers-catalog.json")] → Available tools [read_file("{directories.knowledge}/skill-catalog.json")] → Available skills [Designs workflow structure] [write("{directories.workflows}/operations/debug-pipeline.md", ...)] Created: {directories.workflows}/operations/debug-pipeline.md Phases: 1. Error Detection - Parse logs, identify failure 2. Root Cause Analysis - Trace error origins 3. Resolution Strategy - Plan fix approach 4. Implementation - Apply fixes 5. Verification - Confirm resolution 6. Learning - Capture lessons learned MCP Tools: github, sentry (if available) Skills: pipeline-error-fix, tdd Would you like me to create an agent to execute this workflow?
Example 2: Extend Workflow with Learning
User: Add learning hooks to the TDD workflow Agent: I'll extend the TDD workflow with learning capabilities. [read_file("{directories.workflows}/tdd-workflow.md")] [read_file("{directories.knowledge}/workflow-entities.json")] → Learning hook structure [Designs learning extensions] [search_replace("{directories.workflows}/tdd-workflow.md", ...)] Updated: {directories.workflows}/tdd-workflow.md Added Learning Hooks: - After Phase 5 (Refactor): Capture refactoring patterns - After Phase 7 (Integration): Capture test effectiveness metrics - On failure: Capture failure patterns for future prevention Would you like me to create a knowledge file to store learned patterns?
Example 3: Create from Pattern
User: Create a bugfix workflow for my SAP project Agent: I'll create a bugfix workflow customized for SAP. [read_file("{directories.knowledge}/workflow-patterns.json")] → bugfix pattern [read_file("{directories.knowledge}/sap-grounding-patterns.json")] → SAP-specific [Customizes pattern for SAP] [write("{directories.workflows}/sap-bugfix-workflow.md", ...)] Created: {directories.workflows}/sap-bugfix-workflow.md Customizations for SAP: - Phase 1 uses SAP documentation MCP - Grounding phase checks SAP data models - Implementation follows RAP/ABAP patterns - Testing uses SAP Unit framework Tools: atlassian, SAP-documentation Skills: grounding, bugfix-workflow, sap-development
Summary: What Gets Created
| Extension Type | Output Location | Format |
|---|---|---|
| Workflow | | Markdown |
| Agent Workflow | | Markdown |
| Pattern-Based | | Markdown |
Post-Extension Automation (MANDATORY)
After creating or extending ANY workflow:
Step 1: Update Manifest (if applicable)
If workflow adds new knowledge:
read_file("{directories.knowledge}/manifest.json") → Update if new knowledge file created
Step 2: Update Documentation
read_file("{directories.docs}/reference/WORKFLOW_PATTERNS.md") → Add new workflow to catalog if reusable pattern
Step 3: Update Changelog
read_file("CHANGELOG.md") → Add entry for new/extended workflow
Step 4: Validate Workflow
- Check all referenced MCP tools exist
- Check all referenced skills exist
- Check all referenced knowledge files exist
- Validate phase/step structure
Step 5: Git Operations (Ask User First)
ALWAYS ask before git operations:
⚠️ Ready to commit workflow changes: Created/Modified: [list files] Proposed commit: feat(workflow): {{description}} Proceed? (yes/no/commit only)
Best Practices
- Design workflows with clear entry and exit conditions: Each phase should have explicit criteria for when it starts and when it's considered complete
- Include error handling and rollback procedures: Every workflow should define what happens when steps fail, including how to undo partial changes
- Document workflow dependencies and requirements: Clearly list all MCP servers, skills, and knowledge files needed before execution begins
- Test workflows with representative data before deployment: Validate workflows with sample inputs that match real-world scenarios to catch issues early
- Design for observability: Include learning hooks and decision points that capture metrics and outcomes for continuous improvement
- Keep workflows focused and composable: Each workflow should solve one specific problem; combine multiple workflows for complex processes rather than creating monolithic workflows
Validation Checklist
Workflows
- Has Overview section
- Has Trigger Conditions
- Has at least one Phase
- Each Phase has Steps
- Steps reference valid MCP tools
- Steps reference valid Skills
- Has Fallback Procedures
- Has Output Artifacts
- Changelog entry added
Error Handling
| Issue | Resolution |
|---|---|
| Unknown MCP tool | Check catalog, suggest alternatives |
| Unknown skill | Check catalog, offer to create skill |
| Circular phases | Restructure workflow |
| Missing outputs | Add output definitions |
| No trigger conditions | Add activation triggers |
Integration with Onboarding
When onboarding a project:
- Analyze project type and requirements
- Select applicable workflow patterns
- Generate customized workflows for project
- Include in generated
structure.cursor/
Integration with Generation
When generating a project:
- Blueprint specifies workflow patterns
- Generator creates
directory{directories.workflows}/ - Customized workflows from patterns
- Workflows reference project-specific tools/skills
Related Artifacts
- Agent:
{directories.agents}/workflow-architect.md - Templates:
{directories.templates}/workflows/*.tmpl - Schema:
{directories.knowledge}/schemas/workflow-schema.json - Entities:
{directories.knowledge}/workflow-entities.json - Patterns:
{directories.knowledge}/workflow-patterns.json - Documentation:
{directories.docs}/WORKFLOW_AUTHORING.md
When to Use
This skill should be used when strict adherence to the defined process is required.
Prerequisites
- Basic understanding of the agent factory context.
- Access to the necessary tools and resources.
Process
- Review the task requirements.
- Apply the skill's methodology.
- Validate the output against the defined criteria.