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
2d agoLast push, which is what freshness is scored on
customA LICENSE file GitHub cannot name, so bodies are not copied

accessible-forms

01

Nmor/the-claude-council

Skill Claude CodeCodex

Production form accessibility — labels, errors, autocomplete, validation timing, multi-step flows, file inputs, date pickers, and the WCAG 2.2 Redundant Entry + Accessible Authentication SCs.

not rated 9 2d ago A 45 tokens

api-design

02

Nmor/the-claude-council

Skill Claude Code

REST API design patterns including resource naming, status codes, pagination, filtering, error responses, versioning, and rate limiting for production APIs. Also lazy-loads api-versioning.md / contract-testing.md / schema-evolution.md / deprecation-lifecycle.md content migrated from rules/common/ on 2026-06-02.

not rated 9 2d ago A 69 tokens

Nmor/the-claude-council

Skill Claude CodeCodex

AWS Lambda + API Gateway + Step Functions + EventBridge + SQS/SNS patterns. Cold-start mitigation, async webhook backpressure, idempotency, fan-out via SNS topics, retry/DLQ design, and Serverless Framework / SAM / CDK conventions. Auto-fires for serverless.yml, template.yaml (SAM), and handlers/.ts.

not rated 9 2d ago A 82 tokens

backend-patterns

04

Nmor/the-claude-council

Skill Claude CodeCodex

Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.

not rated 9 2d ago A 31 tokens

Nmor/the-claude-council

Skill Claude Code

