Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Summary

AI coding lifecycle: triage-issue → investigate-issue → self-review → pr-review → pr-babysit

Install to Claude Code

/plugin install cadence@cadence

Run in Claude Code. Add the marketplace first with /plugin marketplace add kirkchen/cadence if you haven't already.

README.md

Cadence

AI coding lifecycle skills for Claude Code and Codex. Cover the path from issue intake to merged PR:

triage-issue → investigate-issue → self-review → pr-review → pr-babysit

The Problem

You: "fixed it, ready to push"
Agent: *pushes, opens PR with author-bias review, ignores half of reviewer feedback,
        PR sits open for days while CI flakes*

…and upstream:

You: "triage the backlog"
Agent: *labels everything as medium, comments are noise, two reviewers re-do the work*

With Cadence

You: /cadence:triage-issue #234
Cadence: *reads body, decides type + priority, comments only when there's meta worth recording*

You: /cadence:investigate-issue #234
Cadence: *verifies file:line at HEAD, probes blast radius, posts verdict + fix direction*

You: /cadence:self-review
Cadence: *codex cross-model loop — finds 3 issues before you push*
         → fix → re-review → green

You: gh pr create ... && /cadence:pr-review
Cadence: *dispatches 4 fresh role subagents in parallel*
         → security-reviewer / staff-engineer / sdet / spec-auditor
         → posts sticky summary + inline comments

You: /cadence:pr-babysit
Cadence: *watches CI, triages reviewer feedback into Valid/Discuss/Out-of-scope,
          addresses valid items with atomic commits, replies to threads,
          waits until green — reports ready-to-merge*

Skills

| Command | Stage | What it does | |---|---|---| | /cadence:triage-issue | intake | Assigns type/ + priority/ labels, drops status/needs-triage, leaves a meta comment only when there's judgment worth recording. One issue per invocation. | | /cadence:investigate-issue | intake (deep) | Verifies the issue's claims against HEAD (file:line still valid? still reproducing?), probes blast radius, and posts a Confirmed / Dismissed / Needs-info verdict + concrete fix direction. | | /cadence:self-review | pre-push | Codex (OpenAI) cross-model review of your branch in an auto-loop. Per-finding fix + re-review until converged. Cross-model so author bias doesn't compound. | | /cadence:pr-review | on PR open | Multi-role subagent dispatch — security, staff-engineer, sdet, spec-auditor — runs against the PR diff in isolated fresh contexts. Posts sticky summary + inline comments. Has a HARD-GATE preventing main-session self-review (author bias). | | /cadence:pr-babysit | until merge | Watches PR/MR until CI is green and every valid reviewer feedback is addressed. Triages comments, replies inline, escalates 3-round bot deadlocks. Reports ready-to-merge (never auto-merges). |

Why these skills, separately

Each skill targets a distinct stage with its own bias profile and output target:

  • triage-issue is single-issue and minimal — backlog walkthroughs are the caller's job, not a skill responsibility. Output is gh labels + an optional meta comment.
  • investigate-issue burns 30 min – hours per issue to verify claims against actual code before they get picked up. Output is a verdict comment with fix direction.
  • self-review is cross-model (codex grades Claude's diff) because same-model self-review collapses. Output is back-to-you.
  • pr-review is multi-role and main-session-isolated because PR review needs perspective diversity and a clean context. Output is GitHub/GitLab sticky + inline.
  • pr-babysit is sequential and CI-driven because it's a wait-loop, not a review. Output is patches + thread replies.

Trying to fold these into one skill loses either the bias isolation or the workflow fit.

Installation

Claude Code

# Direct (dev):
claude --plugin-dir /path/to/cadence

# Or via marketplace.json in ~/.claude/:
# point ~/.claude/plugins/marketplace.json at this repo

Skills become /cadence:triage-issue, /cadence:investigate-issue, /cadence:self-review, /cadence:pr-review, /cadence:pr-babysit.

Codex CLI

The repo includes .agents/plugins/marketplace.json and plugins/cadence/ overlay — point your Codex marketplace at this repo.

Requirements

  • gh (GitHub) or glab (GitLab) CLI installed
  • codex CLI installed (only for self-review)
  • Project with package.json or Makefile (for test-command detection in self-review)

Repository Layout

cadence/
├── .claude-plugin/plugin.json         # Claude Code plugin manifest
├── .claude-plugin/marketplace.json    # Claude Code marketplace manifest
├── .codex-plugin/plugin.json          # Codex plugin manifest
├── .agents/plugins/marketplace.json   # Codex marketplace manifest
├── plugins/cadence/                   # Codex plugin overlay (symlinks to root)
├── skills/
│   ├── triage-issue/SKILL.md
│   ├── investigate-issue/SKILL.md
│   ├── self-review/SKILL.md
│   ├── pr-review/SKILL.md + 4 role prompts (sdet, security, staff-engineer, spec-auditor)
│   └── pr-babysit/SKILL.md
├── CLAUDE.md                          # AGENTS.md → CLAUDE.md symlink
└── LICENSE                            # MIT

Design Notes

  • Author bias is the core constraint for the review skills. self-review / pr-review / pr-babysit are designed around the research finding that framing a diff as "bug-free" produces the strongest detection drop among framing conditions tested across 6 LLMs (Mitropoulos et al., arXiv:2603.18740). The skills are structured so the entity finding the issue is never the entity that wrote the code.
  • Cross-model + multi-role + main-session-isolation are three independent mitigations applied where each is the cheapest fix.
  • pr-review has a mode: local for callers (supervisor sessions doing pre-PR critique) that want findings JSON instead of GitHub posts. Same dispatch, different output target.
  • The intake skills (triage-issue / investigate-issue) are single-issue by design. Batch / backlog work is the caller's responsibility — the skill stays a pure unit, the caller loops.

License

MIT

Related plugins

Browse all →