Nmor/the-claude-council

A principal-level, 16-division multi-agent Council for Claude Code. Drop-in ~/.claude/ config: 15 Floor + 160 Library rules, 121 skills, 32 agents, 33 commands, 14 hook-enforced quality gates. Runs on any machine, any project, every IDE. MIT.

This repository also configures its own agents. See what the-claude-council tells them →

9Stars on the repository
192Mods indexed here, across every type
5d agoLast push, which is what freshness is scored on
customA LICENSE file GitHub cannot name, so bodies are not copied

org-design

73

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level organisational design — team topologies, span of control, reporting structures, decision rights (DACI / RACI), Conway's Law, coordination cost, scaling from 10 to 1000, the difference between functional / divisional / matrix / network structures, and the discipline that aligns the org chart to the…

not rated 9 5d ago A 70 tokens

owasp-asvs

74

Nmor/the-claude-council

Skill Claude CodeCodex

OWASP Application Security Verification Standard 4.0.3 — the canonical control catalogue for application security, mapped per L1 / L2 / L3 with implementation patterns and verification commands.

not rated 9 5d ago A 43 tokens

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level patterns for accepting card / bank / wallet / instant-rail payments — idempotency, 3DS2 + SCA, network tokenization, subscriptions, dunning, refunds + chargebacks, payouts, ledger reconciliation. Sister to pci-dss-patterns (compliance) and bookkeeping-patterns (double-entry).

not rated 9 5d ago A 71 tokens

pci-dss-patterns

76

Nmor/the-claude-council

Skill Claude CodeCodex

PCI-DSS v4.0 implementation patterns for systems that store, process, or transmit cardholder data — scope reduction via tokenization, SAQ selection, segmentation, encryption requirements, and the 12 PCI-DSS requirements mapped to concrete engineering controls.

not rated 9 5d ago A 57 tokens

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level performance management — feedback systems, calibration, ratings (or no ratings), career frameworks, performance improvement plans, and the operational discipline that turns reviews from anxiety-inducing theatre into a real engine of growth, retention, and accountability.

not rated 9 5d ago A 50 tokens

planning-rules

78

Nmor/the-claude-council

Skill Claude Code

Planning + verification discipline for multi-phase work — code-graph-validation (incremental per-task + phase-boundary + pre-push sweeps), ADR template (MADR / Nygard format), runbook template (canonical incident-response structure). Auto-fires when plan files, ADR archives, or runbook files are touched.

not rated 9 changed 5d ago A 70 tokens

portfolio-theory

79

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level portfolio construction — Markowitz mean-variance optimisation, CAPM, factor models, risk budgeting, rebalancing discipline, drawdown and tail-risk management. Diversification is the only free lunch; respect transaction costs and behavioural traps.

not rated 9 5d ago A 52 tokens

postgres-patterns

80

Nmor/the-claude-council

Skill Claude CodeCodex

PostgreSQL database patterns for query optimization, schema design, indexing, and security. Based on Supabase best practices.

not rated 9 5d ago A 28 tokens

Nmor/the-claude-council

Skill Claude CodeCodex

Template for authoring a project-specific skill in /.claude/skills/. Demonstrates the canonical shape — Architecture / File Structure / Code Patterns / Testing Requirements / Deployment Workflow / Critical Rules — that workspace skills follow when they extend global guidance with project-specific specifics. Use this…

not rated 9 changed 5d ago A 78 tokens

prompt-engineering

82

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level prompt engineering — task decomposition, role + context + instructions + examples + output-format structure, few-shot patterns, chain-of-thought, tool-use prompts, evaluation, prompt versioning, and the discipline that separates "works once on the demo" from "production-grade prompt that survives model…

not rated 9 changed 5d ago A 87 tokens

prompt-improver

83

Nmor/the-claude-council

Skill Claude CodeCodex

Transforms vague or under-specified prompts into actionable, research-grounded requests through systematic codebase + workspace + open-source + online research. Wires the user's directive flow into the Council Protocol Phase 0 and the global task-intake-due-diligence.md questionnaire. Invoked by the UserPromptSubmit…

not rated 9 5d ago A 87 tokens

provider-research

84

Nmor/the-claude-council

Skill Claude CodeCodex

Read and cite primary-source provider documentation BEFORE writing any integration code against an external API. Enforces the official-docs-first rule across calendar, identity, payment, mail, push, ML, and observability providers.

not rated 9 5d ago A 47 tokens

python-patterns

85

Nmor/the-claude-council

Skill Claude Code

