CommunitySchreiben & Editierengithub.com

Arasz/ai-badger

Source-of-truth marketplace + project scaffolder for custom Claude/agent skills, personas, and instructions. Organized as {stack|common}/{feature}; welcome-ai-badger scaffolds a repo, feed-badger contributes back.

Was ist ai-badger?

ai-badger is a Claude Code agent skill that source-of-truth marketplace + project scaffolder for custom Claude/agent skills, personas, and instructions. Organized as {stack|common}/{feature}; welcome-ai-badger scaffolds a repo, feed-badger contributes back.

Funktioniert mitClaude Code~Codex CLI~Cursor
npx skills add Arasz/ai-badger

Installed? Explore more Schreiben & Editieren skills: steipete/notion, affaan-m/seo, affaan-m/brand-voice · View all 6 →

In Ihrer bevorzugten KI fragen

Öffnet einen neuen Chat, in dem dieser Agent-Skill bereits geladen ist.

Dokumentation

task orchestration skill

Runs one backlog task as a separated, token-tracked unit of work. High-leverage thinking — planning and the final quality gate — is delegated to a high-reasoning model; implementation models do the hands-on work; the orchestrating session integrates and tracks everything so a dead session can be resumed.

All project specifics come from .ai-badger/config.json — never hardcode a build command, a persona name, or a repository. Tracking data lives in .ai-badger/task-tracking/ (gitignored). Scripts live in this skill's scripts/.

Config contract (read first)

From .ai-badger/config.json:

  • commands.build / commands.test / commands.lint — the verification commands for Phase 3.
  • personaRouting — maps kinds of work to the scaffolded personas; drives Phase 2 dispatch.
  • sourceControl — platform + repo/project URLs; gates the source-control extension (PR flow, review loop, issue/board integration). If sourceControl.platform == "github" and a repoUrl is present, this skill's extensions/github/ fragment is active — follow it for the PR/review-loop steps below. Otherwise commit locally and integrate per your platform.

Model & delegation policy

Spend high-reasoning capacity on plans, decomposition, and review — not on typing implementations. The orchestrating session obtains that reasoning by explicit delegation, not by assuming its own model.

  • Delegate to a high-reasoning agent (planning/decomposition in Phase 1; the final correctness + architecture gate in Phase 3). Prefix such calls' description to keep the model visible at a glance.
  • Delegate to implementation agents matched to the work, using the personas from config.json's personaRouting. TDD is mandatory for code.
  • Delegate trivial mechanical work (doc/comment updates, rote refactors, test backfills) to a cheap model.
  • The orchestrating session does directly: fetch the task, read docs, record token usage, the lightweight per-subagent completion check, run the configured build/test, and tiny surgical fixes found during the quality gate.

Subagent prompts must be self-contained: scope, acceptance criteria, files/docs to read, the project's TDD + code-style rules (point them at CLAUDE.md), and what to report back. Run independent subagents in parallel.

Known display artifact — do not misdiagnose as a dispatch bug: the live agent panel's per-task model field (and any custom status line reading it) can transiently show a stale value — e.g. showing the parent session's model for a subagent that was actually dispatched with a different model override. Root cause: the panel field comes from an async live-status feed, a separate code path from the resolvedModel Claude Code writes into the session transcript's tool-result metadata at call completion. The transcript is ground truth; the panel is a snapshot that can lag it. If a dispatch's actual model is ever in doubt, grep the session's .jsonl transcript for the Agent tool_use whose description matches, and check its paired tool_result's toolUseResult.resolvedModel rather than trusting the panel. Don't spend time re-investigating this as a dispatch-code problem unless the transcript itself shows the wrong resolvedModel.

Cache-aware dispatch: every agent's request prefix includes your project's always-loaded context (CLAUDE.md/AGENTS.md-equivalent instructions, .ai-badger/state.json, and any other files your project loads on every turn) — keep them byte-stable within a task (never rewrite them mid-task; the finish protocol writes state between tasks) so they serve as cache reads at roughly a tenth of the cost instead of a fresh write. Subagent caches are independent cold starts on a ~5-minute TTL, so: prefer one multi-turn subagent over many one-shot dispatches for a cluster of related steps (amortises the cold start), and use /rewind rather than /compact to backtrack within a task (rewind reuses the cached prefix; compact pays for a fresh summary write). Compact only at task boundaries (Phase 0). token-usage.json records a main-session cacheEfficiency (cache_read ÷ (cache_read + cache_creation)); a low ratio means the prefix is churning. Per-subagent cache split isn't available — the completion notification exposes only total_tokens.

If you cannot spawn subagents (you are running as a subagent yourself, or the Agent tool is unavailable), do the work directly in-session at whatever model is available — the workflow's tracking and finish protocol still apply, but note in your summary that planning/review ran at reduced rigor since high-reasoning delegation wasn't possible.

