Catalog

Everything shared, in one place

Skills are playbooks your agent follows (run one with /the-name in Claude Code, $the-name in Codex), tools are runnable scripts, and tutorials are guides. Click anything for what it does, how to use it, and a prompt to adapt it to your stack.

portable works on any stack as-is
adaptable same workflow — your agent swaps the tooling
platform-specific read it for the pattern
Type
Portability
Platform

cleanup

Detect and optionally remove code noise — debug prints, transitional/obvious comments, and commented-out code — across languages. Pairs with smart-commit.

skilladaptablecrossconventions
/cleanup --branch

codex-buddy

Use a second AI agent (Codex) for review, a second opinion, debugging, an audit, or delegated implementation — context-enriched, run non-interactively, and cross-checked rather than trusted blindly. Any repo.

skilladaptablecrossworkflow
/codex-buddy review my changes on this branch

create-branch

Create a git branch from current changes or a short description — infer a type/kebab-name, confirm, then git switch -c (or git worktree add for isolation). Any repo.

skillportablecrossworkflow
/create-branch add rate limiting to the api client

create-issue

Create a well-structured GitHub issue with AI-inferred type, labels, and duplicate detection via gh — on any repo.

skillportablecrossworkflow
/create-issue the favorites list flashes when you filter by date

deepthink

A structured extended-reasoning framework — decompose, explore options, analyze deeply, apply patterns, assess risk, and produce an implementation strategy — for any stack.

skillportablecrossworkflow
/deepthink how should we cache images app-wide without unbounded memory growth?

ensure-tests

Analyze a branch's scope, run the test suite, fix failures to 100% pass, then conservatively annotate the branch plan's test section — on any stack.

skilladaptablecrosstesting
/ensure-tests

finish-branch

Validate a feature branch's readiness (plan %, tests, hygiene), finalize and archive its plan, then create or update a PR against the base branch — on any GitHub repo.

skilladaptablecrossworkflow
/finish-branch

issue-to-branch

Turn a GitHub issue (or a text description) into a branch or isolated worktree with an AI-generated development plan — on any repo.

skillportablecrossworkflow
/issue-to-branch #482

smart-commit

Group uncommitted changes into 2–5 atomic, semantically-prefixed commits by module, present a plan, and commit on approval — never auto-pushes. Any language.

skilladaptablecrossworkflow
/smart-commit

ultrafix

Debug a stubborn bug with isolated git worktrees for parallel hypothesis testing plus structured logging — reproduce, isolate, find root cause, verify a minimal fix, clean up. Any repo.

skilladaptablecrossworkflow
/ultrafix tests flake on ci but pass locally

update-branch-plan

Analyze recent commits and conservatively update a branch plan's checkboxes and phase status — marking tasks complete only at ≥80% confidence. Any repo.

skillportablecrossworkflow
/update-branch-plan

update-from-branch

Sync the current branch from another (usually main) via merge or rebase, auto-stashing dirty work and surfacing conflicts clearly — never discards changes. Any repo.

skillportablecrossworkflow
/update-from-branch main