You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add /opsx:explore command for exploratory thinking (Fission-AI#467)
Wire up the explore skill and slash command templates to the
artifact-experimental-setup command. This adds /opsx:explore as
a thinking partner mode for exploring ideas, investigating problems,
and clarifying requirements before committing to a change.
Changes:
- Add imports for getExploreSkillTemplate and getOpsxExploreCommandTemplate
- Add explore skill to skills array (generates openspec-explore/SKILL.md)
- Add explore command to commands array (generates opsx/explore.md)
- Add /opsx:explore to CLI usage message
- Update docs/experimental-workflow.md with explore command
Copy file name to clipboardExpand all lines: docs/experimental-workflow.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,7 @@ This creates skills in `.claude/skills/` that Claude Code auto-detects.
82
82
83
83
| Command | What it does |
84
84
|---------|--------------|
85
+
|`/opsx:explore`| Think through ideas, investigate problems, clarify requirements |
85
86
|`/opsx:new`| Start a new change |
86
87
|`/opsx:continue`| Create the next artifact (based on what's ready) |
87
88
|`/opsx:ff`| Fast-forward — create all planning artifacts at once |
@@ -91,6 +92,12 @@ This creates skills in `.claude/skills/` that Claude Code auto-detects.
91
92
92
93
## Usage
93
94
95
+
### Explore an idea
96
+
```
97
+
/opsx:explore
98
+
```
99
+
Think through ideas, investigate problems, compare options. No structure required - just a thinking partner. When insights crystallize, transition to `/opsx:new` or `/opsx:ff`.
100
+
94
101
### Start a new change
95
102
```
96
103
/opsx:new
@@ -520,6 +527,7 @@ Run `openspec schemas` to see available schemas.
520
527
521
528
## Tips
522
529
530
+
- Use `/opsx:explore` to think through an idea before committing to a change
523
531
-`/opsx:ff` when you know what you want, `/opsx:continue` when exploring
524
532
- During `/opsx:apply`, if something's wrong — fix the artifact, then continue
525
533
- Tasks track progress via checkboxes in `tasks.md`
0 commit comments