From cc-godmode
Analyzes prompts to adapt workflows: security overrides, breaking change escalations, performance benchmarks, emergency hotfixes, and docs-only optimizations.
npx claudepluginhub cubetribe/claudecode_godmode-onThis skill uses the workspace's default tool permissions.
The meta-decision layer analyzes user prompts and automatically adapts workflows.
Defines workflows that orchestrate agents for tasks like features, bug fixes, API changes, refactors, research, GitHub issues, and releases. Auto-selects via command patterns like 'New Feature: [X]' in CC_GodMode.
Enforces orchestrator discipline in Claude Code multi-agent workflows via PreToolUse hooks gating file reads, diagnostic commands, and bash misuse to prevent context waste.
Initiates BEADS multi-agent orchestration to autonomously handle GitHub issues from creation through design review, implementation, code review, and deployment to production. Triggers on 'start issue', 'work on issue', or metaswarm mentions.
Share bugs, ideas, or general feedback.
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.