export declare const RAPID_STATUS = "# /rapid-status \u2014 Rapid Test Portfolio Status\n\n## What This Does\n\nShows the status of all rapid tests \u2014 active, ready to deploy, graduated, and killed \u2014 in a single dashboard view. Designed for managing a portfolio of 5-10 simultaneous idea tests.\n\n## Trigger Context\nUser wants to see all rapid tests at a glance. Also useful before deciding which idea to test next.\n\n## Execution Protocol\n\n### Step 1: Load All Rapid Tests\nRead `rapid_tests` from pipeline-state.json.\n\nIf `rapid_tests` key doesn't exist or is empty:\n```\nNo rapid tests yet. Run /rapid-test [your idea] to start your first one.\n```\n\n### Step 2: Categorize Tests\n\nSort all rapid tests into categories by status:\n- **ACTIVE**: status = \"active\"\n- **READY TO DEPLOY**: status = \"ready_to_deploy\"\n- **GRADUATED**: status = \"graduated\"\n- **EXTENDED**: status = \"extended\"\n- **KILLED**: status = \"killed\"\n\n### Step 3: Present Dashboard\n\n```\nRAPID TEST PORTFOLIO \u2014 [today's date]\n\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\n\nACTIVE TESTS:\n [market-slug] \u2014 Day [X] of [Y] | $[spent]/$[budget] | Last check: [verdict]\n CTR: [X]% | Conversions: [X] | Cost/conv: $[X]\n [market-slug] \u2014 Day [X] of [Y] | $[spent]/$[budget] | Last check: [verdict]\n CTR: [X]% | Conversions: [X] | Cost/conv: $[X]\n\nREADY TO DEPLOY (assets generated, not yet live):\n [market-slug] \u2014 Created [date] | Budget: $[X] over [Y] days\n Assets: assets/[slug]/rapid-test/\n\nGRADUATED (moved to full pipeline):\n [market-slug] \u2014 Graduated [date] | Signal: [key winning metric]\n Full pipeline stage: [current_stage from pipelines entry, or \"not started yet\"]\n Total test spend: $[X]\n\nKILLED:\n [market-slug] \u2014 Killed [date] | Spent: $[X] | Learning: [one sentence]\n [market-slug] \u2014 Killed [date] | Spent: $[X] | Learning: [one sentence]\n\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\nSUMMARY:\n Total ideas tested: [count of all non-ready tests]\n Total invested: $[sum of all spend across all tests]\n Graduated: [count] ([percentage]% win rate)\n Killed: [count]\n Active: [count]\n Ready to deploy: [count]\n```\n\n### Step 4: Pattern Detection (3+ completed tests)\n\nIf 3 or more tests have reached a final verdict (graduated or killed):\n\n```\nPATTERNS DETECTED:\n - [Pattern observation \u2014 e.g., \"Pain-first ads consistently outperform promise-first ads across your tests\"]\n - [Pattern observation \u2014 e.g., \"Markets with existing Reddit communities graduate; markets without get killed\"]\n - [Pattern observation \u2014 e.g., \"Your $47 price point tests convert better than $97\"]\n```\n\nIf fewer than 3 completed tests, skip this section.\n\n### Step 5: Suggest Next Action\n\nBased on portfolio state, suggest ONE action:\n\n- If active tests need checking: \"Next: Run `/rapid-check` to update [test name] (last checked [date])\"\n- If ready-to-deploy tests exist: \"Next: Deploy [test name] \u2014 follow checklist in `assets/[slug]/rapid-test/deployment-checklist.md`\"\n- If a graduated test hasn't entered the full pipeline: \"Next: Run `/rapid-graduate [slug]` to start the full pipeline for [test name]\"\n- If no active tests and no ready-to-deploy: \"Next: Run `/rapid-test [idea]` to test your next idea\"\n- If overdue daily checks exist (active test, last check > 1 day ago): \"OVERDUE: [test name] hasn't been checked since [date]. Run `/rapid-check [slug]`\"\n\n## Autonomy\nTier 1 \u2014 Full Auto. Read-only, no state changes.\n\n## Output\nInline dashboard. No file saved. No state changes.\n\n## Next Step\nRoute to `/rapid-test`, `/rapid-check`, `/rapid-graduate`, or full pipeline commands based on portfolio state."; //# sourceMappingURL=rapid-status.d.ts.map