craft:adhoc
Provides a streamlined path for making small, urgent changes to existing codebases.
Install
mkdir -p .claude/skills/craft-adhoc && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/19539" && unzip -o skill.zip -d .claude/skills/craft-adhoc && rm skill.zipInstalls to .claude/skills/craft-adhoc
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Adhoc workflow for small targeted changes to existing behavior or appearance, without the full story ceremony. Use when the orchestrator encounters a bug with a clear root cause and surgical solution, OR a small enhancement to something already built (a different icon, wording, spacing, color). Triggers on: 'fix this', 'this is broken', 'the alignment is off', 'that button doesn't work', 'quick fix', 'patch this', 'tweak this', 'change the icon', 'adjust the wording', post-story corrections, or any situation where the write gate blocks a small targeted change. Acts NOW - deferred work belongs in the notebook. Do NOT use for new features, design exploration, or changes requiring creative spark.Key capabilities
- →Classify tasks as either a fix or a tweak
- →Open and close a project-wide write gate
- →Create task pairs to track work progress
- →Stage specific files for commit based on changes
- →Check for existing todo items to satisfy
How it works
The skill classifies the request as a fix or a tweak, opens a write gate, executes the corresponding reference flow, and commits the changes.
Inputs & outputs
When to use craft:adhoc
- →Fix a UI alignment issue
- →Change an icon or button wording
- →Patch a simple bug with a known fix
- →Perform small post-story corrections
About this skill
Adhoc
You are the orchestrator making a small targeted change. No implementer agent, no chunks, no story ceremony. Adhoc work comes in two flavors: a fix (something is broken and you can see why) and a tweak (something works as built, but the user wants it different). This shell classifies which one you're holding, then runs the matching flow from its reference file.
Why This Exists
The full story ceremony is right for features and complex work. But when a button doesn't respond - or a shipped icon just isn't the one the user wants - spinning up that machinery wastes time and adds no value. Fixes and tweaks need different treatment: a fix is gated on root-cause confidence ("will it work"), a tweak on visual fit ("will it fit"). Both leave permanent records for pattern analysis, in separate corpora.
Step 1: Guard Rails
Active story check: If CURRENT_STORY is set in .global-state, warn: "There's an active story ([name]). Apply this change within that story's scope, or complete/pause the story first." Do not set CRAFT_WRITE_ENABLED if it's already set by a story - that would create overlapping write sessions.
No new features: Adhoc work changes something that already exists. If the solution adds something that wasn't there before (a new component, a new API endpoint, a new element on the page), it's a story.
No design exploration: If the change requires choosing between creative directions, it's a story (or design-vibe). Adhoc executes a known intent.
Step 2: Classify - Fix or Tweak
Apply the tie-breaker:
- Fix: the change restores something that used to work, or makes behavior match a stated spec. There is a symptom and a root cause. ("The button doesn't respond." "Font weights render wrong.")
- Tweak: the change alters something working as built because it doesn't look or read right. Nothing is broken; taste or intent changed. ("I want a different icon." "That heading is too loud.")
- Ambiguous from the words alone ("the icon looks wrong", "this card looks bad"): look before asking. Screenshot or inspect the target first - broken-in-evidence (clipped, overflowing, misaligned, regressed) classifies as a fix; renders-as-built-but-displeasing classifies as a tweak. Ask the user only if the evidence doesn't settle it. Never silently pick a lane on a guess. Keep the shot: it becomes the fix path's symptom evidence or the tweak path's before-shot.
Step 3: Open the Gate
# Open the write gate
${CLAUDE_PLUGIN_ROOT}/hooks/scripts/update-global-state.sh CRAFT_WRITE_ENABLED "true" "${CRAFT_PROJECT_ROOT:-.}"
# Safety marker - session-start.sh clears orphans
echo "$(date -u +%Y-%m-%dT%H:%M:%S)" > "${CRAFT_PROJECT_ROOT:-.}/.craft/.active-fix"
Create the close-obligation task pair so the open gate stays visible even if the conversation drifts:
- TaskCreate - "Adhoc [fix|tweak]: [brief description]" - set
in_progress. - TaskCreate - "Close write gate" (description: "Set CRAFT_WRITE_ENABLED='' after the adhoc work is done.") - set
addBlockedByto the work task's ID.
The gate stays open for the whole work thread - including follow-up requests and tweak attempt loops. The pending "Close write gate" task is the closure obligation.
Step 4: Run the Flow
Read the matching reference file and execute it inline (never via the Skill tool):
- Fix -> Read
${CLAUDE_PLUGIN_ROOT}/skills/adhoc/references/fix.md - Tweak -> Read
${CLAUDE_PLUGIN_ROOT}/skills/adhoc/references/tweak.md
The reference owns the record file, the gate question (confidence vs fit), the edits, and validation. It hands back here for each commit.
Soft scope check (both flavors): If you find yourself touching 5+ files, pause and tell the user: "This is touching [N] files - that's getting bigger than a typical adhoc change. Want me to continue or create a story?" Let them decide.
Step 5: Commit
Runs after each validated set of edits (a fix's single pass, or each tweak attempt). Stage ONLY the files the change touched - never the whole tree. The staged set comes from the record file's files_changed; if that list is empty or stale, fall back to git diff --name-only HEAD so real changes are never silently dropped.
cd "${CRAFT_PROJECT_ROOT:-.}"
# Stage each file from the record's files_changed list
git add -- [path from files_changed] [path from files_changed] ...
# Fallback ONLY if files_changed is empty or 0: stage the tracked changes
# git diff --name-only HEAD | while IFS= read -r f; do git add -- "$f"; done
git diff --cached --quiet || git commit -m "fix: [short description]" --no-verify
Do NOT use git add -A or git add . - either would sweep unrelated untracked files (scratch files, local configs, secrets) into the commit.
Commit message prefix: fix: for fixes, tweak: for tweaks. Example: tweak: settings icon swapped to hammer, matching toolbar stroke weight.
Step 6: Close the Gate
At thread end - the fix validated, or the tweak record reached accepted/abandoned/escalated, or the user has visibly moved on:
# Close the write gate
${CLAUDE_PLUGIN_ROOT}/hooks/scripts/update-global-state.sh CRAFT_WRITE_ENABLED "" "${CRAFT_PROJECT_ROOT:-.}"
# Remove safety marker
rm -f "${CRAFT_PROJECT_ROOT:-.}/.craft/.active-fix"
Then complete both tasks (work task, then "Close write gate").
A tweak record left status: open does NOT keep the gate open - the record's openness is bookkeeping in .craft/tweaks/; the gate closes with the thread. Cross-session state lives ONLY in the record.
Todo Satisfaction Detection
Adhoc work sometimes does exactly what an open notebook todo asked for - and today nobody notices, so the todo stays open forever. This section defines the shared detection mechanism ONCE; both flavor references point here and own only their consent surface (fix.md Step 7, tweak.md Step 2 + Step 3).
When it runs: at record-write time, on every fix and every tweak. Always-on - never judgment-gated, and never a codebase scan. One cheap call:
bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/notebook-list.sh todos
The match is a semantic content judgment, not a string match: does the work this record describes satisfy what the todo asks for? It is the same read the notebook's graduate/done flows already make (commands/craft-notebook.md, Lifecycle Trigger Framework). Judge the record's subject - a fix's symptom/root cause, a tweak's request/surface - against each open todo's PREVIEW.
Named-referent discipline, by match arity (ported from craft-notebook.md; the silent-close prohibition carries over unchanged):
- Zero matches: say nothing, stamp the receipt (below), continue the flow. This is the common case and it adds zero friction.
- Single match: name the todo by slug in the consent surface. Never silent-close.
- Multiple plausible matches: fire a disambiguation AskUserQuestion FIRST ("Which todo does this satisfy?", options labeled by slug + date), then proceed with the picked one. One todo per record, by design - disambiguation resolves to ONE; a second genuinely-satisfied todo is a separate manual close, never an implicit one.
The close call (only after the flavor's consent surface says yes):
bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/notebook-done.sh "<todo-file>" "<record-name>"
<todo-file> is the FILE the list emitted for the matched todo; <record-name> is this record's name: frontmatter value. It lands in the todo's graduated_to: - the same generic artifact ref the notebook graduate flow writes.
The receipt - stamped on EVERY run: write satisfied_todo: into the record's frontmatter at the beat, every time it runs:
satisfied_todo: <todo-slug>when a todo was closedsatisfied_todo: none-matchedwhen the beat ran and nothing closed (zero matches, declined consent, or abandoned disambiguation)
A record whose satisfied_todo: is missing or empty means the beat never fired - an auditable skip, not a valid state. (Mirrors the mockup record's stamp-every-beat schema.)
When not to use it
- →New features
- →Design exploration
- →Changes requiring creative spark
Limitations
- →Touching 5 or more files requires pausing to consult the user
- →No support for new components or API endpoints
How it compares
It bypasses the full story ceremony for small, surgical changes by using a dedicated shell to manage state and validation.
Compared to similar skills
craft:adhoc side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| craft:adhoc (this skill) | 0 | 11d | Review | Intermediate |
| python-testing-patterns | 77 | 2mo | Review | Intermediate |
| error-handling-patterns | 35 | 2mo | No flags | Intermediate |
| codex-claude-loop | 13 | 9mo | Review | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
python-testing-patterns
wshobson
Implement comprehensive testing strategies with pytest, fixtures, mocking, and test-driven development. Use when writing Python tests, setting up test suites, or implementing testing best practices.
error-handling-patterns
wshobson
Master error handling patterns across languages including exceptions, Result types, error propagation, and graceful degradation to build resilient applications. Use when implementing error handling, designing APIs, or improving application reliability.
codex-claude-loop
bear2u
Orchestrates a dual-AI engineering loop where Claude Code plans and implements, while Codex validates and reviews, with continuous feedback for optimal code quality
serena
massgen
This skill provides symbol-level code understanding and navigation using Language Server Protocol (LSP). Enables IDE-like capabilities for finding symbols, tracking references, and making precise code edits at the symbol level.
javascript-mastery
davila7
Comprehensive JavaScript reference covering 33+ essential concepts every developer should know. From fundamentals like primitives and closures to advanced patterns like async/await and functional programming. Use when explaining JS concepts, debugging JavaScript issues, or teaching JavaScript fundamentals.
find-bugs
davila7
Find bugs, security vulnerabilities, and code quality issues in local branch changes. Use when asked to review changes, find bugs, security review, or audit code on the current branch.