Bash + shell scripting discipline — strict header (set -euo pipefail; IFS), naming conventions (kebab-case scripts, snakecase functions/vars, SCREAMINGSNAKECASE constants), always-quoted variables, defaults via ${var:-default}, getopts for arguments, structured logging to stderr, cleanup via trap, no backticks (use…

not rated 9 2d ago A ✓ AI review 114 tokens

Nmor/the-claude-council

Skill Claude CodeCodex

Double-entry bookkeeping patterns for engineering teams — chart of accounts, journal entries, ledger reconciliation, immutable accounting events, and the database schema patterns that produce auditable, restatable books for SaaS, marketplace, and fintech systems.

not rated 9 2d ago A 50 tokens

calendar-provider

07

Nmor/the-claude-council

Skill Claude CodeCodex

Patterns for integrating business calendar providers (Google Workspace, Microsoft 365, Zoho Workplace, business CalDAV). OAuth flow, push subscriptions, echo suppression, etag concurrency, and write-back via the outbox pattern.

not rated 9 2d ago A 47 tokens

ci-rules

08

Nmor/the-claude-council

Skill Claude CodeCodex

CI + hooks discipline — ci-test-memory-tuning (test-suite memory budget vs runner OS headroom; OOM vs worker-thrash diagnostic), github-actions-gotchas (named pitfalls: bash -e + pipefail, 21K char expression limit, SHA-pin actions, runner OOM, workerIdleMemoryLimit thrash, pullrequest vs pullrequesttarget), hooks…

not rated 9 2d ago B 0 tokens

clickhouse-io

09

Nmor/the-claude-council

Skill Claude CodeCodex

ClickHouse database patterns, query optimization, analytics, and data engineering best practices for high-performance analytical workloads.

not rated 9 2d ago A 26 tokens

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level clinical data interoperability — FHIR R5, USCDI v4, HL7 v2 / CDA / CCDA, SMART on FHIR + SMART Health Cards / Links, ICD-10 / SNOMED-CT / LOINC / RxNorm / CPT terminologies, DICOM imaging, telehealth, mHealth (HealthKit / Health Connect). Sister to hipaa-compliance (regulation) and security…

not rated 9 2d ago A 96 tokens

cloud-architecture

11

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level cloud architecture — Well-Architected Framework pillars (operational excellence, security, reliability, performance, cost optimisation, sustainability), region/AZ/zone topology, compute and storage selection, multi-region patterns, and the disciplined decisions that turn cloud capability into…

not rated 9 2d ago A 70 tokens

codebase-memory

12

Nmor/the-claude-council

Skill Claude CodeCodex

Use the codebase knowledge graph for structural code queries. Triggers on: explore the codebase, understand the architecture, what functions exist, show me the structure, who calls this function, what does X call, trace the call chain, find callers of, show dependencies, impact analysis, dead code, unused functions…

not rated 9 changed yesterday A 0 tokens

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level communication methodology — Pyramid Principle, audience analysis, written + verbal + visual modes, executive presence, narrative structure, presentations + memos + slack + email, difficult conversations, listening discipline, cross-cultural delivery, and the patterns that turn knowing the answer into…

not rated 9 2d ago A 60 tokens

community-rules

14

Nmor/the-claude-council

Skill Claude Code

Community + governance discipline — code-of-conduct (Contributor Covenant v2.1 adoption; documented enforcement team + reporting paths + retaliation protection; quarterly transparency reports). Auto-fires on community/governance artifacts.

not rated 9 2d ago A 46 tokens

configure-ecc

15

Nmor/the-claude-council

Skill Claude CodeCodex

Interactive installer for Everything Claude Code — guides users through selecting and installing skills and rules to user-level or project-level directories, verifies paths, and optionally optimizes installed files.

not rated 9 changed yesterday A ✓ AI review 38 tokens

Nmor/the-claude-council

Skill Claude CodeCodex

Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents.

not rated 9 2d ago B 33 tokens

Nmor/the-claude-council

Skill Claude CodeCodex

Cost optimization patterns for LLM API usage — model routing by task complexity, budget tracking, retry logic, and prompt caching.

not rated 9 changed yesterday A 33 tokens

council-protocol

18

Nmor/the-claude-council

Skill Claude Code

Council Conversation Protocol — Phase 0 Deep Research (29-question intake + codebase exploration + online research), Phase 1 Council Discussion (5 Core + 11 Extended divisions), Phase 2 Consensus (GO/NO-GO + vetoes), Phase 3 Implementation, and Post-Implementation Review templates. Plus Research Requirements by Task…

not rated 9 2d ago A 122 tokens

council-rules

19

Nmor/the-claude-council

Skill Claude Code

Full Council Structure — Core Five Divisions (Architecture/Implementation/Quality/Security/Testing) + Extended Eleven Divisions (Compliance/UX/Ops/Data/Finance/Risk/Strategy/People/ESG/AI-Ethics/Comms) with veto authority + agent rosters + per-division personas (collective experience, core principles, key…

not rated 9 changed yesterday B 133 tokens

Nmor/the-claude-council

Skill Claude Code

C++ coding standards based on the C++ Core Guidelines (isocpp.github.io). Use when writing, reviewing, or refactoring C++ code to enforce modern, safe, and idiomatic practices.

not rated 9 changed yesterday B 48 tokens

cpp-testing

21

Nmor/the-claude-council

Skill Claude CodeCodex

Use only when writing/updating/fixing C++ tests, configuring GoogleTest/CTest, diagnosing failing or flaky tests, or adding coverage/sanitizers.

not rated 9 2d ago A 34 tokens

csharp-patterns

22

Nmor/the-claude-council

Skill Claude Code

C# / .NET discipline — ASP.NET Core idioms, Minimal APIs / MVC controllers, async/await end-to-end (no .Result/.Wait()), records for value types, sealed types where inheritance unneeded, IOptions for config, ILogger structured logging, HttpClientFactory not new HttpClient(), EF Core async + AsNoTracking + projection…

not rated 9 2d ago A 107 tokens

Nmor/the-claude-council

Skill Claude Code

Dart 3.x / Flutter discipline — null safety mandatory; force-unwrap (!) banned outside justified narrow cases; const constructors everywhere possible; Riverpod / BLoC for state; freezed for immutable models + sealed unions; gorouter for navigation; structured concurrency via async/await + Stream; Material 3 /…

not rated 9 2d ago A 95 tokens

database-migrations

24

Nmor/the-claude-council

Skill Claude CodeCodex

Database migration best practices for schema changes, data migrations, rollbacks, and zero-downtime deployments across PostgreSQL, MySQL, and common ORMs (Prisma, Drizzle, Django, TypeORM, golang-migrate).

not rated 9 2d ago A 52 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: