From attune
<EXTREMELY_IMPORTANT>You MUST use explore when discussing solutions, designs, or approaches with the user, and whenever a user preference or output-style judgment surfaces. It routes every open unknown to its oracle — research the world, ask the human, experiment on the unknown — so discussions settle on evidence and rulings instead of assumptions.</EXTREMELY_IMPORTANT>
How this skill is triggered — by the user, by Claude, or both
Slash command
/attune:exploreThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Announce at start:** "I'm using the attune explore skill to route unknowns by oracle."
Announce at start: "I'm using the attune explore skill to route unknowns by oracle."
Knowledge has three sources, and each source settles a question in exactly one way:
This skill runs that routing eagerly during any discussion. Until its oracle answers, a question stays open, no matter what is already written down.
The moment you classify an unknown as WORLD-owned, settle it by grounded web research, one researcher per unknown or candidate. Every researcher writes its full brief to ${TMPDIR:-/tmp}/attune-explore/<topic>/<unknown>.md — the brief files are the evidence trail the user can check; the thread carries only the compiled digest.
Launch the researchers as background subagents with the Agent tool, in parallel (one message, multiple Agent calls). The conversation continues while they run, but the digest does not: wait for every spawned explorer to complete — never a partial digest as briefs land.
Spawning explorers:
MUST:
model: "sonnet" — never the session model.general-purpose subagent type, restricted by prompt to research plus one brief-file write — the built-in Explore type cannot write files.MUST NOT:
Required brief template:
## Findings
- Claim: <one sentence>
Evidence: <what supports it>
Source: <name or URL, date>
(one entry per claim)
## Conflicts
<disagreements between sources, or "none">
## Confidence
<one line: how settled this is, and what would change it>
Compiling the digest: read every brief file and validate it — check source credibility, check dates and discard stale facts, resolve conflicts by source authority and recency; never conclude without validation, and never rewrite a brief file while validating it. Then report one digest: for each unknown, the settled answer in one or two sentences, the confidence, any conflict worth surfacing, and the brief's file path so the user can check the facts.
AskUserQuestion on Claude Code), or directly in conversation when none exists, carrying your recommended answer and the reason for it — never a bare open prompt, and never a menu for a decision you can reason out yourself.Constraints:
Invoke the attune experiment skill through your platform's skill tool. Its outcome returns here as evidence; the user still rules on it, and the ruling carries into the task like any other.
Never ask the user a WORLD-owned question; never silently assume a HUMAN-owned answer; never guess a NOBODY-owned one.
npx claudepluginhub wezzard/skills --plugin attuneGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Resolves in-progress git merge or rebase conflicts by analyzing history, understanding intent, and preserving both changes where possible. Runs automated checks after resolution.