Pythonic idioms, PEP 8 standards, type hints, and best practices for building robust, efficient, and maintainable Python applications.

not rated 9 changed 5d ago B 33 tokens

python-testing

86

Nmor/the-claude-council

Skill Claude CodeCodex

Python testing strategies using pytest, TDD methodology, fixtures, mocking, parametrization, and coverage requirements.

not rated 9 changed 5d ago A 24 tokens

rag-design

87

Nmor/the-claude-council

Skill Claude CodeCodex

Retrieval-Augmented Generation (RAG) system design — chunking, embeddings, vector storage, hybrid retrieval, reranking, evaluation, grounding, and the RAG-vs-fine-tune-vs-long-context decision. Auto-fires when the work touches RAG pipelines, vector databases, embeddings, semantic search, document grounding, or…

not rated 9 5d ago A 79 tokens

research-methods

88

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level research methodology — primary vs secondary sources, quantitative + qualitative + mixed methods, literature review, evidence hierarchies, experimental design, survey + interview craft, bias identification, statistical inference, reproducibility, citation discipline, and the discipline that separates "I…

not rated 9 5d ago A 73 tokens

resilience-rules

89

Nmor/the-claude-council

Skill Claude Code

Resilience patterns — circuit-breaker (per-DEPENDENCY breaker; CLOSED/OPEN/HALF-OPEN), graceful-degradation (P0-P3 criticality tiers; explicit degraded UX never silent), feature-flags (every flag has owner + expiry + decision criteria; OpenFeature spec; kill switches pre-built), idempotency (Stripe keys; RFC 9110…

not rated 9 5d ago A 148 tokens

ruby-rails-patterns

90

Nmor/the-claude-council

Skill Claude Code

Ruby 3.3+ / Rails 7-8 discipline — Sandi Metz rules (classes ≤ 100 LOC, methods ≤ 5 LOC, ≤ 4 args), frozenstringliteral mandatory, RuboCop at strict (cyclomatic ≤ 7, AbcSize ≤ 15), modern Ruby idioms (endless methods, pattern matching, hash shorthand, numbered block params), service objects + form objects + query…

not rated 9 5d ago A 146 tokens

rust-patterns

91

Nmor/the-claude-council

Skill Claude Code

Rust idioms — ownership-first design; types encode invariants (newtype pattern for UserId / Cents / etc.); errors as values (Result + thiserror for libs + anyhow for apps); enums for closed sets (exhaustive match); builders for many-optional inputs; protocol-style traits for ports (dependency inversion); DI via struct…

not rated 9 5d ago C 144 tokens

search-first

92

Nmor/the-claude-council

Skill Claude CodeCodex

Research-before-coding workflow. Search for existing tools, libraries, and patterns before writing custom code. Invokes the researcher agent.

not rated 9 5d ago B 29 tokens

security-review

93

Nmor/the-claude-council

Skill Claude Code

Use this skill when adding authentication, handling user input, working with secrets, creating API endpoints, or implementing payment/sensitive features. Provides comprehensive security checklist and patterns. Also lazy-loads the security.md / security-controls-org-wide.md / secrets-management.md content migrated from…

not rated 9 5d ago B 68 tokens

security-scan

94

Nmor/the-claude-council

Skill Claude CodeCodex

Scan a Claude Code configuration surface (.claude/ directory, CLAUDE.md, settings.json, MCP servers, hooks, agent definitions) for security vulnerabilities, misconfigurations, and prompt-injection risks using AgentShield (ecc-agentshield). Sister to security-review (broader OWASP / source-code audit). Use this skill…

not rated 9 5d ago A 92 tokens

six-sigma

95

Nmor/the-claude-council

Skill Claude CodeCodex

Data-driven variation reduction via DMAIC (Define / Measure / Analyse / Improve / Control), with Lean Six Sigma fusion when waste + variation co-exist. Belts framework (Yellow / Green / Black / Master Black), SPC charts, FMEA, design of experiments, hypothesis tests, capability indices (Cp / Cpk). Sister to…

not rated 9 5d ago A 80 tokens

soc2-readiness

96

Nmor/the-claude-council

Skill Claude CodeCodex

SOC 2 Type I and Type II readiness patterns — Trust Service Criteria (Security / Availability / Processing Integrity / Confidentiality / Privacy), control-to-evidence mapping, and the operational evidence collection patterns that survive a continuous-period audit.

not rated 9 5d ago A 51 tokens

At most 3 mods per repository are shown here, and a mod shipped inside a plugin is left to that plugin's page — the rest are on their repository pages: