docs/explore.md
/opsx:explore is your thinking partner. Reach for it whenever you have a problem but not yet a plan. It investigates your codebase, weighs options with you, and clarifies what you actually want, all before a single artifact or line of code is created. When the picture is clear, it hands off to /opsx:propose.
If you take one habit from these docs, take this one: when you're not sure, explore before you propose.
Here's why that matters. AI coding assistants are eager. Ask vaguely and they'll confidently build something, just maybe not the thing you needed. Explore is the cure. It's a no-stakes conversation where you and the AI figure out the right move together, so that by the time you propose, you're proposing the right thing.
Explore is the right first step more often than people expect. Use it when any of these is true:
Skip explore only when you already know exactly what you want and how. In that case go straight to /opsx:propose.
Explore is a conversation, not a generator.
It does:
/opsx:propose when you're ready.It does not:
That's the point. Exploring costs you nothing and commits you to nothing. You can explore three dead ends, learn something from each, and only then propose the path that survived.
Good news: /opsx:explore ships in the default core profile, right alongside propose, apply, sync, and archive. You don't need to enable anything. If OpenSpec is set up in your project, explore is ready in your AI chat. (As with all /opsx:* commands, you type it in your assistant's chat, not the terminal. See How Commands Work.)
Watch how a vague worry becomes a sharp, buildable change.
You: /opsx:explore
AI: What would you like to explore?
You: Our checkout sometimes creates duplicate orders. I don't know why
and I don't know how to fix it safely.
AI: Let me dig into the checkout path...
[reads the order service, the payment webhook handler, and the
client submit logic]
Here's what I found. There are two ways a duplicate can happen:
1. The client can submit twice (double-click, retry on slow network).
Nothing debounces it.
2. The payment webhook can fire more than once, and the handler
creates an order each time. There's no idempotency key.
Cause #2 is the dangerous one: it can charge and fulfill twice.
Three ways to fix it, roughly in order of robustness:
- Idempotency key on the order-creation endpoint (handles both causes)
- Dedup on the webhook by payment-intent id (handles #2 only)
- Client-side debounce (handles #1 only, papers over the real bug)
Given your code already stores the payment-intent id, the
idempotency-key approach is a small change with the biggest payoff.
Want me to scope that?
You: Yes, let's do the idempotency key.
You: /opsx:propose add-order-idempotency-key
AI: Created openspec/changes/add-order-idempotency-key/, with a proposal
and delta spec grounded in what we just found. Ready for implementation.
Notice what happened. The starting point was "something is wrong and I'm scared to touch it." Twenty seconds of exploration turned that into a named root cause, three ranked options, a recommendation tied to the existing code, and a precise change. The proposal that follows is sharp because the thinking happened first.
Explore doesn't archive into anything. When you're ready, you simply start a change, and the AI carries the context from your conversation into the artifacts.
explore ──► propose ──► apply ──► archive
(think) (agree) (build) (record)
You can say it in plain language ("let's turn this into a change") or run /opsx:propose <name> directly. Either way, the exploration you just did becomes the foundation of the proposal, not throwaway chat.
If you use the expanded command set, explore can hand off to /opsx:new instead, for step-by-step artifact creation. See Workflows.
/opsx:apply? You can step back and explore a sub-problem, then return.What you gain: explore catches wrong turns at the cheapest possible moment, before any artifact exists. It's especially powerful in unfamiliar code, where the AI's ability to read and summarize the system saves you an afternoon of spelunking.
What it costs: a little patience. Explore is a conversation, so it's slower than firing off /opsx:propose and hoping. For work you genuinely understand already, that extra step is pure overhead, and you should skip it.
The rule of thumb: the fuzzier the task, the more explore pays off. The clearer the task, the more you can skip straight to proposing.
/opsx:explore: the precise reference