Skill Seekers v3.1.0
Create custom AI enhancement workflows
Workflows are YAML-defined, multi-stage AI enhancement pipelines:
my-workflow.yaml
├── name
├── description
├── variables (optional)
└── stages (1-10)
├── name
├── type (builtin/custom)
├── target (skill_md/references/)
├── prompt
└── uses_history (optional)name: my-custom
description: Custom enhancement workflow
stages:
- name: stage-one
type: builtin
target: skill_md
prompt: |
Improve the SKILL.md by adding...
- name: stage-two
type: custom
target: references
prompt: |
Enhance the references by...| Field | Required | Description |
|---|---|---|
name |
Yes | Workflow identifier |
description |
No | Human-readable description |
variables |
No | Configurable variables |
stages |
Yes | Array of stage definitions |
| Field | Required | Description |
|---|---|---|
name |
Yes | Stage identifier |
type |
Yes | builtin or custom |
target |
Yes | skill_md or references |
prompt |
Yes | AI prompt text |
uses_history |
No | Access previous stage results |
# performance.yaml
name: performance-focus
description: Analyze and document performance characteristics
variables:
target_latency: "100ms"
target_throughput: "1000 req/s"
stages:
- name: performance-overview
type: builtin
target: skill_md
prompt: |
Add a "Performance" section to SKILL.md covering:
- Benchmark results
- Performance characteristics
- Resource requirements
- name: optimization-guide
type: custom
target: references
uses_history: true
prompt: |
Create an optimization guide with:
- Target latency: {target_latency}
- Target throughput: {target_throughput}
- Common bottlenecks
- Optimization techniques# Add workflow
skill-seekers workflows add performance.yaml
# Use it
skill-seekers create <source> --enhance-workflow performance-focus
# With custom variables
skill-seekers create <source> \
--enhance-workflow performance-focus \
--var target_latency=50ms \
--var target_throughput=5000req/sUses built-in enhancement logic:
stages:
- name: structure-improvement
type: builtin
target: skill_md
prompt: "Improve document structure"Full custom prompt control:
stages:
- name: custom-analysis
type: custom
target: skill_md
prompt: |
Your detailed custom prompt here...
Can use {variables} and {history}Enhances the main SKILL.md file:
stages:
- name: improve-skill
target: skill_md
prompt: "Add comprehensive overview section"Enhances reference files:
stages:
- name: improve-refs
target: references
prompt: "Add cross-references between files"variables:
audience: "beginners"
focus_area: "security"
include_examples: truestages:
- name: customize
prompt: |
Tailor content for {audience}.
Focus on {focus_area}.
Include examples: {include_examples}skill-seekers create <source> \
--enhance-workflow my-workflow \
--var audience=experts \
--var focus_area=performanceAccess results from previous stages:
stages:
- name: analyze
type: custom
target: skill_md
prompt: "Analyze security features"
- name: document
type: custom
target: skill_md
uses_history: true
prompt: |
Based on previous analysis:
{previous_results}
Create documentation...name: comprehensive-security
description: Multi-stage security analysis
variables:
compliance_framework: "OWASP Top 10"
risk_level: "high"
stages:
- name: asset-inventory
type: builtin
target: skill_md
prompt: |
Document all security-sensitive components:
- Authentication mechanisms
- Authorization checks
- Data validation
- Encryption usage
- name: threat-analysis
type: custom
target: skill_md
uses_history: true
prompt: |
Based on assets: {all_history}
Analyze threats for {compliance_framework}:
- Threat vectors
- Attack scenarios
- Risk ratings ({risk_level} focus)
- name: mitigation-guide
type: custom
target: references
uses_history: true
prompt: |
Create mitigation guide:
- Countermeasures
- Best practices
- Code examples
- Testing strategiesskill-seekers workflows validate ./my-workflow.yaml| Error | Cause | Fix |
|---|---|---|
Missing 'stages' |
No stages array | Add stages: |
Invalid type |
Not builtin/custom | Check type field |
Undefined variable |
Used but not defined | Add to variables: |
# Start with 1-2 stages
name: simple
description: Simple workflow
stages:
- name: improve
type: builtin
target: skill_md
prompt: "Improve SKILL.md"# Good
stages:
- name: security-overview
- name: vulnerability-analysis
# Bad
stages:
- name: stage1
- name: step2variables:
# Target audience level: beginner, intermediate, expert
audience: "intermediate"
# Security focus area: owasp, pci, hipaa
compliance: "owasp"# Test with dry run
skill-seekers create <source> \
--enhance-workflow my-workflow \
--workflow-dry-run
# Then actually run
skill-seekers create <source> \
--enhance-workflow my-workflow# Use multiple workflows
skill-seekers create <source> \
--enhance-workflow security-focus \
--enhance-workflow performance-focus# Get workflow content
skill-seekers workflows show my-workflow > my-workflow.yaml# Add to version control
git add my-workflow.yaml
git commit -m "Add custom security workflow"
# Team members install
skill-seekers workflows add my-workflow.yamlSubmit to Skill Seekers community:
- GitHub Discussions
- Skill Seekers website
- Documentation contributions
- Workflows Guide - Using workflows
- MCP Reference - Workflows via MCP
- Enhancement Guide - Enhancement fundamentals