From morkit
Enters explore mode to think through ideas, investigate problems, and clarify requirements before implementing. Reads codebase context but never writes code.
How this skill is triggered — by the user, by Claude, or both
Slash command
/morkit:brainstormingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Enter explore mode. Think deeply. Visualize freely. Follow the conversation wherever it goes.
Enter explore mode. Think deeply. Visualize freely. Follow the conversation wherever it goes.
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 morkit artifacts (proposals, designs, specs) if the user asks—that's capturing thinking, not implementing.
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.
Depending on what the user brings, you might:
Explore the problem space
Investigate the codebase
Read project context files at session start (priority tiers)
Before opening threads, scan project context. These files often contain constraints, conventions, and prior decisions that should shape the direction — agent must respect them, not override them.
CLAUDE.md (Claude Code project rules)AGENTS.md (multi-agent project conventions)GEMINI.md (Gemini CLI rules).github/copilot-instructions.md (GitHub Copilot rules)memory/ or .claude/memory/ if presentREADME.md (project goals, tech stack, how-to-run)package.json / pyproject.toml / Cargo.toml /
go.mod / pom.xml (declared deps reveal architecture)git log -20 --oneline (current direction)bash "${MORKIT_PLUGIN_ROOT:-${CLAUDE_PLUGIN_ROOT}}/scripts/list-changes.sh" --jsonmorkit/output/spec/<name>/ (proposal/design/tasks if user mentions a change)docs/, docs/srs.md, docs/api-docs.md, etc.openspec/changes/<name>/ if migratingSkip a tier only when files don't exist. Cite Tier 1 explicitly when relevant — e.g. "CLAUDE.md says no class components → propose React functional only" — so the user sees the reasoning grounded in their rules.
Research libraries with Context7 (preferred over WebSearch for accuracy) When the discussion involves a specific library, framework, or SDK and you need current API/version/docs, use Context7 — it pulls version-specific docs straight from upstream and prevents hallucinated APIs from stale training data:
mcp__context7__resolve-library-id with libraryName + query → returns Context7 IDs (e.g. /reactjs/react.dev). Skip if user already gave you /org/project.mcp__context7__query-docs with that libraryId + query → returns docs. Retry once with researchMode: true if too shallow. Each tool ≤ 3 calls per question.# Step 1 — resolve to Context7 ID
npx -y ctx7 library "<library-name>" "<topic>"
# Step 2 — query docs for that ID
npx -y ctx7 docs "<library-id>" "<topic>"
Use Context7 BEFORE making claims about library behaviour — it's much cheaper to verify than to be wrong.
Compare options
Visualize
┌─────────────────────────────────────────┐
│ Use ASCII diagrams liberally │
├─────────────────────────────────────────┤
│ │
│ ┌────────┐ ┌────────┐ │
│ │ State │────────▶│ State │ │
│ │ A │ │ B │ │
│ └────────┘ └────────┘ │
│ │
│ System diagrams, state machines, │
│ data flows, architecture sketches, │
│ dependency graphs, comparison tables │
│ │
└─────────────────────────────────────────┘
Surface risks and unknowns
You have full context of the morkit spec system. Use it naturally, don't force it.
At the start, quickly check what exists:
bash "${MORKIT_PLUGIN_ROOT:-${CLAUDE_PLUGIN_ROOT}}/scripts/list-changes.sh" --json
This tells you:
${MORKIT_ROOT:-morkit/output/spec}/Every brainstorming session ends with a design log written to:
morkit/output/design-logs/YYYY-MM-DD-<topic>-design.md
(the design-logs/ folder sits beside the changes folder ${MORKIT_ROOT:-morkit/output/spec} — never inside it)
This is required at session end — the log is the input artifact for
downstream commands (/morkit:propose, function list
discussions). Before saving, confirm with the user:
"Đã đủ shape để wrap up. Save design log vào
morkit/output/design-logs/<date>-<topic>-design.md?"
On user OK, write the file using this template:
# Design Log — <topic>
date: YYYY-MM-DD
inputs: <list of files/links consulted>
## Problem framing
<crystallized understanding>
## Approaches considered
<approaches + tradeoffs + which one picked + why>
## Decisions
<decisions made during session>
## Open questions
<unresolved threads>
## Next step
<e.g. /morkit:propose <name>>
During the session, do NOT persist intermediate snippets without asking. Only the final design log is auto-offered at session end.
Think freely. When insights crystallize, you might offer:
/morkit:propose <name>?"If the user mentions a change or you detect one is relevant:
Read existing artifacts for context
morkit/output/spec/<name>/proposal.mdmorkit/output/spec/<name>/design.mdmorkit/output/spec/<name>/tasks.mdmorkit/output/spec/<name>/review-checklist.mdReference them naturally in conversation
Offer to capture when decisions are made
| Insight Type | Where to Capture |
|---|---|
| New requirement discovered | specs/<capability>/spec.md |
| Requirement changed | specs/<capability>/spec.md |
| Design decision made | design.md |
| Scope changed | proposal.md |
| New work identified | tasks.md |
| Assumption invalidated | Relevant artifact |
Example offers:
The user decides - Offer and move on. Don't pressure. Don't auto-capture.
User brings a vague idea:
User: I'm thinking about adding real-time collaboration
You: Real-time collab is a big space. Let me think about this...
COLLABORATION SPECTRUM
════════════════════════════════════════════
Awareness Coordination Sync
│ │ │
▼ ▼ ▼
┌────────┐ ┌────────┐ ┌────────┐
│Presence│ │Cursors │ │ CRDT │
│ "3 │ │ Multi │ │Conflict│
│online" │ │ select │ │ free │
└────────┘ └────────┘ └────────┘
│ │ │
trivial moderate complex
Where's your head at?
User brings a specific problem:
User: The auth system is a mess
You: [reads codebase]
┌─────────────────────────────────────────────┐
│ CURRENT AUTH FLOW │
└─────────────────────────────────────────────┘
│
┌─────────────┼─────────────┐
▼ ▼ ▼
┌─────────┐ ┌─────────┐ ┌─────────┐
│ Google │ │ GitHub │ │ Email │
│ OAuth │ │ OAuth │ │ Magic │
└────┬────┘ └────┬────┘ └────┬────┘
│ │ │
└─────────────┼─────────────┘
▼
┌───────────┐
│ Session │
└─────┬─────┘
│
▼
┌───────────┐
│ Perms │
└───────────┘
I see three tangles. Which one's burning?
User is stuck mid-implementation:
User: /morkit:brainstorming add-auth-system
The OAuth integration is more complex than expected
You: [reads change artifacts]
You're on task 4: "Implement OAuth flow"
Let me trace what's involved...
[draws diagram, explores options, suggests paths]
Want to update the design to reflect this?
Or add a spike task to investigate?
User wants to compare options:
User: Should we use Postgres or SQLite?
You: Generic answer is boring. What's the context?
User: A CLI tool that tracks local dev environments
You: That changes everything.
┌─────────────────────────────────────────────────┐
│ CLI TOOL DATA STORAGE │
└─────────────────────────────────────────────────┘
Key constraints:
• No daemon running
• Must work offline
• Single user
SQLite Postgres
Deployment embedded ✓ needs server ✗
Offline yes ✓ no ✗
Single file yes ✓ no ✗
SQLite. Not even close.
Unless... is there a sync component?
When the session winds down (user signals they're done, or insights have crystallized), summarize and save the design log:
## What We Figured Out
**The problem**: [crystallized understanding]
**The approach**: [if one emerged]
**Open questions**: [if any remain]
**Next step**:
- Run `/morkit:propose <name>` to create a change proposal
- Keep exploring later — design log is saved
Then write this to morkit/output/design-logs/YYYY-MM-DD-<topic>-design.md
using the template in "Session output" above. The log captures what was
explored so the next session (or a different command like /morkit:propose)
can resume from here. Even if no concrete decision emerged, save what was
explored.
morkit/output/design-logs/. During the session, ask before persisting intermediate snippetsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub mor-duongmh/morkit-plugin --plugin morkit