skill-creator-multi
Guide for creating multi-phase skills with orchestrated sequential execution. Use when user wants to create a skill that runs multiple steps in sequence (like gap-finder), needs a start-* orchestrator pattern, or asks about multi-step/multi-phase skill architecture.
What this skill does
# Multi-Phase Skill Creator
Create skills that execute multiple phases in sequence, where each phase builds on the previous phase's output.
## When to Use Multi-Phase Skills
Multi-phase skills are appropriate when:
- A task naturally decomposes into distinct sequential stages
- Each stage transforms or filters the previous stage's output
- Separating concerns improves reliability and debuggability
- The same pipeline applies to different inputs
Examples: gap analysis, code review pipelines, document processing chains.
## Multi-Phase Skill Structure
```
skill-name/
├── start-skill-name/SKILL.md # Orchestrator (invokes phases in order)
├── skill-name-1/SKILL.md # Phase 1 (raw collection/identification)
├── skill-name-2/SKILL.md # Phase 2 (analysis/filtering)
└── skill-name-3/SKILL.md # Phase 3 (refinement/final output)
```
### Orchestrator Pattern (start-*)
The `start-*` skill defines the sequence and ensures all phases run without stopping:
```yaml
---
name: start-skill-name
description: [What it does]. Use when user explicitly asks start-skill-name.
---
```
Body lists procedure steps and includes:
```
**IMPORTANT:** Do NOT stop between steps. Run all steps skill-name-* in a single turn.
```
### Phase Pattern (skill-name-N)
Each phase skill:
- Has description: `Triggered by start-skill-name.`
- Defines specific task, rules, output format, anti-patterns
- References previous step's output in conversation context
## Creation Process
### Step 1: Design the Pipeline
Define phases before creating files:
1. What does each phase do?
2. What is the input/output format for each phase?
3. What rules constrain each phase?
### Step 2: Initialize with Script
```bash
scripts/init_multi_skill.py <skill-name> --path <output-dir> [--phases N]
```
Examples:
```bash
# Default 3 phases
scripts/init_multi_skill.py code-reviewer --path skills/public
# Custom 4 phases
scripts/init_multi_skill.py doc-analyzer --path skills/private --phases 4
```
### Step 3: Edit Each Phase
For each generated SKILL.md, replace TODOs with:
1. **Phase description**: What this phase accomplishes
2. **Rules**: Numbered constraints (keep to 3-5)
3. **Output format**: Exact structure with example
4. **Anti-patterns**: What to avoid
### Step 4: Test the Pipeline
Invoke `start-skill-name` and verify:
- All phases execute without stopping
- Output formats match specifications
- Each phase correctly uses previous output
## Example: Gap Finder Structure
```
gap-finder/
├── start-gap-finder/SKILL.md
│ └── Procedure: invoke gap-finder-1, then -2, then -3
├── gap-finder-1/SKILL.md
│ └── Task: Generate raw list of potential gaps (max 20)
├── gap-finder-2/SKILL.md
│ └── Task: Mark each gap CORE or NOT CORE with verdict table
└── gap-finder-3/SKILL.md
└── Task: Output only CORE items with clusters summary
```
Each phase has strict output format, enabling reliable handoff between phases.
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.