From cc-godmode
Adapts workflows based on task analysis: triggers security overrides, breaking change escalation, performance paths, emergency hotfixes, and documentation-only shortcuts. Useful for orchestrating complex development tasks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cc-godmode:meta-decisionsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The meta-decision layer analyzes user prompts and automatically adapts workflows.
The meta-decision layer analyzes user prompts and automatically adapts workflows.
| Rule | Trigger Keywords | Workflow Adaptation |
|---|---|---|
| securityOverride | auth, jwt, token, password, encrypt, session | Force @validator security-focused check |
| breakingChangeEscalation | breaking change, deprecate, remove API, migration | Require @architect review before any change |
| performanceCriticalPath | performance, optimize, slow, latency, cache | Add performance benchmarks to @tester |
| emergencyHotfix | hotfix, urgent, critical, production down | Streamlined workflow: @builder → @validator only |
| documentationOnly | docs only, readme, changelog, typo fix | Skip @builder, direct to @scribe |
User Prompt Received
↓
analyze-prompt.js evaluates:
↓
┌─ Security keywords? → securityOverride
├─ Breaking change? → breakingChangeEscalation
├─ Performance? → performanceCriticalPath
├─ Emergency? → emergencyHotfix
└─ Docs only? → documentationOnly
↓
None matched → Standard workflow selection
Significant decisions are logged in DECISIONS.md:
## ADR-[NUMBER]: [Title]
**Date:** YYYY-MM-DD
**Status:** Accepted / Superseded / Deprecated
**Context:** [Why this decision was needed]
**Decision:** [What was decided]
**Consequences:** [Impact of the decision]
For complex decisions, use the RARE matrix:
| Role | Agent | Responsibility |
|---|---|---|
| Responsible | @builder | Does the work |
| Accountable | Orchestrator | Ensures completion |
| Reviewed by | @validator + @tester | Quality assurance |
| Escalated to | User | Final authority |
When the Orchestrator cannot decide:
When processing issues, the meta-layer adds:
{
"type": "feature|bug|enhancement",
"complexity": "low|medium|high",
"areas": ["api", "ui", "backend"],
"meta_rules_triggered": ["securityOverride"],
"workflow_adaptation": "Added security-focused @validator check"
}
When emergencyHotfix is triggered:
User: "Hotfix: production login broken"
↓
@builder (immediate fix)
↓
@validator (security + unit tests only)
↓
DONE (skip @tester, @scribe — speed over process)
Post-hotfix: Schedule a follow-up with full quality gates.
npx claudepluginhub cubetribe/claudecode_godmode-onDefines full-gates workflows (Feature, Bug Fix, API Change, Refactor, etc.) with structured agent orchestration, mandatory gates (@api-guardian for API paths), and parallel quality checks.
Routes AI-assisted work by classifying changes by consequence (Quick or Standard-plus) and enforcing a decision contract with change records. Use at start of changes, adoption, or releases.
Guides evidence-driven analysis for hard bugs, architecture decisions, root-cause investigation, and high-stakes implementation planning using repo fingerprints, hypothesis ladders, and evidence matrices.