iampawan/Manifest

An agentic plugin that takes a PRD ("contract") through the full lifecycle — author → verify → implement → ship → land — with quality gates that won't let an under-specified spec progress.

5Stars on the repository
46Mods indexed here, across every type
yesterdayLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

bug-triage

01

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Scan Sentry, support tickets, and app store reviews for new bug clusters; deduplicate against existing tickets; file to JIRA with contract back-references; then route each new cluster back into the pipeline (trivial→/fix, substantial→/contract) with propose-by-default guardrails. Invoked nightly by launch-monitor.yml…

not rated 5 yesterday A 82 tokens original MIT

code-review

02

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Review a PR diff for code-level defects — security, correctness, performance, and maintainability — and post a severity-tagged review comment. Runs at the PR stage AFTER implementation, complementing verify-pr (which checks contract/AC conformance). Invoked by /code-review or the pr-verify.yml workflow. Stack-agnostic.

not rated 5 yesterday A 71 tokens original MIT

contract-decompose

03

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Turn a Large contract into a dependency-ordered sequence of Small/Medium child contracts, with risky parts (migrations, auth) flagged as human-led. Use when a contract is sized Large and the user says "decompose", "break this down", "split this epic", or invokes /contract decompose . Large isn't refused — it's made…

not rated 5 yesterday A 79 tokens original MIT

contract-new

04

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Author a new Manifest contract from a rough idea, a one-liner, OR a link to an existing source of truth — JIRA ticket, Linear issue, Notion page, Confluence doc, GitHub issue, or Figma file. Use when the user says "new contract", "draft PRD", "spec out a feature", "pull contract from this JIRA ticket", or invokes…

not rated 5 yesterday A 117 tokens original MIT

contract-pickup

05

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

The canonical Spec entry for Manifest. Dev gives any source — JIRA / Linear / Notion / Confluence / Google Doc / Slack message / GitHub issue / Figma URL, pasted text, an image, or a free-form description — and the agent does the code archaeology, drafts the contract, runs the critics + a Figma design audit inline…

not rated 5 yesterday B 187 tokens original MIT

contract-promote

06

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Freeze a verified contract into an immutable revision and start the SLA timer. Use when the user says "promote contract", "ship this PRD", "start the pipeline", or invokes /contract promote . Creates a JIRA epic, opens a tracking issue, kicks off implementation.

not rated 5 yesterday C 63 tokens original MIT

contract-status

07

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Show the current status of a contract (or all in-flight contracts) right in the CLI — phase, SLA time-left (IST + UTC), readiness, and the next action. Use when the user says "status", "where are we", "what's in flight", "time left", or invokes /status [ ].

not rated 5 yesterday A 71 tokens original MIT

contract-verify

08

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Verify a contract using a two-layer approach — a deterministic code validator first, then LLM judgment critics. Produces a consolidated findings file with a computed readiness verdict. Use when the user says "verify contract", "check this PRD", "run critics", or invokes /contract verify .

not rated 5 yesterday A 65 tokens original MIT

critic-code-context

09

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Dev-side critic for the pickup flow. Surfaces auto-fillable defaults the agent can pull straight from the repo + history (Bucket A in contract-pickup), and code-context dev-decides items where engineering judgment is needed (Bucket B). Different from critic-regression — that one flags risks; this one proposes answers.…

not rated 5 yesterday A 88 tokens original MIT

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Critic that ensures every behavior specifies empty, loading, success, and error states (UI copy + notifications). Invoked by contract-verify. Catches the "we forgot the error message" bug class.

not rated 5 yesterday A 49 tokens original MIT

critic-edge-cases

11

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Critic that scans a Failsafe contract for missing edge cases, ambiguous scenarios, and unspecified failure modes. Invoked by the contract-verify orchestrator. Returns findings as a JSON array.

not rated 5 yesterday A 44 tokens original MIT

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Critic that ensures every behavior carries an analytics event and that success metrics map to a fireable event. The keystone for post-launch verification. Invoked by contract-verify.