Phase 0 — Context hygiene

  1. python3 scripts/task_tracker.py status. If a previous task is unfinished, finish or park it.
  2. Confirm .ai-badger/state.json reflects the last finished task; repair if not.
  3. If this session carries heavy history, tell the user to /compact (or start fresh) and re-invoke /task <id> on a clean context, then stop — unless autonomous.

Phase 1 — Start

  1. Resolve the task (an issue URL, or freeform text used as scope/title; cross-check the project board via the source-control extension if active). Read the referenced docs.
  2. Register: python3 scripts/task_tracker.py start <taskId> --title "<title>" --branch task/<taskId>-<slug>.
  3. Ask the user to rename the session to match the task (skip if autonomous).
  4. Create/switch to the task branch.
  5. Plan: delegate decomposition to a high-reasoning agent (the architect persona), feeding it the task body and doc excerpts. Use its plan to drive Phase 2.

Phase 2 — Execute

  1. Dispatch implementation subagents per personaRouting. Instruct every code subagent to write the failing test first (TDD).
  2. Record each subagent's total_tokens on completion: python3 scripts/task_tracker.py subagent <taskId> <total_tokens> --description "<what it did>".
  3. Review each result at the seams (matches plan? acceptance criteria?). Send follow-ups back rather than rewriting, unless the fix is a few lines.
  4. Commit and push per work package (small commits). If the source-control extension is active, open a draft PR early per extensions/github/.

Phase 3 — Quality gate

Run the configured commands.build and commands.test yourself and capture output. Then delegate a review to a high-reasoning agent (the code-reviewer persona) with the diff, acceptance criteria, relevant architecture docs, and the build/test output. Ask it to judge implementation correctness (logic, edge cases, test honesty) and architecture (layer purity, consistency with docs). Fix findings (trivial yourself, substantial via a subagent), re-run build/test, then proceed.

Phase 4 — Finish protocol

  1. If the source-control extension is active, follow extensions/github/ for PR-ready, the review-round loop, and squash-merge. Otherwise integrate per your platform.
  2. Update state files: prepend the finished task's lean entry to .ai-badger/state.json's completedTasks, refresh next/lastUpdated; write verbose notes/decisions to the project's notes file.
  3. Compaction check on CLAUDE.md if the project tracks one.
  4. Close tracking: python3 scripts/task_tracker.py finish <taskId>.
  5. Ask the user to grade the skill 0–5: python3 scripts/task_tracker.py grade <taskId> <0-5> (skip/leave unset if autonomous).
  6. Report the task's token cost and recommend /compact or a fresh session before the next task — this is the default ending. Authorized auto-continue (alternative path, only when an observable condition holds: the auto-wm skill's autonomic/partner mode is active, or the user's original invocation explicitly said to continue to the next task): after Phase 5 completes, compact per Phase 0 guidance, read the next task from .ai-badger/state.json's next field (or the next unclaimed item on your configured backlog source), and invoke this skill again for that task. If neither condition holds and no user is available, start a fresh session and tell the user to re-invoke the skill so the next task starts on a clean context.

Phase 5 — Documentation-gap audit

After integration, delegate a doc-audit agent (worktree-isolated) to check CLAUDE.md and the project's docs against the merged code, fix small drift, and report gaps needing a decision.

Recovery

task_tracker.py records each task's session id and resume command; a resume cron watches for stalled sessions. If you wake in a resumed session mid-task, run python3 scripts/task_tracker.py reattach <taskId> first, then continue.

Extensions: source-control PR/issue/review-loop behavior is defined in extensions/<name>/ and is embedded by welcome-ai-badger only when config.json supplies the required data. The base skill above stays platform- and stack-neutral.

Verwandte Skills

steipete/notion

Notion CLI/API for pages, Markdown content, data sources, files, comments, search, Workers, and raw API calls.

community

affaan-m/seo

Audit, plan, and implement SEO improvements across technical SEO, on-page optimization, structured data, Core Web Vitals, and content strategy. Use when the user wants better search visibility, SEO remediation, schema markup, sitemap/robots work, or keyword mapping.

community

affaan-m/brand-voice

Build a source-derived writing style profile from real posts, essays, launch notes, docs, or site copy, then reuse that profile across content, outreach, and social workflows. Use when the user wants voice consistency without generic AI writing tropes.

community

affaan-m/crosspost

Multi-platform content distribution across X, LinkedIn, Threads, and Bluesky. Adapts content per platform using content-engine patterns. Never posts identical content cross-platform. Use when the user wants to distribute content across social platforms.

community

affaan-m/x-api

X/Twitter API integration for posting tweets, threads, reading timelines, search, and analytics. Covers OAuth auth patterns, rate limits, and platform-native content posting. Use when the user wants to interact with X programmatically.

community

affaan-m/content-engine

Create platform-native content systems for X, LinkedIn, TikTok, YouTube, newsletters, and repurposed multi-platform campaigns. Use when the user wants social posts, threads, scripts, content calendars, or one source asset adapted cleanly across platforms.

community