superpowers-spec 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/README.md +141 -0
- package/agents/code-reviewer.md +48 -0
- package/bin/openspec.js +3 -0
- package/bin/superpowers.js +3 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +482 -0
- package/dist/commands/change.d.ts +35 -0
- package/dist/commands/change.js +277 -0
- package/dist/commands/completion.d.ts +72 -0
- package/dist/commands/completion.js +257 -0
- package/dist/commands/config.d.ts +36 -0
- package/dist/commands/config.js +552 -0
- package/dist/commands/feedback.d.ts +9 -0
- package/dist/commands/feedback.js +183 -0
- package/dist/commands/schema.d.ts +6 -0
- package/dist/commands/schema.js +869 -0
- package/dist/commands/show.d.ts +14 -0
- package/dist/commands/show.js +132 -0
- package/dist/commands/spec.d.ts +15 -0
- package/dist/commands/spec.js +225 -0
- package/dist/commands/validate.d.ts +24 -0
- package/dist/commands/validate.js +294 -0
- package/dist/commands/workflow/index.d.ts +17 -0
- package/dist/commands/workflow/index.js +12 -0
- package/dist/commands/workflow/instructions.d.ts +29 -0
- package/dist/commands/workflow/instructions.js +381 -0
- package/dist/commands/workflow/new-change.d.ts +11 -0
- package/dist/commands/workflow/new-change.js +44 -0
- package/dist/commands/workflow/schemas.d.ts +10 -0
- package/dist/commands/workflow/schemas.js +34 -0
- package/dist/commands/workflow/shared.d.ts +57 -0
- package/dist/commands/workflow/shared.js +116 -0
- package/dist/commands/workflow/status.d.ts +14 -0
- package/dist/commands/workflow/status.js +75 -0
- package/dist/commands/workflow/templates.d.ts +16 -0
- package/dist/commands/workflow/templates.js +68 -0
- package/dist/core/archive.d.ts +11 -0
- package/dist/core/archive.js +318 -0
- package/dist/core/artifact-graph/graph.d.ts +56 -0
- package/dist/core/artifact-graph/graph.js +141 -0
- package/dist/core/artifact-graph/index.d.ts +7 -0
- package/dist/core/artifact-graph/index.js +13 -0
- package/dist/core/artifact-graph/instruction-loader.d.ts +143 -0
- package/dist/core/artifact-graph/instruction-loader.js +214 -0
- package/dist/core/artifact-graph/resolver.d.ts +81 -0
- package/dist/core/artifact-graph/resolver.js +257 -0
- package/dist/core/artifact-graph/schema.d.ts +13 -0
- package/dist/core/artifact-graph/schema.js +108 -0
- package/dist/core/artifact-graph/state.d.ts +12 -0
- package/dist/core/artifact-graph/state.js +54 -0
- package/dist/core/artifact-graph/types.d.ts +45 -0
- package/dist/core/artifact-graph/types.js +43 -0
- package/dist/core/available-tools.d.ts +16 -0
- package/dist/core/available-tools.js +30 -0
- package/dist/core/command-generation/adapters/amazon-q.d.ts +13 -0
- package/dist/core/command-generation/adapters/amazon-q.js +26 -0
- package/dist/core/command-generation/adapters/antigravity.d.ts +13 -0
- package/dist/core/command-generation/adapters/antigravity.js +26 -0
- package/dist/core/command-generation/adapters/auggie.d.ts +13 -0
- package/dist/core/command-generation/adapters/auggie.js +27 -0
- package/dist/core/command-generation/adapters/claude.d.ts +13 -0
- package/dist/core/command-generation/adapters/claude.js +50 -0
- package/dist/core/command-generation/adapters/cline.d.ts +14 -0
- package/dist/core/command-generation/adapters/cline.js +27 -0
- package/dist/core/command-generation/adapters/codebuddy.d.ts +13 -0
- package/dist/core/command-generation/adapters/codebuddy.js +28 -0
- package/dist/core/command-generation/adapters/codex.d.ts +16 -0
- package/dist/core/command-generation/adapters/codex.js +39 -0
- package/dist/core/command-generation/adapters/continue.d.ts +13 -0
- package/dist/core/command-generation/adapters/continue.js +28 -0
- package/dist/core/command-generation/adapters/costrict.d.ts +13 -0
- package/dist/core/command-generation/adapters/costrict.js +27 -0
- package/dist/core/command-generation/adapters/crush.d.ts +13 -0
- package/dist/core/command-generation/adapters/crush.js +30 -0
- package/dist/core/command-generation/adapters/cursor.d.ts +14 -0
- package/dist/core/command-generation/adapters/cursor.js +44 -0
- package/dist/core/command-generation/adapters/factory.d.ts +13 -0
- package/dist/core/command-generation/adapters/factory.js +27 -0
- package/dist/core/command-generation/adapters/gemini.d.ts +13 -0
- package/dist/core/command-generation/adapters/gemini.js +26 -0
- package/dist/core/command-generation/adapters/github-copilot.d.ts +13 -0
- package/dist/core/command-generation/adapters/github-copilot.js +26 -0
- package/dist/core/command-generation/adapters/iflow.d.ts +13 -0
- package/dist/core/command-generation/adapters/iflow.js +29 -0
- package/dist/core/command-generation/adapters/index.d.ts +29 -0
- package/dist/core/command-generation/adapters/index.js +29 -0
- package/dist/core/command-generation/adapters/kilocode.d.ts +14 -0
- package/dist/core/command-generation/adapters/kilocode.js +23 -0
- package/dist/core/command-generation/adapters/kiro.d.ts +13 -0
- package/dist/core/command-generation/adapters/kiro.js +26 -0
- package/dist/core/command-generation/adapters/opencode.d.ts +13 -0
- package/dist/core/command-generation/adapters/opencode.js +29 -0
- package/dist/core/command-generation/adapters/pi.d.ts +14 -0
- package/dist/core/command-generation/adapters/pi.js +41 -0
- package/dist/core/command-generation/adapters/qoder.d.ts +13 -0
- package/dist/core/command-generation/adapters/qoder.js +30 -0
- package/dist/core/command-generation/adapters/qwen.d.ts +13 -0
- package/dist/core/command-generation/adapters/qwen.js +26 -0
- package/dist/core/command-generation/adapters/roocode.d.ts +14 -0
- package/dist/core/command-generation/adapters/roocode.js +27 -0
- package/dist/core/command-generation/adapters/windsurf.d.ts +14 -0
- package/dist/core/command-generation/adapters/windsurf.js +51 -0
- package/dist/core/command-generation/generator.d.ts +21 -0
- package/dist/core/command-generation/generator.js +27 -0
- package/dist/core/command-generation/index.d.ts +22 -0
- package/dist/core/command-generation/index.js +24 -0
- package/dist/core/command-generation/registry.d.ts +36 -0
- package/dist/core/command-generation/registry.js +92 -0
- package/dist/core/command-generation/types.d.ts +56 -0
- package/dist/core/command-generation/types.js +8 -0
- package/dist/core/completions/command-registry.d.ts +7 -0
- package/dist/core/completions/command-registry.js +461 -0
- package/dist/core/completions/completion-provider.d.ts +60 -0
- package/dist/core/completions/completion-provider.js +102 -0
- package/dist/core/completions/factory.d.ts +64 -0
- package/dist/core/completions/factory.js +75 -0
- package/dist/core/completions/generators/bash-generator.d.ts +32 -0
- package/dist/core/completions/generators/bash-generator.js +174 -0
- package/dist/core/completions/generators/fish-generator.d.ts +32 -0
- package/dist/core/completions/generators/fish-generator.js +157 -0
- package/dist/core/completions/generators/powershell-generator.d.ts +33 -0
- package/dist/core/completions/generators/powershell-generator.js +207 -0
- package/dist/core/completions/generators/zsh-generator.d.ts +44 -0
- package/dist/core/completions/generators/zsh-generator.js +250 -0
- package/dist/core/completions/installers/bash-installer.d.ts +87 -0
- package/dist/core/completions/installers/bash-installer.js +318 -0
- package/dist/core/completions/installers/fish-installer.d.ts +43 -0
- package/dist/core/completions/installers/fish-installer.js +143 -0
- package/dist/core/completions/installers/powershell-installer.d.ts +88 -0
- package/dist/core/completions/installers/powershell-installer.js +327 -0
- package/dist/core/completions/installers/zsh-installer.d.ts +125 -0
- package/dist/core/completions/installers/zsh-installer.js +449 -0
- package/dist/core/completions/templates/bash-templates.d.ts +6 -0
- package/dist/core/completions/templates/bash-templates.js +24 -0
- package/dist/core/completions/templates/fish-templates.d.ts +7 -0
- package/dist/core/completions/templates/fish-templates.js +39 -0
- package/dist/core/completions/templates/powershell-templates.d.ts +6 -0
- package/dist/core/completions/templates/powershell-templates.js +25 -0
- package/dist/core/completions/templates/zsh-templates.d.ts +6 -0
- package/dist/core/completions/templates/zsh-templates.js +36 -0
- package/dist/core/completions/types.d.ts +79 -0
- package/dist/core/completions/types.js +2 -0
- package/dist/core/config-prompts.d.ts +9 -0
- package/dist/core/config-prompts.js +34 -0
- package/dist/core/config-schema.d.ts +86 -0
- package/dist/core/config-schema.js +213 -0
- package/dist/core/config.d.ts +17 -0
- package/dist/core/config.js +33 -0
- package/dist/core/converters/json-converter.d.ts +6 -0
- package/dist/core/converters/json-converter.js +51 -0
- package/dist/core/global-config.d.ts +44 -0
- package/dist/core/global-config.js +125 -0
- package/dist/core/index.d.ts +2 -0
- package/dist/core/index.js +3 -0
- package/dist/core/init.d.ts +39 -0
- package/dist/core/init.js +634 -0
- package/dist/core/legacy-cleanup.d.ts +162 -0
- package/dist/core/legacy-cleanup.js +512 -0
- package/dist/core/list.d.ts +9 -0
- package/dist/core/list.js +171 -0
- package/dist/core/migration.d.ts +23 -0
- package/dist/core/migration.js +108 -0
- package/dist/core/parsers/change-parser.d.ts +13 -0
- package/dist/core/parsers/change-parser.js +193 -0
- package/dist/core/parsers/markdown-parser.d.ts +22 -0
- package/dist/core/parsers/markdown-parser.js +187 -0
- package/dist/core/parsers/requirement-blocks.d.ts +37 -0
- package/dist/core/parsers/requirement-blocks.js +201 -0
- package/dist/core/profile-sync-drift.d.ts +38 -0
- package/dist/core/profile-sync-drift.js +200 -0
- package/dist/core/profiles.d.ts +26 -0
- package/dist/core/profiles.js +40 -0
- package/dist/core/project-config.d.ts +64 -0
- package/dist/core/project-config.js +223 -0
- package/dist/core/schemas/base.schema.d.ts +13 -0
- package/dist/core/schemas/base.schema.js +13 -0
- package/dist/core/schemas/change.schema.d.ts +73 -0
- package/dist/core/schemas/change.schema.js +31 -0
- package/dist/core/schemas/index.d.ts +4 -0
- package/dist/core/schemas/index.js +4 -0
- package/dist/core/schemas/spec.schema.d.ts +18 -0
- package/dist/core/schemas/spec.schema.js +15 -0
- package/dist/core/shared/index.d.ts +8 -0
- package/dist/core/shared/index.js +8 -0
- package/dist/core/shared/skill-generation.d.ts +49 -0
- package/dist/core/shared/skill-generation.js +96 -0
- package/dist/core/shared/tool-detection.d.ts +71 -0
- package/dist/core/shared/tool-detection.js +158 -0
- package/dist/core/specs-apply.d.ts +73 -0
- package/dist/core/specs-apply.js +384 -0
- package/dist/core/styles/palette.d.ts +7 -0
- package/dist/core/styles/palette.js +8 -0
- package/dist/core/templates/index.d.ts +8 -0
- package/dist/core/templates/index.js +9 -0
- package/dist/core/templates/skill-templates.d.ts +19 -0
- package/dist/core/templates/skill-templates.js +18 -0
- package/dist/core/templates/types.d.ts +19 -0
- package/dist/core/templates/types.js +5 -0
- package/dist/core/templates/workflows/apply-change.d.ts +10 -0
- package/dist/core/templates/workflows/apply-change.js +313 -0
- package/dist/core/templates/workflows/archive-change.d.ts +10 -0
- package/dist/core/templates/workflows/archive-change.js +271 -0
- package/dist/core/templates/workflows/bulk-archive-change.d.ts +10 -0
- package/dist/core/templates/workflows/bulk-archive-change.js +488 -0
- package/dist/core/templates/workflows/continue-change.d.ts +10 -0
- package/dist/core/templates/workflows/continue-change.js +232 -0
- package/dist/core/templates/workflows/explore.d.ts +10 -0
- package/dist/core/templates/workflows/explore.js +469 -0
- package/dist/core/templates/workflows/feedback.d.ts +9 -0
- package/dist/core/templates/workflows/feedback.js +108 -0
- package/dist/core/templates/workflows/ff-change.d.ts +10 -0
- package/dist/core/templates/workflows/ff-change.js +198 -0
- package/dist/core/templates/workflows/new-change.d.ts +10 -0
- package/dist/core/templates/workflows/new-change.js +143 -0
- package/dist/core/templates/workflows/onboard.d.ts +10 -0
- package/dist/core/templates/workflows/onboard.js +565 -0
- package/dist/core/templates/workflows/propose.d.ts +10 -0
- package/dist/core/templates/workflows/propose.js +223 -0
- package/dist/core/templates/workflows/sync-specs.d.ts +10 -0
- package/dist/core/templates/workflows/sync-specs.js +272 -0
- package/dist/core/templates/workflows/verify-change.d.ts +10 -0
- package/dist/core/templates/workflows/verify-change.js +332 -0
- package/dist/core/update.d.ts +77 -0
- package/dist/core/update.js +537 -0
- package/dist/core/validation/constants.d.ts +34 -0
- package/dist/core/validation/constants.js +40 -0
- package/dist/core/validation/types.d.ts +18 -0
- package/dist/core/validation/types.js +2 -0
- package/dist/core/validation/validator.d.ts +33 -0
- package/dist/core/validation/validator.js +409 -0
- package/dist/core/view.d.ts +8 -0
- package/dist/core/view.js +168 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/prompts/searchable-multi-select.d.ts +28 -0
- package/dist/prompts/searchable-multi-select.js +159 -0
- package/dist/telemetry/config.d.ts +32 -0
- package/dist/telemetry/config.js +68 -0
- package/dist/telemetry/index.d.ts +31 -0
- package/dist/telemetry/index.js +180 -0
- package/dist/ui/ascii-patterns.d.ts +16 -0
- package/dist/ui/ascii-patterns.js +133 -0
- package/dist/ui/welcome-screen.d.ts +10 -0
- package/dist/ui/welcome-screen.js +146 -0
- package/dist/utils/change-metadata.d.ts +51 -0
- package/dist/utils/change-metadata.js +147 -0
- package/dist/utils/change-utils.d.ts +62 -0
- package/dist/utils/change-utils.js +121 -0
- package/dist/utils/command-references.d.ts +18 -0
- package/dist/utils/command-references.js +20 -0
- package/dist/utils/file-system.d.ts +36 -0
- package/dist/utils/file-system.js +281 -0
- package/dist/utils/index.d.ts +6 -0
- package/dist/utils/index.js +9 -0
- package/dist/utils/interactive.d.ts +18 -0
- package/dist/utils/interactive.js +21 -0
- package/dist/utils/item-discovery.d.ts +4 -0
- package/dist/utils/item-discovery.js +72 -0
- package/dist/utils/match.d.ts +3 -0
- package/dist/utils/match.js +22 -0
- package/dist/utils/shell-detection.d.ts +20 -0
- package/dist/utils/shell-detection.js +41 -0
- package/dist/utils/task-progress.d.ts +8 -0
- package/dist/utils/task-progress.js +36 -0
- package/extension-manifest.json +9 -0
- package/hooks/hooks.json +16 -0
- package/hooks/run-hook.cmd +46 -0
- package/hooks/session-start +51 -0
- package/package.json +87 -0
- package/schemas/spec-driven/schema.yaml +153 -0
- package/schemas/spec-driven/templates/design.md +19 -0
- package/schemas/spec-driven/templates/proposal.md +23 -0
- package/schemas/spec-driven/templates/spec.md +8 -0
- package/schemas/spec-driven/templates/tasks.md +9 -0
- package/scripts/postinstall.js +147 -0
- package/skills/dispatching-parallel-agents/SKILL.md +113 -0
- package/skills/finishing-a-development-branch/SKILL.md +200 -0
- package/skills/receiving-code-review/SKILL.md +213 -0
- package/skills/requesting-code-review/SKILL.md +73 -0
- package/skills/requesting-code-review/code-reviewer.md +146 -0
- package/skills/subagent-driven-development/SKILL.md +98 -0
- package/skills/subagent-driven-development/code-quality-reviewer-prompt.md +20 -0
- package/skills/subagent-driven-development/implementer-prompt.md +78 -0
- package/skills/systematic-debugging/CREATION-LOG.md +119 -0
- package/skills/systematic-debugging/SKILL.md +296 -0
- package/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
- package/skills/systematic-debugging/condition-based-waiting.md +115 -0
- package/skills/systematic-debugging/defense-in-depth.md +122 -0
- package/skills/systematic-debugging/find-polluter.sh +63 -0
- package/skills/systematic-debugging/root-cause-tracing.md +169 -0
- package/skills/systematic-debugging/test-academic.md +14 -0
- package/skills/systematic-debugging/test-pressure-1.md +58 -0
- package/skills/systematic-debugging/test-pressure-2.md +68 -0
- package/skills/systematic-debugging/test-pressure-3.md +69 -0
- package/skills/test-driven-development/SKILL.md +356 -0
- package/skills/test-driven-development/testing-anti-patterns.md +299 -0
- package/skills/using-git-worktrees/SKILL.md +212 -0
- package/skills/using-superpowers/SKILL.md +95 -0
- package/skills/verification-before-completion/SKILL.md +126 -0
- package/skills/writing-skills/SKILL.md +148 -0
|
@@ -0,0 +1,469 @@
|
|
|
1
|
+
export function getExploreSkillTemplate() {
|
|
2
|
+
return {
|
|
3
|
+
name: 'superpowers-explore',
|
|
4
|
+
description: 'Enter explore mode - a thinking partner for exploring ideas, investigating problems, and clarifying requirements. Use when the user wants to think through something before or during a change.',
|
|
5
|
+
instructions: `Enter explore mode. Think deeply. Visualize freely. Follow the conversation wherever it goes.
|
|
6
|
+
|
|
7
|
+
**IMPORTANT: Explore mode is for thinking, not implementing.** You may read files, search code, and investigate the codebase, but you must NEVER write code or implement features. If the user asks you to implement something, remind them to exit explore mode first and create a change proposal. You MAY create Superpowers artifacts (proposals, designs, specs) if the user asks—that's capturing thinking, not implementing.
|
|
8
|
+
|
|
9
|
+
**This is a stance, not a workflow.** There are no fixed steps, no required sequence, no mandatory outputs. You're a thinking partner helping the user explore.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## The Stance
|
|
14
|
+
|
|
15
|
+
- **Curious, not prescriptive** - Ask questions that emerge naturally, don't follow a script
|
|
16
|
+
- **Open threads, not interrogations** - Surface multiple interesting directions and let the user follow what resonates. Don't funnel them through a single path of questions.
|
|
17
|
+
- **Visual** - Use ASCII diagrams liberally when they'd help clarify thinking
|
|
18
|
+
- **Adaptive** - Follow interesting threads, pivot when new information emerges
|
|
19
|
+
- **Patient** - Don't rush to conclusions, let the shape of the problem emerge
|
|
20
|
+
- **Grounded** - Explore the actual codebase when relevant, don't just theorize
|
|
21
|
+
- **One question at a time** - When exploring for creative work (features, components, functionality), prefer asking **one question at a time** and using **multiple choice questions when possible**
|
|
22
|
+
- **YAGNI ruthlessly** - Apply YAGNI ruthlessly — remove unnecessary features from all designs
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## What You Might Do
|
|
27
|
+
|
|
28
|
+
Depending on what the user brings, you might:
|
|
29
|
+
|
|
30
|
+
**Explore the problem space**
|
|
31
|
+
- Ask clarifying questions that emerge from what they said
|
|
32
|
+
- Challenge assumptions
|
|
33
|
+
- Reframe the problem
|
|
34
|
+
- Find analogies
|
|
35
|
+
|
|
36
|
+
**Investigate the codebase**
|
|
37
|
+
- Map existing architecture relevant to the discussion
|
|
38
|
+
- Find integration points
|
|
39
|
+
- Identify patterns already in use
|
|
40
|
+
- Surface hidden complexity
|
|
41
|
+
|
|
42
|
+
**Compare options**
|
|
43
|
+
- Brainstorm multiple approaches
|
|
44
|
+
- Build comparison tables
|
|
45
|
+
- Sketch tradeoffs
|
|
46
|
+
- Recommend a path (if asked)
|
|
47
|
+
|
|
48
|
+
**Visualize**
|
|
49
|
+
\`\`\`
|
|
50
|
+
┌─────────────────────────────────────────┐
|
|
51
|
+
│ Use ASCII diagrams liberally │
|
|
52
|
+
├─────────────────────────────────────────┤
|
|
53
|
+
│ │
|
|
54
|
+
│ ┌────────┐ ┌────────┐ │
|
|
55
|
+
│ │ State │────────▶│ State │ │
|
|
56
|
+
│ │ A │ │ B │ │
|
|
57
|
+
│ └────────┘ └────────┘ │
|
|
58
|
+
│ │
|
|
59
|
+
│ System diagrams, state machines, │
|
|
60
|
+
│ data flows, architecture sketches, │
|
|
61
|
+
│ dependency graphs, comparison tables │
|
|
62
|
+
│ │
|
|
63
|
+
└─────────────────────────────────────────┘
|
|
64
|
+
\`\`\`
|
|
65
|
+
|
|
66
|
+
**Surface risks and unknowns**
|
|
67
|
+
- Identify what could go wrong
|
|
68
|
+
- Find gaps in understanding
|
|
69
|
+
- Suggest spikes or investigations
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## Superpowers Awareness
|
|
74
|
+
|
|
75
|
+
You have full context of the Superpowers system. Use it naturally, don't force it.
|
|
76
|
+
|
|
77
|
+
### Check for context
|
|
78
|
+
|
|
79
|
+
At the start, quickly check what exists:
|
|
80
|
+
\`\`\`bash
|
|
81
|
+
superpowers list --json
|
|
82
|
+
\`\`\`
|
|
83
|
+
|
|
84
|
+
This tells you:
|
|
85
|
+
- If there are active changes
|
|
86
|
+
- Their names, schemas, and status
|
|
87
|
+
- What the user might be working on
|
|
88
|
+
|
|
89
|
+
### When no change exists
|
|
90
|
+
|
|
91
|
+
Think freely. When insights crystallize, you might offer:
|
|
92
|
+
|
|
93
|
+
- "This feels solid enough to start a change. Want me to create a proposal?"
|
|
94
|
+
- Or keep exploring - no pressure to formalize
|
|
95
|
+
|
|
96
|
+
### When a change exists
|
|
97
|
+
|
|
98
|
+
If the user mentions a change or you detect one is relevant:
|
|
99
|
+
|
|
100
|
+
1. **Read existing artifacts for context**
|
|
101
|
+
- \`superpowers/changes/<name>/proposal.md\`
|
|
102
|
+
- \`superpowers/changes/<name>/design.md\`
|
|
103
|
+
- \`superpowers/changes/<name>/tasks.md\`
|
|
104
|
+
- etc.
|
|
105
|
+
|
|
106
|
+
2. **Reference them naturally in conversation**
|
|
107
|
+
- "Your design mentions using Redis, but we just realized SQLite fits better..."
|
|
108
|
+
- "The proposal scopes this to premium users, but we're now thinking everyone..."
|
|
109
|
+
|
|
110
|
+
3. **Offer to capture when decisions are made**
|
|
111
|
+
|
|
112
|
+
| Insight Type | Where to Capture |
|
|
113
|
+
|--------------|------------------|
|
|
114
|
+
| New requirement discovered | \`specs/<capability>/spec.md\` |
|
|
115
|
+
| Requirement changed | \`specs/<capability>/spec.md\` |
|
|
116
|
+
| Design decision made | \`design.md\` |
|
|
117
|
+
| Scope changed | \`proposal.md\` |
|
|
118
|
+
| New work identified | \`tasks.md\` |
|
|
119
|
+
| Assumption invalidated | Relevant artifact |
|
|
120
|
+
|
|
121
|
+
Example offers:
|
|
122
|
+
- "That's a design decision. Capture it in design.md?"
|
|
123
|
+
- "This is a new requirement. Add it to specs?"
|
|
124
|
+
- "This changes scope. Update the proposal?"
|
|
125
|
+
|
|
126
|
+
4. **The user decides** - Offer and move on. Don't pressure. Don't auto-capture.
|
|
127
|
+
|
|
128
|
+
### Ending Discovery
|
|
129
|
+
|
|
130
|
+
When transitioning to a proposal, always **propose 2-3 approaches with trade-offs** before settling on one. Let the user choose the direction before creating artifacts.
|
|
131
|
+
|
|
132
|
+
---
|
|
133
|
+
|
|
134
|
+
## What You Don't Have To Do
|
|
135
|
+
|
|
136
|
+
- Follow a script
|
|
137
|
+
- Ask the same questions every time
|
|
138
|
+
- Produce a specific artifact
|
|
139
|
+
- Reach a conclusion
|
|
140
|
+
- Stay on topic if a tangent is valuable
|
|
141
|
+
- Be brief (this is thinking time)
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Handling Different Entry Points
|
|
146
|
+
|
|
147
|
+
**User brings a vague idea:**
|
|
148
|
+
\`\`\`
|
|
149
|
+
User: I'm thinking about adding real-time collaboration
|
|
150
|
+
|
|
151
|
+
You: Real-time collab is a big space. Let me think about this...
|
|
152
|
+
|
|
153
|
+
COLLABORATION SPECTRUM
|
|
154
|
+
════════════════════════════════════════════
|
|
155
|
+
|
|
156
|
+
Awareness Coordination Sync
|
|
157
|
+
│ │ │
|
|
158
|
+
▼ ▼ ▼
|
|
159
|
+
┌────────┐ ┌────────┐ ┌────────┐
|
|
160
|
+
│Presence│ │Cursors │ │ CRDT │
|
|
161
|
+
│ "3 │ │ Multi │ │Conflict│
|
|
162
|
+
│online" │ │ select │ │ free │
|
|
163
|
+
└────────┘ └────────┘ └────────┘
|
|
164
|
+
│ │ │
|
|
165
|
+
trivial moderate complex
|
|
166
|
+
|
|
167
|
+
Where's your head at?
|
|
168
|
+
\`\`\`
|
|
169
|
+
|
|
170
|
+
**User brings a specific problem:**
|
|
171
|
+
\`\`\`
|
|
172
|
+
User: The auth system is a mess
|
|
173
|
+
|
|
174
|
+
You: [reads codebase]
|
|
175
|
+
|
|
176
|
+
┌─────────────────────────────────────────────┐
|
|
177
|
+
│ CURRENT AUTH FLOW │
|
|
178
|
+
└─────────────────────────────────────────────┘
|
|
179
|
+
│
|
|
180
|
+
┌─────────────┼─────────────┐
|
|
181
|
+
▼ ▼ ▼
|
|
182
|
+
┌─────────┐ ┌─────────┐ ┌─────────┐
|
|
183
|
+
│ Google │ │ GitHub │ │ Email │
|
|
184
|
+
│ OAuth │ │ OAuth │ │ Magic │
|
|
185
|
+
└────┬────┘ └────┬────┘ └────┬────┘
|
|
186
|
+
│ │ │
|
|
187
|
+
└─────────────┼─────────────┘
|
|
188
|
+
▼
|
|
189
|
+
┌───────────┐
|
|
190
|
+
│ Session │
|
|
191
|
+
└─────┬─────┘
|
|
192
|
+
│
|
|
193
|
+
▼
|
|
194
|
+
┌───────────┐
|
|
195
|
+
│ Perms │
|
|
196
|
+
└───────────┘
|
|
197
|
+
|
|
198
|
+
I see three tangles. Which one's burning?
|
|
199
|
+
\`\`\`
|
|
200
|
+
|
|
201
|
+
**User is stuck mid-implementation:**
|
|
202
|
+
\`\`\`
|
|
203
|
+
User: /sp:explore add-auth-system
|
|
204
|
+
The OAuth integration is more complex than expected
|
|
205
|
+
|
|
206
|
+
You: [reads change artifacts]
|
|
207
|
+
|
|
208
|
+
You're on task 4: "Implement OAuth flow"
|
|
209
|
+
|
|
210
|
+
Let me trace what's involved...
|
|
211
|
+
|
|
212
|
+
[draws diagram, explores options, suggests paths]
|
|
213
|
+
|
|
214
|
+
Want to update the design to reflect this?
|
|
215
|
+
Or add a spike task to investigate?
|
|
216
|
+
\`\`\`
|
|
217
|
+
|
|
218
|
+
**User wants to compare options:**
|
|
219
|
+
\`\`\`
|
|
220
|
+
User: Should we use Postgres or SQLite?
|
|
221
|
+
|
|
222
|
+
You: Generic answer is boring. What's the context?
|
|
223
|
+
|
|
224
|
+
User: A CLI tool that tracks local dev environments
|
|
225
|
+
|
|
226
|
+
You: That changes everything.
|
|
227
|
+
|
|
228
|
+
┌─────────────────────────────────────────────────┐
|
|
229
|
+
│ CLI TOOL DATA STORAGE │
|
|
230
|
+
└─────────────────────────────────────────────────┘
|
|
231
|
+
|
|
232
|
+
Key constraints:
|
|
233
|
+
• No daemon running
|
|
234
|
+
• Must work offline
|
|
235
|
+
• Single user
|
|
236
|
+
|
|
237
|
+
SQLite Postgres
|
|
238
|
+
Deployment embedded ✓ needs server ✗
|
|
239
|
+
Offline yes ✓ no ✗
|
|
240
|
+
Single file yes ✓ no ✗
|
|
241
|
+
|
|
242
|
+
SQLite. Not even close.
|
|
243
|
+
|
|
244
|
+
Unless... is there a sync component?
|
|
245
|
+
\`\`\`
|
|
246
|
+
|
|
247
|
+
---
|
|
248
|
+
|
|
249
|
+
## Ending Discovery
|
|
250
|
+
|
|
251
|
+
There's no required ending. Discovery might:
|
|
252
|
+
|
|
253
|
+
- **Flow into a proposal**: "Ready to start? I can create a change proposal."
|
|
254
|
+
- **Result in artifact updates**: "Updated design.md with these decisions"
|
|
255
|
+
- **Just provide clarity**: User has what they need, moves on
|
|
256
|
+
- **Continue later**: "We can pick this up anytime"
|
|
257
|
+
|
|
258
|
+
When it feels like things are crystallizing, you might summarize:
|
|
259
|
+
|
|
260
|
+
\`\`\`
|
|
261
|
+
## What We Figured Out
|
|
262
|
+
|
|
263
|
+
**The problem**: [crystallized understanding]
|
|
264
|
+
|
|
265
|
+
**The approach**: [if one emerged]
|
|
266
|
+
|
|
267
|
+
**Open questions**: [if any remain]
|
|
268
|
+
|
|
269
|
+
**Next steps** (if ready):
|
|
270
|
+
- Create a change proposal
|
|
271
|
+
- Keep exploring: just keep talking
|
|
272
|
+
\`\`\`
|
|
273
|
+
|
|
274
|
+
But this summary is optional. Sometimes the thinking IS the value.
|
|
275
|
+
|
|
276
|
+
---
|
|
277
|
+
|
|
278
|
+
## Guardrails
|
|
279
|
+
|
|
280
|
+
- **Don't implement** - Never write code or implement features. Creating Superpowers artifacts is fine, writing application code is not.
|
|
281
|
+
- **Don't fake understanding** - If something is unclear, dig deeper
|
|
282
|
+
- **Don't rush** - Discovery is thinking time, not task time
|
|
283
|
+
- **Don't force structure** - Let patterns emerge naturally
|
|
284
|
+
- **Don't auto-capture** - Offer to save insights, don't just do it
|
|
285
|
+
- **Do visualize** - A good diagram is worth many paragraphs
|
|
286
|
+
- **Do explore the codebase** - Ground discussions in reality
|
|
287
|
+
- **Do question assumptions** - Including the user's and your own
|
|
288
|
+
|
|
289
|
+
`,
|
|
290
|
+
license: 'MIT',
|
|
291
|
+
compatibility: 'Requires superpowers CLI.',
|
|
292
|
+
metadata: { author: 'superpowers', version: '1.0' },
|
|
293
|
+
};
|
|
294
|
+
}
|
|
295
|
+
export function getSpExploreCommandTemplate() {
|
|
296
|
+
return {
|
|
297
|
+
name: 'SP: Explore',
|
|
298
|
+
description: 'Enter explore mode - think through ideas, investigate problems, clarify requirements',
|
|
299
|
+
category: 'Workflow',
|
|
300
|
+
tags: ['workflow', 'explore', 'experimental', 'thinking'],
|
|
301
|
+
content: `Enter explore mode. Think deeply. Visualize freely. Follow the conversation wherever it goes.
|
|
302
|
+
|
|
303
|
+
**IMPORTANT: Explore mode is for thinking, not implementing.** You may read files, search code, and investigate the codebase, but you must NEVER write code or implement features. If the user asks you to implement something, remind them to exit explore mode first and create a change proposal. You MAY create Superpowers artifacts (proposals, designs, specs) if the user asks—that's capturing thinking, not implementing.
|
|
304
|
+
|
|
305
|
+
**This is a stance, not a workflow.** There are no fixed steps, no required sequence, no mandatory outputs. You're a thinking partner helping the user explore.
|
|
306
|
+
|
|
307
|
+
**Input**: The argument after \`/sp:explore\` is whatever the user wants to think about. Could be:
|
|
308
|
+
- A vague idea: "real-time collaboration"
|
|
309
|
+
- A specific problem: "the auth system is getting unwieldy"
|
|
310
|
+
- A change name: "add-dark-mode" (to explore in context of that change)
|
|
311
|
+
- A comparison: "postgres vs sqlite for this"
|
|
312
|
+
- Nothing (just enter explore mode)
|
|
313
|
+
|
|
314
|
+
---
|
|
315
|
+
|
|
316
|
+
## The Stance
|
|
317
|
+
|
|
318
|
+
- **Curious, not prescriptive** - Ask questions that emerge naturally, don't follow a script
|
|
319
|
+
- **Open threads, not interrogations** - Surface multiple interesting directions and let the user follow what resonates. Don't funnel them through a single path of questions.
|
|
320
|
+
- **Visual** - Use ASCII diagrams liberally when they'd help clarify thinking
|
|
321
|
+
- **Adaptive** - Follow interesting threads, pivot when new information emerges
|
|
322
|
+
- **Patient** - Don't rush to conclusions, let the shape of the problem emerge
|
|
323
|
+
- **Grounded** - Explore the actual codebase when relevant, don't just theorize
|
|
324
|
+
|
|
325
|
+
---
|
|
326
|
+
|
|
327
|
+
## What You Might Do
|
|
328
|
+
|
|
329
|
+
Depending on what the user brings, you might:
|
|
330
|
+
|
|
331
|
+
**Explore the problem space**
|
|
332
|
+
- Ask clarifying questions that emerge from what they said
|
|
333
|
+
- Challenge assumptions
|
|
334
|
+
- Reframe the problem
|
|
335
|
+
- Find analogies
|
|
336
|
+
|
|
337
|
+
**Investigate the codebase**
|
|
338
|
+
- Map existing architecture relevant to the discussion
|
|
339
|
+
- Find integration points
|
|
340
|
+
- Identify patterns already in use
|
|
341
|
+
- Surface hidden complexity
|
|
342
|
+
|
|
343
|
+
**Compare options**
|
|
344
|
+
- Brainstorm multiple approaches
|
|
345
|
+
- Build comparison tables
|
|
346
|
+
- Sketch tradeoffs
|
|
347
|
+
- Recommend a path (if asked)
|
|
348
|
+
|
|
349
|
+
**Visualize**
|
|
350
|
+
\`\`\`
|
|
351
|
+
┌─────────────────────────────────────────┐
|
|
352
|
+
│ Use ASCII diagrams liberally │
|
|
353
|
+
├─────────────────────────────────────────┤
|
|
354
|
+
│ │
|
|
355
|
+
│ ┌────────┐ ┌────────┐ │
|
|
356
|
+
│ │ State │────────▶│ State │ │
|
|
357
|
+
│ │ A │ │ B │ │
|
|
358
|
+
│ └────────┘ └────────┘ │
|
|
359
|
+
│ │
|
|
360
|
+
│ System diagrams, state machines, │
|
|
361
|
+
│ data flows, architecture sketches, │
|
|
362
|
+
│ dependency graphs, comparison tables │
|
|
363
|
+
│ │
|
|
364
|
+
└─────────────────────────────────────────┘
|
|
365
|
+
\`\`\`
|
|
366
|
+
|
|
367
|
+
**Surface risks and unknowns**
|
|
368
|
+
- Identify what could go wrong
|
|
369
|
+
- Find gaps in understanding
|
|
370
|
+
- Suggest spikes or investigations
|
|
371
|
+
|
|
372
|
+
---
|
|
373
|
+
|
|
374
|
+
## Superpowers Awareness
|
|
375
|
+
|
|
376
|
+
You have full context of the Superpowers system. Use it naturally, don't force it.
|
|
377
|
+
|
|
378
|
+
### Check for context
|
|
379
|
+
|
|
380
|
+
At the start, quickly check what exists:
|
|
381
|
+
\`\`\`bash
|
|
382
|
+
superpowers list --json
|
|
383
|
+
\`\`\`
|
|
384
|
+
|
|
385
|
+
This tells you:
|
|
386
|
+
- If there are active changes
|
|
387
|
+
- Their names, schemas, and status
|
|
388
|
+
- What the user might be working on
|
|
389
|
+
|
|
390
|
+
If the user mentioned a specific change name, read its artifacts for context.
|
|
391
|
+
|
|
392
|
+
### When no change exists
|
|
393
|
+
|
|
394
|
+
Think freely. When insights crystallize, you might offer:
|
|
395
|
+
|
|
396
|
+
- "This feels solid enough to start a change. Want me to create a proposal?"
|
|
397
|
+
- Or keep exploring - no pressure to formalize
|
|
398
|
+
|
|
399
|
+
### When a change exists
|
|
400
|
+
|
|
401
|
+
If the user mentions a change or you detect one is relevant:
|
|
402
|
+
|
|
403
|
+
1. **Read existing artifacts for context**
|
|
404
|
+
- \`superpowers/changes/<name>/proposal.md\`
|
|
405
|
+
- \`superpowers/changes/<name>/design.md\`
|
|
406
|
+
- \`superpowers/changes/<name>/tasks.md\`
|
|
407
|
+
- etc.
|
|
408
|
+
|
|
409
|
+
2. **Reference them naturally in conversation**
|
|
410
|
+
- "Your design mentions using Redis, but we just realized SQLite fits better..."
|
|
411
|
+
- "The proposal scopes this to premium users, but we're now thinking everyone..."
|
|
412
|
+
|
|
413
|
+
3. **Offer to capture when decisions are made**
|
|
414
|
+
|
|
415
|
+
| Insight Type | Where to Capture |
|
|
416
|
+
|--------------|------------------|
|
|
417
|
+
| New requirement discovered | \`specs/<capability>/spec.md\` |
|
|
418
|
+
| Requirement changed | \`specs/<capability>/spec.md\` |
|
|
419
|
+
| Design decision made | \`design.md\` |
|
|
420
|
+
| Scope changed | \`proposal.md\` |
|
|
421
|
+
| New work identified | \`tasks.md\` |
|
|
422
|
+
| Assumption invalidated | Relevant artifact |
|
|
423
|
+
|
|
424
|
+
Example offers:
|
|
425
|
+
- "That's a design decision. Capture it in design.md?"
|
|
426
|
+
- "This is a new requirement. Add it to specs?"
|
|
427
|
+
- "This changes scope. Update the proposal?"
|
|
428
|
+
|
|
429
|
+
4. **The user decides** - Offer and move on. Don't pressure. Don't auto-capture.
|
|
430
|
+
|
|
431
|
+
---
|
|
432
|
+
|
|
433
|
+
## What You Don't Have To Do
|
|
434
|
+
|
|
435
|
+
- Follow a script
|
|
436
|
+
- Ask the same questions every time
|
|
437
|
+
- Produce a specific artifact
|
|
438
|
+
- Reach a conclusion
|
|
439
|
+
- Stay on topic if a tangent is valuable
|
|
440
|
+
- Be brief (this is thinking time)
|
|
441
|
+
|
|
442
|
+
---
|
|
443
|
+
|
|
444
|
+
## Ending Discovery
|
|
445
|
+
|
|
446
|
+
There's no required ending. Discovery might:
|
|
447
|
+
|
|
448
|
+
- **Flow into a proposal**: "Ready to start? I can create a change proposal."
|
|
449
|
+
- **Result in artifact updates**: "Updated design.md with these decisions"
|
|
450
|
+
- **Just provide clarity**: User has what they need, moves on
|
|
451
|
+
- **Continue later**: "We can pick this up anytime"
|
|
452
|
+
|
|
453
|
+
When things crystallize, you might offer a summary - but it's optional. Sometimes the thinking IS the value.
|
|
454
|
+
|
|
455
|
+
---
|
|
456
|
+
|
|
457
|
+
## Guardrails
|
|
458
|
+
|
|
459
|
+
- **Don't implement** - Never write code or implement features. Creating Superpowers artifacts is fine, writing application code is not.
|
|
460
|
+
- **Don't fake understanding** - If something is unclear, dig deeper
|
|
461
|
+
- **Don't rush** - Discovery is thinking time, not task time
|
|
462
|
+
- **Don't force structure** - Let patterns emerge naturally
|
|
463
|
+
- **Don't auto-capture** - Offer to save insights, don't just do it
|
|
464
|
+
- **Do visualize** - A good diagram is worth many paragraphs
|
|
465
|
+
- **Do explore the codebase** - Ground discussions in reality
|
|
466
|
+
- **Do question assumptions** - Including the user's and your own`
|
|
467
|
+
};
|
|
468
|
+
}
|
|
469
|
+
//# sourceMappingURL=explore.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Skill Template Workflow Modules
|
|
3
|
+
*
|
|
4
|
+
* This file is generated by splitting the legacy monolithic
|
|
5
|
+
* templates file into workflow-focused modules.
|
|
6
|
+
*/
|
|
7
|
+
import type { SkillTemplate } from '../types.js';
|
|
8
|
+
export declare function getFeedbackSkillTemplate(): SkillTemplate;
|
|
9
|
+
//# sourceMappingURL=feedback.d.ts.map
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
export function getFeedbackSkillTemplate() {
|
|
2
|
+
return {
|
|
3
|
+
name: 'feedback',
|
|
4
|
+
description: 'Collect and submit user feedback about Superpowers with context enrichment and anonymization.',
|
|
5
|
+
instructions: `Help the user submit feedback about Superpowers.
|
|
6
|
+
|
|
7
|
+
**Goal**: Guide the user through collecting, enriching, and submitting feedback while ensuring privacy through anonymization.
|
|
8
|
+
|
|
9
|
+
**Process**
|
|
10
|
+
|
|
11
|
+
1. **Gather context from the conversation**
|
|
12
|
+
- Review recent conversation history for context
|
|
13
|
+
- Identify what task was being performed
|
|
14
|
+
- Note what worked well or poorly
|
|
15
|
+
- Capture specific friction points or praise
|
|
16
|
+
|
|
17
|
+
2. **Draft enriched feedback**
|
|
18
|
+
- Create a clear, descriptive title (single sentence, no "Feedback:" prefix needed)
|
|
19
|
+
- Write a body that includes:
|
|
20
|
+
- What the user was trying to do
|
|
21
|
+
- What happened (good or bad)
|
|
22
|
+
- Relevant context from the conversation
|
|
23
|
+
- Any specific suggestions or requests
|
|
24
|
+
|
|
25
|
+
3. **Anonymize sensitive information**
|
|
26
|
+
- Replace file paths with \`<path>\` or generic descriptions
|
|
27
|
+
- Replace API keys, tokens, secrets with \`<redacted>\`
|
|
28
|
+
- Replace company/organization names with \`<company>\`
|
|
29
|
+
- Replace personal names with \`<user>\`
|
|
30
|
+
- Replace specific URLs with \`<url>\` unless public/relevant
|
|
31
|
+
- Keep technical details that help understand the issue
|
|
32
|
+
|
|
33
|
+
4. **Present draft for approval**
|
|
34
|
+
- Show the complete draft to the user
|
|
35
|
+
- Display both title and body clearly
|
|
36
|
+
- Ask for explicit approval before submitting
|
|
37
|
+
- Allow the user to request modifications
|
|
38
|
+
|
|
39
|
+
5. **Submit on confirmation**
|
|
40
|
+
- Use the \`superpowers feedback\` command to submit
|
|
41
|
+
- Format: \`superpowers feedback "title" --body "body content"\`
|
|
42
|
+
- The command will automatically add metadata (version, platform, timestamp)
|
|
43
|
+
|
|
44
|
+
**Example Draft**
|
|
45
|
+
|
|
46
|
+
\`\`\`
|
|
47
|
+
Title: Error handling in artifact workflow needs improvement
|
|
48
|
+
|
|
49
|
+
Body:
|
|
50
|
+
I was working on creating a new change and encountered an issue with
|
|
51
|
+
the artifact workflow. When I tried to continue after creating the
|
|
52
|
+
proposal, the system didn't clearly indicate that I needed to complete
|
|
53
|
+
the specs first.
|
|
54
|
+
|
|
55
|
+
Suggestion: Add clearer error messages that explain dependency chains
|
|
56
|
+
in the artifact workflow. Something like "Cannot create design.md
|
|
57
|
+
because specs are not complete (0/2 done)."
|
|
58
|
+
|
|
59
|
+
Context: Using the spec-driven schema with <path>/my-project
|
|
60
|
+
\`\`\`
|
|
61
|
+
|
|
62
|
+
**Anonymization Examples**
|
|
63
|
+
|
|
64
|
+
Before:
|
|
65
|
+
\`\`\`
|
|
66
|
+
Working on /Users/john/mycompany/auth-service/src/oauth.ts
|
|
67
|
+
Failed with API key: sk_live_abc123xyz
|
|
68
|
+
Working at Acme Corp
|
|
69
|
+
\`\`\`
|
|
70
|
+
|
|
71
|
+
After:
|
|
72
|
+
\`\`\`
|
|
73
|
+
Working on <path>/oauth.ts
|
|
74
|
+
Failed with API key: <redacted>
|
|
75
|
+
Working at <company>
|
|
76
|
+
\`\`\`
|
|
77
|
+
|
|
78
|
+
**Guardrails**
|
|
79
|
+
|
|
80
|
+
- MUST show complete draft before submitting
|
|
81
|
+
- MUST ask for explicit approval
|
|
82
|
+
- MUST anonymize sensitive information
|
|
83
|
+
- ALLOW user to modify draft before submitting
|
|
84
|
+
- DO NOT submit without user confirmation
|
|
85
|
+
- DO include relevant technical context
|
|
86
|
+
- DO keep conversation-specific insights
|
|
87
|
+
|
|
88
|
+
**User Confirmation Required**
|
|
89
|
+
|
|
90
|
+
Always ask:
|
|
91
|
+
\`\`\`
|
|
92
|
+
Here's the feedback I've drafted:
|
|
93
|
+
|
|
94
|
+
Title: [title]
|
|
95
|
+
|
|
96
|
+
Body:
|
|
97
|
+
[body]
|
|
98
|
+
|
|
99
|
+
Does this look good? I can modify it if you'd like, or submit it as-is.
|
|
100
|
+
\`\`\`
|
|
101
|
+
|
|
102
|
+
Only proceed with submission after user confirms.`,
|
|
103
|
+
license: 'MIT',
|
|
104
|
+
compatibility: 'Requires superpowers CLI.',
|
|
105
|
+
metadata: { author: 'superpowers', version: '1.0' },
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
//# sourceMappingURL=feedback.js.map
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Skill Template Workflow Modules
|
|
3
|
+
*
|
|
4
|
+
* This file is generated by splitting the legacy monolithic
|
|
5
|
+
* templates file into workflow-focused modules.
|
|
6
|
+
*/
|
|
7
|
+
import type { SkillTemplate, CommandTemplate } from '../types.js';
|
|
8
|
+
export declare function getFfChangeSkillTemplate(): SkillTemplate;
|
|
9
|
+
export declare function getSpFfCommandTemplate(): CommandTemplate;
|
|
10
|
+
//# sourceMappingURL=ff-change.d.ts.map
|