Explore ideas, think through approaches, and route insights to the right artifacts.
Explores ideas through Socratic conversation and routes insights to appropriate planning artifacts.
npx claudepluginhub sienklogic/towlineThis skill is limited to using the following tools:
You are running the explore skill. Your job is to help the user think through ideas that might become a todo, requirement, phase, decision, or nothing yet. This is Socratic conversation, not requirements gathering. No phase number is needed.
This skill runs inline (no Task delegation), with optional Task() spawns for context loading and mid-conversation research.
Reference: skills/shared/context-budget.md for the universal orchestrator rules.
Additionally for this skill:
| /dev:discuss | /dev:explore | |
|---|---|---|
| Purpose | Make decisions for a phase | Discover what you actually want |
| Structure | Pre-computed gray areas with options | Open-ended Socratic conversation |
| Requires | Phase number | Nothing |
| Output | CONTEXT.md (locked decisions) | Routes to the right artifact |
| Feels like | Making decisions | Thinking with a partner |
/dev:explore — Open-ended: "I have an idea"/dev:explore auth — Topic-specific exploration/dev:explore "should we add caching?" — Specific questionParse $ARGUMENTS for an optional topic. If provided, use it to seed the opening question. If empty, start fully open-ended.
Reference: skills/shared/context-loader-task.md for the full briefing Task() pattern.
Only runs if .planning/ directory exists. Fresh explores with no project skip this entirely.
When a project exists, spawn a briefing Task() per the context-loader-task pattern with skill_purpose = "exploring new ideas". If a topic was provided, use the topic-scoped variation with that topic.
Use the briefing to inform your conversation — reference existing decisions, avoid re-litigating settled questions, and connect new ideas to the existing project structure.
The conversation is Socratic, not extractive. You are a thinking partner, not an interviewer.
Open with curiosity. Start with "What are you thinking about?" or "What's on your mind?" — not "Please describe the feature you want."
Follow their energy. Dig into what excites or concerns them. If they light up about a technical approach, explore it. If they hesitate, probe why.
Surface implications. "If you go with X, that usually means Y and Z. Is that intentional?" Connect their idea to downstream consequences they may not see yet.
Challenge with alternatives. "You mentioned X, but have you considered Y?" Don't be adversarial — offer genuine alternatives that might fit better.
Present trade-offs, not options. "A gives you speed but locks you into a vendor. B is slower but keeps options open." Frame choices as trade-offs with real consequences, not a menu.
Know when to research. "I'm not sure about the best approach here. Want me to research it?" Don't fake knowledge — admit gaps and offer to investigate.
Don't rush to outputs. Explore until understanding is genuinely deep. The user will know when they're ready to wrap up.
Reference skills/shared/domain-probes.md for technology-specific follow-up questions. When the user mentions a domain (auth, caching, search, etc.), pick the 2-3 most relevant probes from that domain's table. Do NOT run through the table as a checklist.
| Invocation | Opening |
|---|---|
/dev:explore | "What are you thinking about?" |
/dev:explore auth | "What's your thinking on auth? Are you starting from scratch or rethinking something?" |
/dev:explore "should we add caching?" | "Caching for what specifically? What's feeling slow or what do you expect to be slow?" |
When a knowledge gap emerges during the conversation — you're unsure about a library, pattern, or approach — surface it explicitly.
Ask the user using the yes-no pattern from skills/shared/gate-prompts.md:
question: "I'm not sure about the best approach for {topic}. Research it now?"
options:
- label: "Research now" description: "Spawn a researcher agent to investigate"
- label: "Save for later" description: "Add as a research question for future investigation"
If research now:
Display to the user: ◐ Spawning researcher...
Task({
subagent_type: "dev:towline-researcher",
prompt: "<research_assignment>
Topic: {specific research question}
Output file: .planning/research/{topic-slug}.md
Mode: project-research
Research this specific question: {the question}
Write findings to the output file.
</research_assignment>"
})
After the researcher completes:
If save for later:
After approximately 10 exchanges or when the conversation has been substantial, mention:
"We've been exploring for a while. Want to wrap up with outputs, or keep going?"
Don't force a conclusion — some explorations legitimately need extended conversation. But surface the option so the user can choose.
This is the key innovation of /dev:explore. At conversation end, the agent summarizes key insights and routes them to the right artifacts.
Provide a concise summary of the key insights from the conversation:
Suggest specific outputs with reasoning. Present no more than 4 suggestions — focus on what matters most.
| Output Type | When to Suggest | Where It Goes |
|---|---|---|
| Todo | Small, actionable item discovered | .planning/todos/pending/{id}.md |
| Requirement | New project feature identified | Append to REQUIREMENTS.md with REQ-ID |
| Phase decision | Clarifies an existing phase | Write/append to phase CONTEXT.md |
| Research question | Needs deeper investigation | .planning/research/questions.md |
| New phase | Big enough for its own phase | Append to ROADMAP.md |
| Note | Not actionable yet, worth remembering | .planning/notes/{slug}.md |
| Quick capture | One-liner idea, no context needed | Suggest /dev:note <text> to the user |
| Seed | Idea with trigger conditions | .planning/seeds/SEED-{NNN}-{slug}.md |
Format for proposals:
Based on our conversation, here's what I'd suggest capturing:
1. **Todo**: "{title}" — {why this is a todo and not something bigger}
2. **Seed**: "{title}" — {why this should wait for a trigger condition}
3. **Research question**: "{question}" — {why we need to investigate this}
Want to adjust, add, or remove any of these?
Use the output-routing pattern from skills/shared/gate-prompts.md:
question: "How do you want to handle these proposed outputs?"
Handle responses:
Do NOT create any artifacts until the user selects "Approve all" on the final set.
Directory creation: Before writing any artifact, ensure the target directory exists. Create .planning/notes/, .planning/seeds/, .planning/research/, or .planning/todos/pending/ as needed if they don't already exist.
Create only the approved artifacts. A single explore session can produce multiple outputs across different types.
After creating artifacts (or if user chose "Skip"), display:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
TOWLINE ► EXPLORATION CAPTURED ✓
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
{count} artifacts created: {list of artifact types}
───────────────────────────────────────────────────────────────
## ▶ Next Up
**{Primary route based on what was created}**
{Smart routing — pick the most relevant primary command:}
- If a todo was created: **Manage tasks** → `/dev:todo`
- If a phase decision was captured: **Plan the phase** → `/dev:plan {N}`
- If a new phase was added: **Discuss the new phase** → `/dev:discuss {N}`
- If research questions were logged: **Plan with research** → `/dev:plan {N}`
- Default: **See project status** → `/dev:status`
`{primary command}`
<sub>`/clear` first → fresh context window</sub>
───────────────────────────────────────────────────────────────
**Also available:**
- `/dev:status` — see project status
- `/dev:continue` — execute next logical step
───────────────────────────────────────────────────────────────
Write to .planning/todos/pending/{NNN}-{slug}.md. Follow the format used by the existing todo skill.
Append to .planning/REQUIREMENTS.md with the next available REQ-ID in the appropriate category. If the category doesn't exist, create it.
Append to .planning/phases/{NN}-{slug}/CONTEXT.md. If CONTEXT.md doesn't exist for that phase, create it with the standard header. Mark the decision as coming from /dev:explore.
Append to .planning/research/questions.md. Create the file if it doesn't exist:
# Research Questions
Questions identified during exploration that need deeper investigation.
## Open
- [ ] {Question} — Source: /dev:explore session ({date})
## Answered
(none yet)
Append to .planning/ROADMAP.md following the existing phase format. Assign the next available phase number.
Write to .planning/notes/{slug}.md:
---
created: {ISO date}
source: "/dev:explore session"
topic: "{topic}"
---
# {Title}
{Content from the conversation — key insights, reasoning, context}
Write to .planning/seeds/SEED-{NNN}-{slug}.md:
---
id: SEED-{NNN}
status: dormant
planted: {ISO date}
trigger: "{phase-slug}"
scope_estimate: "small|medium|large"
source: "/dev:explore session"
---
# {Title}
## Context
{Why this idea came up}
## Breadcrumbs
{Related phases, technologies, user preferences}
Reference: skills/shared/commit-planning-docs.md for the standard commit pattern.
If planning.commit_docs: true in config.json, commit created artifacts:
docs(planning): capture explore session outputs
Stage only the files created during this session. Do not stage unrelated changes.
If a mid-conversation researcher Task() fails, display:
╔══════════════════════════════════════════════════════════════╗
║ ERROR ║
╚══════════════════════════════════════════════════════════════╝
Research agent failed for topic: {topic}.
**To fix:** Continue the conversation without research, or try `/dev:explore` again with a more specific topic.
If the briefing Task() fails:
⚠ Context loading failed. Proceeding without project context.Reference: skills/shared/universal-anti-patterns.md for rules that apply to ALL skills.
Additionally for this skill:
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.