From cc-godmode
Local-only fast lane for rapid spikes and throwaway prototypes. Skips production gates (architect, api-guardian, validator, tester, scribe, github-manager), adds PROTOTYPE ONLY watermarks, and prevents push or deploy. Useful for experiments, technical questions, and disposable local code.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cc-godmode:prototype-modeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when speed matters more than production readiness and the output
Use this skill when speed matters more than production readiness and the output is explicitly disposable.
Prototype Mode is not normal delivery with fewer checks. It is a separate local lane for spikes, experiments, and short proof-of-concepts. Nothing created in this mode may be pushed, released, deployed, or connected to production services until it is migrated through the normal CC_GodMode workflow.
| Gate | Prototype behavior |
|---|---|
| Version-first release flow | Skipped for throwaway local work |
| @architect | Optional; use only if the prototype will shape production design |
| @api-guardian | Skipped; prototypes must not define production contracts |
| @validator | Skipped as a full gate |
| @tester | Reduced to one smoke command |
| @scribe | Skipped; no CHANGELOG or release docs for throwaway output |
| @github-manager | Skipped; no PR, release, or push |
PROTOTYPE ONLY header.Use one of these conventions:
prototype/ directoryspike/ directoryproto_ filename prefixDo not mix prototype files into production source folders unless the filename
is visibly prefixed with proto_.
Adapt the comment syntax to the language.
PROTOTYPE ONLY - NOT FOR PRODUCTION
Created in CC_GodMode Prototype Mode for local testing only.
Do not commit to main, deploy, or use real credentials here.
Run through the normal CC_GodMode workflow before production use.
Before promoting prototype output:
PROTOTYPE ONLY header.prototype/, spike/, or proto_*.npx claudepluginhub cubetribe/claudecode_godmode-onBuilds throwaway logic or UI prototypes to quickly answer design questions. Splits into logic (terminal app) or UI (multiple variants) branches.
Builds a throwaway prototype to answer a design question—either a terminal app for logic/state exploration or multiple UI variants toggleable from one route.
Builds isolated prototypes to solve complex bugs or design problems, avoiding in-place patches. Useful for fail-retry loops, UI brainstorming, or when source-grep fails.