not rated 5 yesterday A 41 tokens original MIT

critic-minimality

13

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Critic that pushes back on disproportionate scope — the counterweight to critics that only ever ADD. Flags a contract that handles far more than the change requires (new flags, analytics taxonomies, shadow-observation baselines, exhaustive speculative edge cases). Invoked by contract-verify; runs ALWAYS, and is the…

not rated 5 yesterday A 78 tokens original MIT

critic-perf-budget

14

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Critic that forces every behavior to declare explicit performance thresholds (TTI, p95 latency, error rate). Invoked by contract-verify.

not rated 5 yesterday A 34 tokens original MIT

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Critic that checks every behavior is specified for every platform in scope. Flags web-only specs for cross-platform features. Invoked by contract-verify.

not rated 5 yesterday A 35 tokens original MIT

critic-regression

16

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Critic that scans across multiple repos (Flutter, Web, Backend, etc.) to find existing behaviors related to the new contract and flags potential regressions, conflicts, or coordination requirements. Invoked by contract-verify. Reads code via the GitHub MCP (preferred — always current main) or local clones (fallback…

not rated 5 yesterday A 70 tokens original MIT

critic-scalability

17

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Critic that scans for scaling concerns — N+1 queries, unbounded growth, hot paths, dependency on slow services. Invoked by contract-verify.

not rated 5 yesterday A 36 tokens original MIT

critic-security

18

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Critic that scans a contract for security and privacy gaps — authn/authz, PII handling, injection surfaces, secrets. Invoked by contract-verify.

not rated 5 yesterday A 36 tokens original MIT

implement

19

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Implement a promoted contract — write code in the target repo's stack, generate tests in that stack's idiom, iterate until they pass, open the PR. Also runs in fix-mode (review→fix loop) to address open PR-review/verify-pr findings on an existing PR. Stack-agnostic: works for web (React/Next/Vue/...), mobile…

not rated 5 yesterday A 0 tokens original MIT

launch-report

20

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Produce a post-launch verdict (landed / partial / not-landed) for a contract by reading telemetry, errors, and user feedback. Invoked manually via /launch or by launch-monitor.yml on cron at day 1/7/14/28. The loop-closer — the thing that answers "did this actually work.".

not rated 5 yesterday A 74 tokens original MIT

quick-fix

21

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Express lane for trivial bugs and tiny changes — skips the full contract ceremony. Use for one-line fixes, copy/CSS tweaks, config changes, dependency bumps, or any change localized to one root cause with no new behavior, instrumentation, schema, or platform. Triggered by /fix . Triages size first and escalates to…

not rated 5 yesterday A 87 tokens original MIT

ready-check

22

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

The PM-side readiness gate — "airport security for PRDs." A PM (or anyone) gives a PRD as any source — JIRA / Linear / Notion / Confluence / Google Doc / Slack link / GitHub issue / Figma URL, pasted text, an image, or a plain description — and the agent scores it against the Definition of Ready, surfaces the blockers…

not rated 5 yesterday A 182 tokens original MIT

rollback-guard

23

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

During a feature's rollout window, watch Sentry errors, crash-free rate, and release adoption against the contract's budgets and RECOMMEND proceed / hold / recommend-rollback. Never executes a rollback — it proposes and a human approves. Invoked by /rollback-check or the rollback-guard.yml workflow (tight cadence…

not rated 5 yesterday A 88 tokens original MIT

rollback-postmortem

24

iampawan/Manifest

Skill Claude CodeCodex

Part of manifest

Close the loop after a feature is rolled back. Records landed:rolled-back, writes a blameless postmortem from the contract's own timeline + guard reports + Sentry, posts it to Slack, and reopens the work as a follow-up. Invoked by /postmortem after a human confirms the rollback. The one ending the end-to-end loop was…

not rated 5 yesterday A 85 tokens original MIT

At most 3 mods per repository are shown here, and a mod shipped inside a plugin is left to that plugin's page — the rest are on their repository pages: