From attune
Settle a question that only trying can answer — an output-style comparison, a prompt phrasing, an error message, any unknown with comparable candidates — by a blind comparison. Produce candidates, strip provenance, collect blind verdicts against one stated criterion, then present everything to the user for the ruling. Use when the attune explore skill classifies an unknown as NOBODY-owned, or when the user asks to settle a question by evidence.
How this skill is triggered — by the user, by Claude, or both
Slash command
/attune:experimentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Announce at start:** "I'm running an attune experiment to settle this by evidence."
Announce at start: "I'm running an attune experiment to settle this by evidence."
A question neither the world nor the user can answer until it is tried: "does the shorter opening actually read better?", "does this voice survive the blog medium?". If the user can answer it directly, it is HUMAN-owned — explore instead. If the web can answer it, it is WORLD-owned — research instead.
When the dispatch plugin is installed, its use-external-agents skill reaches external models as producers and judges — invoke that skill before composing any brief; it defines the router and the task brief contract. Without it, you produce and judge yourself, and the protocol below says how at each step.
${TMPDIR:-/tmp}/attune-experiments/<name>/, each committed to a genuinely different approach (structure, register, length — name each approach before writing). With dispatch installed, widen the set with external producers — one router brief per producer (AGENTS: <agent> pins which model renders; the brief's ## Response section asks for the rendered text verbatim) — and always produce at least one candidate yourself.A.md, B.md, …) in shuffled order (use $RANDOM), stripping every provenance hint from the content. Write the letter-to-producer mapping to mapping.txt; never show it to a judge and never quote it before the ruling.TAGS: auditing, AGENTS: <agent> to pin it), 2–3 different agents in parallel, each brief's ## Response section carrying the verdict contract below as MUST: / MUST NOT: lists — and save each returned verdict verbatim to verdicts/<judge>.md in the experiment directory. Without dispatch, judge the letter-named candidates yourself against the criterion alone: read them in letter order, one fresh pass per candidate, and write each verdict to verdicts/ in the template below before reading on — you produced these candidates, so the verdicts share your biases; say so when you present them.MUST:
MUST NOT:
Required verdict template:
## Ranking
<letters, best to worst>
## Justification
<two sentences against the criterion>
Producers and judges run read-only. When a future experiment requires writing into a repository, work in a detached git worktree, never the repository itself: git -C <repo-dir> worktree add --detach <worktree-path> creates it, the diff collected there is the evidence, merging stays an explicit main-thread step, and git -C <repo-dir> worktree remove <worktree-path> cleans up. With dispatch installed, its use-external-agents skill carries the worktree tooling and the write-isolation rules for external agents.
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.