From IDEA-TO-PRODUCTION — Marketplace front door & meta-commands
Consolidated marketplace readiness. Use for /i2p-check (or "are all my tools installed?", "check the whole marketplace", "what's missing across the plugins?"). Runs every installed plugin's /check and merges the ✓/✗ results into one table grouped by plugin, then summarises what's missing and how to install it. Thin: it delegates to each plugin's check, it owns no probes of its own.
How this skill is triggered — by the user, by Claude, or both
Slash command
/i2p:checkinheritThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Six plugins each ship a `/check`. This runs them all and gives you **one** readiness picture, so you
Six plugins each ship a /check. This runs them all and gives you one readiness picture, so you
don't have to remember to probe each plugin separately.
Stance — advisory, never a false PASS. A missing tool narrows a capability, it does not break the marketplace. Report gaps plainly; with
--strict, surface a non-OK overall status when a required tool is missing.
For each plugin that is installed and ships a check, run it, passing $ARGUMENTS through
(--strict, --tier=recommended, …):
| Plugin | Check |
|---|---|
| market-scanner | /market-scanner:check |
| ideator | /ideator:check |
| foundry | /foundry:check |
| atelier | /atelier:check |
| sentinel | /sentinel:check |
| pressroom | /pressroom:check |
| mission-control | /mission-control:check |
Prefer running them in parallel. Do not re-implement any probe here — each plugin's check reads its
own canonical skills/check/requirements.tsv.
Merge every row into one table grouped by plugin: plugin · tool · tier · ✓/✗ · install hint.
Then a one-line summary: <N> present, <M> missing (<K> required) across the suite.
PREREQUISITES/ folder and the per-row install hints.Inherits the front door covenant (knowledge/covenant.md). If a tool a plugin needs isn't being
checked, the fix is upstream in that plugin's requirements.tsv — not a patch here.
npx claudepluginhub agentic-underground/idea-to-productionGuides test-driven development for Django applications using pytest-django, factory_boy, and Django REST Framework. Covers red-green-refactor workflow, conftest fixtures, and coverage reporting.