ivy00johns

60 mods across 1 repository, 11 stars between them.

skill-madness

02

ivy00johns/Skill-Madness

Plugin Claude Code

Contract-first multi-agent orchestrator with 73 skills: a 14-phase orchestrator that authors machine-readable contracts before code, dispatches 10 role agents in parallel with exclusive file ownership, and blocks the merge on a structured QA report. Plus meta-skills, git conventions, and cross-cutting workflow tools…

11 22d ago A tokens not measured original MIT

ivy00johns/Skill-Madness

Instructions file CodexOpenCode

Instructions for ivy00johns/Skill-Madness, covering agents.md, skill creator workspaces, use this, not this and or.

11 22d ago A 505 tokens original MIT

ivy00johns/Skill-Madness

Instructions file

Instructions for ivy00johns/Skill-Madness, covering claude.md, what this is, install / sync, via slash command (recommended) and see skills/workflows/sync-skills/skill.md for details.

11 22d ago A 1,809 tokens original MIT

git-branch-cleanup

05

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Clean up stale and merged git branches — both local and remote. Prunes tracking refs, identifies merged branches safe to delete, flags orphaned branches whose remote is gone, and presents a clear summary before acting. Use this skill whenever the user mentions cleaning up branches, pruning stale branches, deleting old…

11 22d ago A 168 tokens original MIT

git-clean-worktrees

06

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Clean up stale git worktrees whose work is already on the main branch. Worktrees accumulate after branches are merged — they sit around with "modified" files that look like uncommitted work but are actually already on main. This causes confusion ("did I forget to merge this?") and clutters git status. Use this skill…

11 22d ago A 177 tokens original MIT

skill-audit

07

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Scan all skills (or a filtered subset) for consistency, quality issues, gaps, and ownership conflicts in bulk. Use this skill when auditing the full skill ecosystem, running a broad quality scan, checking for ownership overlaps across agents, finding inconsistencies between skills, doing a "health check" on all…

11 22d ago A 110 tokens original MIT

skill-deep-review

08

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Perform a thorough, single-skill deep dive reviewing structure, description quality, instruction clarity, progressive disclosure, anti-patterns, and frontmatter compliance — then run test prompts via /skill-creator to validate triggering and output quality. Use this skill when deeply reviewing one skill, auditing a…

11 22d ago A 124 tokens original MIT

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Consume review reports from skill-deep-review or skill-audit and produce a prioritized, actionable improvement plan with specific edits per skill. Use this skill when you have review feedback to act on, need to plan skill improvements, want to turn audit results into a fix plan, or when someone says "plan the fixes"…

11 22d ago A 111 tokens original MIT

skill-updater

10

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Execute skill improvement plans by making edits to SKILL.md files and references, validating changes, and optionally syncing to global skill locations. Use this skill when implementing planned skill changes, applying fixes from a review, executing an improvement plan, batch-editing skills, or when someone says "apply…

11 22d ago A 107 tokens original MIT

contract-auditor

11

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Orchestrator-dispatched only. Audits implementations against integration contracts (API, data layer, shared types) to find mismatches before integration testing. Static analysis pass — reads code and contracts, never runs the app. Not user-invocable.

11 22d ago A 55 tokens original MIT

contract-author

12

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Generate machine-readable integration contracts (API, data layer, shared types, events) before any implementation begins in a multi-agent build. This is orchestrator Phase 4 — contracts written here BEFORE any implementation agent is spawned. Use when authoring API contracts, OpenAPI specs, AsyncAPI specs, Pydantic…

11 22d ago A 170 tokens original MIT

git-commit

13

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Guide for creating git commits in this repository: conventional commit format, allowed types, and branch naming conventions. Use when staging changes and writing a commit message, creating a branch, or naming a branch. Trigger on: "commit", "create a commit", "git commit", "stage changes", "write a commit message"…

11 22d ago A 111 tokens original MIT

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Clean up everything stale after merges in one pass: local branches fully merged into the default branch, remote-tracking refs whose remote is gone, and worktrees that look "modified" but are already on main. Scans, classifies, presents a clear plan, and only acts on confirmation. Supports --dry-run and --yes. Use…

11 22d ago A 194 tokens original MIT

git-pr-feedback

15

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Fetch, triage, and address PR review comments from GitHub Copilot and human reviewers. Use when the user asks to check PR feedback, review comments, address reviewer suggestions, or fix PR issues. Trigger on: "check PR comments", "what did copilot say", "address PR feedback", "fix review comments", "handle PR…

11 22d ago A 122 tokens original MIT

git-pr

16

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Guide for creating and updating GitHub pull requests in this repository: PR title format, body structure, clean descriptions, and the gh CLI workflow. Use when creating a pull request, writing a PR description, updating a PR, or preparing changes for review. Trigger on: "create a PR", "open a PR", "pull request", "PR…

11 22d ago A 128 tokens original MIT

babysit

17

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Keep one of your open PRs healthy on a schedule: poll for new review activity, auto-address bot/Copilot nits and routine rebases, re-run the project gate, and reconcile the PR thread — looping until the PR has zero blocking findings and is mergeable, with HITL checkpoints on anything irreversible. This is the…

11 22d ago A 233 tokens original MIT

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Build a working mental model of an unfamiliar codebase by looping: fan out read-only subagents to map subsystems, synthesize, find the gaps in your understanding, and repeat until a written architecture summary answers every seed question — each answer citing where in the code it comes from. The deep-research fan-out…

11 22d ago A 205 tokens original MIT

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Drive an implementation until EVERY criterion of an authored contract holds — a Plan-Generate-Evaluate (PGE / GAN-style) loop where the builder implements toward one not-yet-passing criterion and a FRESH-CONTEXT evaluator subagent (contract-auditor, spawned with no Write/Edit tools, default-FAIL) grades all criteria…

11 22d ago A 195 tokens original MIT

coverage-loop

20

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Grow a test suite until a coverage target is met: run coverage, find the lowest-covered meaningful unit, add REAL behavior-checking tests for it, then re-measure the whole report — looping until total (and per-target) coverage is at or above the configured target AND the full suite is green. Reads the target from…

11 22d ago A 194 tokens original MIT

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Keep a project's dependencies healthy on a schedule: audit for known vulnerabilities and over-stale pins, apply ONE safe update (or a vuln fix) per pass, run the full gate to prove the update is non-breaking, and open or update a PR — looping on a sprint cadence with HITL on every major version bump and never…

11 22d ago A 209 tokens original MIT

fix-until-green

22

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Drive a failing build to passing in a disciplined loop: run the project's full gate (tests + lint + typecheck), fix one root cause, re-run the whole gate, and repeat until all three exit clean — with a hard iteration cap, no-progress detection, and a rule against cheating the gate green. Use when tests/CI are red and…

11 22d ago A 197 tokens original MIT

loop-controller

23

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Wrap any task in a verifiable stop condition plus a mandatory guardrail stack so an autonomous loop converges instead of thrashing or burning the budget — the foundation harness every loop skill composes on. Use whenever you want Claude to keep working until something is provably true (tests pass, coverage hits a…

11 22d ago A 185 tokens original MIT

migration-loop

24

ivy00johns/Skill-Madness

Skill Claude CodeCodex

Migrate a known, enumerated set of targets one at a time until EVERY one is done — one iteration picks the next un-migrated target from a checklist, transforms it, verifies behaviour-identical (the suite stays green), commits a checkpoint, and marks it migrated, with a hard exit that BOTH the suite is green AND a grep…

11 22d ago A 207 tokens original MIT