Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By arbazkhan971
Activate zero-config Godmode in Claude Code to invoke 126 skills and 7 subagents that autonomously plan features, generate code/tests/docs, audit security/performance/accessibility, optimize via git worktrees, and orchestrate full-cycle dev workflows from ideation to deployment.
npx claudepluginhub arbazkhan971/godmodeTurn on Godmode for Claude Code. A complete development workflow — from idea to shipped, optimized product.
Accessibility testing and auditing using WCAG 2.1 AA/AAA compliance checks, automated scanners (Axe, Pa11y, Lighthouse), color contrast analysis, keyboard navigation audit, and screen reader compatibility testing. Every finding includes WCAG criterion, code evidence, and concrete remediation.
Design, build, and evaluate AI agents. Covers agent architecture patterns (ReAct, plan-and-execute, multi-agent), tool design and integration, memory systems (short-term, long-term, episodic), guardrails and safety, orchestration, and evaluation.
Analytics implementation for product teams. Designs event taxonomies, implements tracking with Segment, Amplitude, Mixpanel, or PostHog, sets up funnel analysis, instruments A/B tests, and configures privacy-respecting analytics with Plausible or Umami. Full GDPR/CCPA compliance.
Angular architecture mastery — standalone components vs NgModules, RxJS patterns, state management (NgRx, Signals), dependency injection, lazy loading, Angular CLI optimization, and testing with Jasmine/Karma and Jest. Build production-grade Angular applications with best practices.
Executes implementation tasks following a Godmode skill workflow exactly
You are a senior code reviewer dispatched by Godmode's review skill. Your job is to evaluate code changes against the specification and plan, identifying issues across 7 dimensions.
Read-only codebase exploration — maps structure, traces code paths, gathers context
Runs the autonomous optimization loop — measure, modify, verify, keep/revert
Decomposes goals into parallel tasks, maps each to a Godmode skill, builds dependency graph
Accessibility. WCAG 2.1 AA/AAA, a11y audit, color contrast, keyboard navigation, screen reader, Axe, Pa11y, Lighthouse.
AI agent development. ReAct/plan-and-execute/multi-agent architectures, tool design, memory systems, guardrails, orchestration (LangChain, LlamaIndex, CrewAI, AutoGen).
Product analytics implementation — event tracking, funnel analysis, A/B testing, Segment/Amplitude/Mixpanel/PostHog, privacy-compliant instrumentation.
Angular architecture. NgRx, Signals, RxJS, standalone components, lazy loading, dependency injection, Jasmine, Jest.
API design and specification. REST, GraphQL, gRPC, OpenAPI, design an API, create API spec, validate my API, endpoint.
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Self-orchestrating multi-agent development system — 8 specialized AI agents, parallel quality gates, and automated workflows. You say WHAT, the AI decides HOW.
Mindful AI coding framework — discipline over cleverness. Skill + 21 slash commands + 8 specialist agents + 5 runtime hooks + 15 default checklists + Master Orchestrator + Gravity hub. Works on any model tier (Opus/Sonnet/Haiku). Integrates Claude Design for visual work.
AI-powered development workflow automation - Phase-based planning, implementation orchestration, preflight code quality checks with security scanning, ship-it workflow, and development principles generator for CLAUDE.md
Expert code review specialist. Proactively reviews code for quality, security, and maintainability. Use immediately after writing or modifying code.
The most comprehensive Claude Code plugin — 14+ agents, 56+ skills, 33+ commands, and production-ready hooks for TDD, security scanning, code review, and continuous learning
Autonomous improvement engine for Claude Code. Runs an unbounded modify-verify-keep/discard loop against any mechanical metric. 10 subcommands: plan, debug, fix, security, ship, scenario, predict, learn, and reason.
SOTA developer memory: persistent, project-scoped memory across sessions, tools, and features. Auto-captures via Claude Code lifecycle hooks.
The open-source autonomous coding agent that turns AI assistants into engineering systems. 134 skills for building, testing, optimizing, securing, and shipping software — with iterative optimization, parallel multi-agent execution, automatic rollback, failure memory, Karpathy-style authoring discipline, pre-commit discard audit, and a four-layer token optimization stack that cuts routing context by ~90%. Plugin for Claude Code, Cursor, Codex, Gemini CLI, and OpenCode.
TL;DR: Install with
claude plugin install godmode. Say/godmode optimize my APIand walk away. It measures, iterates, keeps improvements, reverts failures, and stops when done.
$ /godmode:optimize
Goal: Reduce API response time
Iterations: 20
BASELINE 847ms
ROUND 1 554ms KEPT (-34.5%) -- added index on category_id
ROUND 2 382ms KEPT (-31.0%) -- enabled gzip compression
ROUND 3 276ms KEPT (-27.7%) -- eager loading for posts
ROUND 4 290ms REVERTED -- batch loader (guard failed)
ROUND 5 226ms KEPT (-18.2%) -- connection pool to 20
ROUND 6 198ms KEPT (-12.4%) -- Redis response cache
=== 847ms --> 198ms (76.6% improvement) ===
Keeps: 5 | Discards: 1
$ /godmode:build
Goal: Add user authentication system
PLAN Decomposed into 4 parallel tasks
AGENT 1 [worktree] Auth middleware + JWT tokens DONE
AGENT 2 [worktree] User model + password hashing DONE
AGENT 3 [worktree] Login/register API endpoints DONE
AGENT 4 [worktree] Integration tests for auth flow DONE
MERGE Sequential merge + test after each ALL PASS
REVIEW 4-agent code review (security, perf, style) APPROVED
=== 4 tasks | 4 agents | 12 files | 47 tests passing ===
$ /godmode:secure
Target: src/api/
RECON Mapped 23 endpoints, 4 auth flows, 2 data stores
STRIDE 6 threat categories analyzed
OWASP Top 10 checklist applied
RED TEAM 4 personas: script kiddie, insider, APT, researcher
CRITICAL 1 SQL injection in /api/search (parameterize query)
HIGH 2 Missing rate limit on /api/login, weak CORS policy
MEDIUM 3 Verbose error messages, missing CSP header, session fixation
LOW 1 Server version disclosed in headers
7 findings with fix code + verification commands
Every finding comes with code evidence, severity, a concrete fix, and a command to verify the fix works.
# Install (Claude Code)
claude plugin install godmode
# Or install for other platforms
bash adapters/cursor/install.sh
bash adapters/gemini/install.sh
bash adapters/opencode/install.sh
# Use specific skills
/godmode:optimize # Autonomous performance iteration
/godmode:build # Build with parallel agents
/godmode:secure # Security audit
/godmode:ship # Pre-flight + deploy + verify
# Or just describe what you want
/godmode make this API faster # --> routes to optimize
/godmode fix the failing tests # --> routes to fix
/godmode build a rate limiter # --> routes to think --> plan --> build
Godmode auto-detects what you need and routes to the right skill.
Godmode is an open-source plugin that adds autonomous coding capabilities to AI assistants like Claude Code, Cursor, Codex, Gemini CLI, and OpenCode. Instead of generating code once and hoping it works, Godmode runs a disciplined engineering loop: measure, modify, verify, keep or revert, repeat — until the goal is met.