do-issue-solo

do-issue-solo is a skill for Claude Code from thermiteau/maverick. It costs 29 tokens per session (7,297 once invoked), scanned A, original, Apache-2.0.

A workflow for completing a GitHub issue from start to finish without waiting for routine instructions. GitHub issues are tracked pieces of work, such as bugs or feature requests.

In plain words
What is it for?
It is for autonomously handling a valid GitHub issue while checking the project setup, GitHub App, and required command-line tools first.
Why use it?
It gives the agent an ordered process for checking prerequisites, claiming work safely, implementing the issue, and pausing only when blocked or clarification is needed.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: mentions subagents.

Part of the maverick plugin — 41 skills, 5 agents, 5 hooks shipped together

Good fit It is for autonomously handling a valid GitHub issue while checking the project setup, GitHub App, and required command-line tools first.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/thermiteau/maverick/do-issue-solo
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add thermiteau/maverick --skill do-issue-solo
Clone the repo
git clone --depth 1 https://github.com/thermiteau/maverick

Made for: Claude Code.

Or install maverick, the plugin that ships this one along with the rest of its 41 skills, 5 agents, 5 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for do-issue-solo

README.md
[![agentmods](https://agentmods.dev/badge/skills/thermiteau/maverick/do-issue-solo.svg)](https://agentmods.dev/skills/thermiteau/maverick/do-issue-solo)
Your own site
<a href="https://agentmods.dev/skills/thermiteau/maverick/do-issue-solo"><img src="https://agentmods.dev/badge/skills/thermiteau/maverick/do-issue-solo.svg" alt="Measured on agentmods" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,297 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00029 $0.07297
Opus 5 $0.00015 $0.03648
Sonnet 5 $0.00006 $0.01459
Haiku 4.5 $0.00003 $0.00730

Measured 8d ago against content hash de8871265a0a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

do-issue-solo scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/do-issue-solo/SKILL.md · 588 lines

How it starts

The opening of the file, as written. The whole thing — 588 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Work on GitHub Issue (Autonomous)

Work on GitHub issue $ARGUMENTS autonomously, coordinating safely with any other Maverick instance that might also hold a claim on this issue. Follow every phase in order. Only pause to ask the user when you are blocked or need clarification.

Preflight (mandatory)

Preflight output, captured when this skill was invoked (dynamic-content pilot — the command ran before you read this):

!uv run maverick preflight do-issue-solo 2>&1 && echo PREFLIGHT_OK

  • Ends with PREFLIGHT_OK → prerequisites are met; proceed.

  • Shows an error → halt and report the output verbatim to the user. Do not proceed, do not work around missing prerequisites.

  • Empty, or shows the literal command text (dynamic skill content is disabled via disableSkillShellExecution) → run it manually first and apply the same rules:

    uv run maverick preflight do-issue-solo
    

The check verifies: the project is initialised, the Maverick GitHub App is configured (maverick gh-app status reports configured: true), and required tools (gh, git, uv) are on PATH.

Before You Begin

If $ARGUMENTS is empty or not a valid issue number, ask the user for the issue number before proceeding.

Determine the repo (via gh repo view --json nameWithOwner) — you will pass it to every maverick coord command below.

PR code review runs locally during Phase 9 as the agent-code-reviewer subagent — its binary PASS/FAIL verdict is the gate. Some projects also opt into a CI-side re-run via mav-bp-remote-code-review (independent verification for multi-machine fleets or audit needs); when present it adds a status check the auto-merge in Phase 10 will wait on, but its absence is not a blocker.

Phase 0: Coordination + cold-start

Before any other phase.

  1. Run uv run maverick coord read <repo> $ARGUMENTS and inspect the snapshot. Decide which of the four branches in mav-multi-instance-coordination applies:
    • Blocked (blocked-by:#N label): abort cleanly, report to user.
    • Claimed with live lease: abort cleanly, report holder + expiry.
    • Claimed with stale lease: decide take-over vs defer.
    • Free: proceed to claim.
  2. Claim the issue: uv run maverick coord claim <repo> $ARGUMENTS. The command exits non-zero if the claim is rejected — treat that as abort.
  3. Start the workflow report (writes a run-start row that later report calls inherit maverick_skill from):
    uv run maverick report run-start do-issue-solo --issue $ARGUMENTS --phase claimed
    
    From here, agent-dispatch intervals are recorded automatically by the plugin's Subagent hooks (open on dispatch, closed on return), and invoking a tracked inner skill auto-opens its skill-dispatch interval. Your only bookkeeping obligation is the one-line report end --auto --outcome <…> after each inner skill returns — everything else is hooks. Anything left open is flushed as outcome=unknown by report generate.
  4. Start the heartbeat daemon. It refreshes the lease every HEARTBEAT_INTERVAL_MINUTES minutes for as long as you hold the claim and exits on its own when the claim is released:
    uv run maverick coord heartbeat-loop <repo> $ARGUMENTS --daemonize
    
    Never background the foreground loop with & — a process backgrounded from a tool shell dies with the shell or leaks unobservably. Liveness is checked in the task loop with coord heartbeat-status.
  5. Release is handled on every exit path without any action from you: the plugin's SessionEnd hook runs coord release-all when the session ends (normal exit, user interrupt, crash-caught), and lease expiry (10-minute TTL) covers machine death. Your only release obligations are the explicit ones at workflow boundaries: --reason merged after auto-merge lands, --reason ejected on eject. Do not attempt trap-on-exit wrappers — each Bash call is a fresh shell, so a trap cannot survive to session end.
  6. Authorization scopes (only when needed): if the issue explicitly authorizes infrastructure changes — the maverick-authorize-infra label or a Maverick-Authorize: infra line in the issue body — record it so the scope-guard hook permits those edits in autonomous mode:
    uv run maverick coord authorize <repo> $ARGUMENTS infra
    
    If the command exits non-zero, the issue does not authorize the scope: do not make infrastructure changes; note the gap in the solution design instead. Never write .maverick/session-auth.json by any other means — the hook blocks it, and self-granting defeats the authorization model.
  7. Cold-start hydrate per mav-durability-on-gh. The skill is fully resumable — a fresh agent re-entering after a crash, stop, or context-exhaustion must skip phases that already completed rather than re-running them against an in-flight or merged PR (#41). Do not reconstruct the resume position by hand:
    uv run maverick coord resume-point <repo> $ARGUMENTS
    
    The command reads the task-progress marker, finds the PR via the recorded branch, inspects CI and the review verdict, and returns {next, instruction, evidence} — follow the instruction. Also check for an existing worktree under .maverick/worktrees/ before creating one. Each phase below ends with a task-progress set write so re-entry advances one boundary at a time without re-running anything.

Read the full file on GitHub · 588 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 588 lines · 29 tokens per session scan A de8871265a0a

Subscribe to this mod's changes

do-issue-solo is a skill published in the GitHub repository thermiteau/maverick (11 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 29 tokens to every session and 7,297 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.