1---2name: prompts-catalog-index3description: Complete A-to-Z index of every plugin in the hub with a one-line when-to-use hint, grouped by area. Use to locate the right skill fast when no cookbook track matches, or to browse the full catalog without reading raw descriptions.4---56# Complete catalog index (169 plugins)78One line per plugin: **when to use it**. Grouped by area; tracks with a full recipe are linked from the [root SKILL.md](../../SKILL.md). Hub-wide rule: `X` × `X-advisor/-watch/-runner/-guardian/-detector` pairs = one-shot × continuous/CI — pick by objective.910## Understand & learn1112| Plugin | When to use |13|---|---|14| `architecture-deepener` | shallow/confusing codebase: module map + opportunities to deepen design |15| `llm-wiki-curator` | generate a navigable code wiki for onboarding |16| `teaching` | learning plan with milestones and checkpoints |17| `teaching-workspace` | structured study environment to practice |18| `learning-output-style` | responses in a didactic format |19| `doc-driven-grilling` | grill a plan/spec and generate ADRs/glossary before coding |20| `task-interrogator` | grill a plan and turn it into tasks with acceptance criteria |21| `session-handoff` | end of a long session: handoff so the next one starts without re-exploring |22| `continual-learning` | persist lessons across sessions |23| `bug-diagnostics` | understand broken behavior: repro → hypotheses → fix |24| `code-smell` | one-shot code-smell analysis |25| `code-smell-detector` | continuous code-smell enforcement in CI |2627## Loops & QA2829| Plugin | When to use |30|---|---|31| `api-test-loop` | API validation loop via CURL with findings.md |32| `chrome-qa-loop` | exploratory QA of a live web app, one report per finding |33| `computer-use-swiftui-loop` | visual loop for macOS/SwiftUI apps (Computer Use, Codex app) |34| `error-fixer-loop` | build/test failure: investigate → fix → anti-regression rule |35| `karpathy-loop` | autonomous cycles to optimize a metric |36| `webapp-testing` | one-shot Playwright toolkit: screenshots, logs, interaction |37| `playwright` | scripted E2E |38| `playwright-interactive` | interactive/assisted browser session |39| `verification-before-completion` | "is this actually done?" gate before declaring complete |40| `agentic-value-loops` | recurring value loops: feature, docs, maintenance/security, AI tuning |4142## Karpathy method4344| Plugin | When to use |45|---|---|46| `karpathy-guidelines` | behavioral principles on any non-trivial code |47| `karpathy-recipe` | staged recipe for medium/large work |4849## Engineering & security5051| Plugin | When to use |52|---|---|53| `code-review-expert` | structured review of a diff/PR |54| `pr-review-canvas` | render review findings as inline comments |55| `commit-quality` | semantic commit hygiene |56| `async-patterns` | audit races, N+1 async, unbounded parallelism |57| `async-advisor` | CI/PR gate for async patterns |58| `bundle-analyzer` | investigate a heavy bundle now |59| `bundle-watch` | CI gate for bundle size |60| `db-advisor` | continuous query monitoring: N+1 detection, repeated-query tracking |61| `db-index-advisor` | index for a specific slow query |62| `load-test` | design a load test/SLO |63| `load-test-runner` | run/schedule recurring load tests |64| `chaos-test` | design failure experiments |65| `chaos-runner` | orchestrate/schedule chaos with a resilience score |66| `security-best-practices` | secure-coding practice checklist |67| `security-guidance` | contextual security guidance |68| `security-ownership-map` | map owners per security area |69| `security-threat-model` | STRIDE for a new feature |70| `i18n-audit` | find missing/orphaned/hardcoded keys |71| `i18n-sync` | sync structure across locales |72| `feature-flag` | implement/use a one-shot flag |73| `feature-flags` | ongoing flag management |74| `feature-purge` | remove an entire feature with no dead code left |75| `finishing-a-development-branch` | close a branch with quality before merge |76| `git-expert` | semantic commits, bisect, git workflow |77| `gh-expert` | PRs, issues, and automation via the gh CLI |78| `incident-center` | incident logging and postmortem |79| `incident-runbook` | guided response during an incident |8081## APIs & CLIs8283| Plugin | When to use |84|---|---|85| `openapi-generate` | generate an OpenAPI spec from code (one-shot) |86| `openapi-hub` | ongoing management of multiple specs |87| `postman-generator` | Postman collection from a spec/routes |88| `cli-creator` | composable CLI from an API (Codex-focused) |89| `cli-generator` | full Bun CLI generated from a SPEC |90| `cli-for-agent` | rubric for a CLI operable by agents |91| `cli-wrapper` | wrap an external CLI with a digest and token savings |92| `agent-sdk-dev` | build agents on the Claude Agent SDK |9394## Frontend & design9596| Plugin | When to use |97|---|---|98| `frontend-design` | intentional visual direction for new UI |99| `design` | brand asset production: logos, CIP, banners, icons |100| `design-taste-frontend` | good-taste baseline when no aesthetic is chosen yet |101| `ui-ux-pro-max` | data base: styles, palettes, fonts, per-stack guidelines |102| `web-design-guidelines` | web guidelines checklist |103| `a11y-audit` | one-shot WCAG audit |104| `a11y-guardian` | continuous a11y gate in PR/CI |105| `minimalist-ui` | minimalist aesthetic (exclusive) |106| `industrial-brutalist-ui` | brutalist aesthetic (exclusive) |107| `high-end-visual-design` | premium aesthetic (exclusive) |108| `emil-design-eng` | design-engineer aesthetic (exclusive) |109| `image-to-code` | screenshot/mockup → component |110| `redesign-existing-projects` | new look preserving content/flow |111| `imagegen-frontend-web` | generate web visual reference |112| `imagegen-frontend-mobile` | generate mobile visual reference |113| `scroll-world` | scrollytelling experience |114115## Vercel & React116117| Plugin | When to use |118|---|---|119| `vercel-react-best-practices` | React/Next patterns: components, fetching, rendering |120| `vercel-optimize` | Core Web Vitals, caching, images/fonts |121| `vercel-composition-patterns` | kill prop-drilling/god components via composition |122| `vercel-react-view-transitions` | page/element transitions |123| `vercel-react-native-skills` | RN/Expo performance: lists, animations, native |124| `vercel-cli-with-tokens` | token-authenticated Vercel CLI (non-interactive) |125| `deploy-to-vercel` | publish preview/production |126127## Mobile & release128129| Plugin | When to use |130|---|---|131| `apple-store-release-agent` | auditable go/no-go for an iOS release |132| `google-play-release-agent` | auditable go/no-go for an Android release |133| `app-store-connect-api` | App Store Connect automation: TestFlight, IAP, reports |134| `google-play-developer-api` | Play Console automation: tracks, rollout |135| `aso` | optimize store listings |136137## Data & backend138139| Plugin | When to use |140|---|---|141| `supabase` | operate Supabase: schema, RLS, functions |142| `supabase-postgres-best-practices` | correct Postgres modeling and indexes |143| `firebase-expert` | Firestore/Auth/Functions/Hosting |144145## Knowledge & Notion146147| Plugin | When to use |148|---|---|149| `notion-knowledge-capture` | chat decisions → traceable Notion pages |150| `notion-meeting-intelligence` | meeting notes → owned actions |151| `notion-research-documentation` | research with an auditable source trail |152| `notion-spec-to-implementation` | Notion spec → implementation plan |153154## Product & growth155156| Plugin | When to use |157|---|---|158| `product-marketing` | positioning and key messages |159| `pricing` | tiers, anchors, and pricing strategy |160| `paywalls` | in-app paywall at value moments |161| `offers` | bonuses, guarantee, value framing |162| `onboarding` | from signup to aha-moment |163| `signup` | a signup flow that converts |164| `launch` | launch timeline and execution |165| `churn-prevention` | cancel flow, save offers, dunning, win-back |166| `analytics` | tracking plan, GA4, events, attribution |167| `free-tools` | a free tool as an acquisition engine |168| `lead-magnets` | lead-capture magnets |169| `referrals` | referral program |170| `popups` | conversion popups without annoying users |171| `revops` | revenue operations: funnel, CRM, handoffs |172| `prospecting` | outbound prospecting |173| `sales-enablement` | material and talking points for sales |174175## Marketing & content176177| Plugin | When to use |178|---|---|179| `copywriting` | write persuasive copy from scratch |180| `copy-editing` | edit/sharpen existing copy |181| `writing-guidelines` | clear-writing standard |182| `marketing-psychology` | biases and behavior applied ethically |183| `marketing-plan` | full marketing plan |184| `marketing-ideas` | generate new ideas/angles |185| `marketing-council` | panel of marketing perspectives |186| `marketing-loops` | recurring/scheduled marketing workflows (cadence or trigger) |187| `content-strategy` | content strategy and calendar |188| `emails` | email sequences and campaigns |189| `sms` | SMS campaigns |190| `social` | per-network distribution and formats |191| `ads` | paid media: campaign, targeting, optimization |192| `brand` | voice, identity, and brand consistency |193| `brandkit` | premium brand-guidelines boards |194| `seo-audit` | technical + on-page SEO audit |195| `ai-seo` | get cited by LLMs: AEO/GEO, llms.txt |196| `programmatic-seo` | SEO pages at programmatic scale |197| `schema` | structured data (JSON-LD) |198| `site-architecture` | site architecture for SEO/navigation |199| `competitors` | broad competitive analysis |200| `competitor-profiling` | deep profile of one competitor |201| `co-marketing` | marketing partnerships |202| `community-marketing` | grow via community |203| `influencer-marketing` | creator campaigns |204| `public-relations` | PR and press |205| `video` | video script and strategy |206| `image` | one-off image generation/editing |207| `imagegen` | general-purpose image generation (see the frontend variants) |208209## Meta-harness & tokens210211| Plugin | When to use |212|---|---|213| `senior-prompt-engineer` | refine a request into a definitive prompt + canonical EXEC-MAP (stage-0) |214| `skills-selector` | consume EXEC-MAP and activate the smallest valid skill set (stage-1) |215| `smart-dispatch` | route worker/tier/effort with calibrated fail-open and validation (stage-2) |216| `smart-sub-agents` | pin portable harness/provider/model/effort routes and separate provider/router fallbacks |217| `skill-creator` | guided creation of a new skill |218| `skill-authoring` | best practices for writing a skill |219| `skill-installer` | install external skills |220| `create-plugin` | plugin generator (pick ONE generator) |221| `plugin-creator` | plugin generator (pick ONE generator) |222| `plugin-generator` | plugin generator (pick ONE generator) |223| `hookify` | "whenever X, do Y" automations via hooks |224| `orchestrate` | multi-agent fan-out with a final integration pass |225| `subagent-driven-development` | subagent-driven development |226| `ai-workspace-orchestrator` | build an agent workspace with contract + review |227| `opencode-subagent` | delegate to OpenCode |228| `migrate-to-codex` | port skills/flows to Codex |229| `caveman` | response compression (lite/full/ultra) |230| `token-saver` | cut the biggest context consumers |231| `typed-decision-engineering` | model-agnostic typed decisions, uncertainty routing, and honest token/cost comparison |232| `skills-cookbook` | this cookbook: recipes, combos, and anti-patterns |233234## Fun & experiments235236| Plugin | When to use |237|---|---|238| `hatch-pet` | generate/repair a pet spritesheet (Codex) from art/image |239| `spotify-squad` | squad + Spotify experience |