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

i18n-rules

49

Nmor/the-claude-council

Skill Claude Code

Internationalisation discipline — every user-facing string in a catalog (no inline strings); ICU MessageFormat for plurals + interpolation; Intl APIs for date / number / currency / list / collation; BCP 47 locale identifiers; RTL mirroring for Arabic / Hebrew / Persian / Urdu; locale-aware sort + search; per-country…

not rated 9 4d ago A 113 tokens

ifrs-gaap-reporting

50

Nmor/the-claude-council

Skill Claude CodeCodex

Financial statement preparation under IFRS and US GAAP — Balance Sheet, Income Statement, Cash Flow, Statement of Changes in Equity, revenue recognition (IFRS 15 / ASC 606), leases (IFRS 16 / ASC 842), the key IFRS↔GAAP differences, and the engineering-side patterns for producing audit-quality reports from the general…

not rated 9 4d ago A 81 tokens

interaction-design

51

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level interaction design — affordances, signifiers, feedback, mappings, constraints, error prevention, recovery, gesture + input model design, microcopy, motion as functional language, and the discipline that turns flows into experiences users complete without thinking and don't have to recover from.

not rated 9 changed 5d ago A 58 tokens

investment-research

52

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level investment research methodology — thesis development, primary research, financial modelling, valuation triangulation, risk identification, and the disciplined write-up that supports a buy / sell / hold recommendation.

not rated 9 4d ago A 41 tokens

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level due-diligence methodology for evaluating fund managers, private company investments, and acquisition targets — operational, financial, legal, commercial, technology, ESG, and reference diligence with a structured red-flag scoring system.

not rated 9 4d ago A 52 tokens

iso27001-controls

54

Nmor/the-claude-council

Skill Claude CodeCodex

ISO/IEC 27001:2022 Information Security Management System (ISMS) implementation patterns — Annex A 93 controls in 4 themes (Organizational, People, Physical, Technological), Statement of Applicability, risk assessment / treatment, and the engineering-side controls that auditors actually verify.

not rated 9 4d ago A 66 tokens

iterative-retrieval

55

Nmor/the-claude-council

Skill Claude CodeCodex

Pattern for progressively refining context retrieval to solve the subagent context problem.

not rated 9 4d ago A 19 tokens

Nmor/the-claude-council

Skill Claude Code

Java coding standards for Spring Boot services: naming, immutability, Optional usage, streams, exceptions, generics, and project layout.

not rated 9 changed 5d ago A 35 tokens

jpa-patterns

57

Nmor/the-claude-council

Skill Claude CodeCodex

JPA/Hibernate patterns for entity design, relationships, query optimization, transactions, auditing, indexing, pagination, and pooling in Spring Boot.

not rated 9 changed 5d ago A 33 tokens

kotlin-patterns

58

Nmor/the-claude-council

Skill Claude Code

Kotlin 2.0+ discipline — null safety (no !! force-unwrap; safe call + Elvis), immutability (val over var; data class + copy), sealed classes for closed hierarchies, scope functions (let/run/apply/also/with) used purposefully, structured concurrency via coroutines (no GlobalScope.launch; supervisor scopes + Job…

not rated 9 4d ago A 120 tokens

lean-manufacturing

59

Nmor/the-claude-council

Skill Claude CodeCodex

Lean operating philosophy — Just-in-Time, Jidoka, heijunka, kaizen, value-stream mapping, eight wastes, takt time, kanban, andon, single-piece flow. Applied to any value-producing system (manufacturing, software, healthcare, services), not just factories. Sister to six-sigma (variation reduction)…

not rated 9 4d ago A 82 tokens

lean-startup

60

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level methodology for building products under extreme uncertainty — validated learning, build-measure-learn loops, MVPs, innovation accounting, pivot-or-persevere, customer development, and engines of growth.

not rated 9 4d ago A 44 tokens

learned

61

Nmor/the-claude-council

Skill Claude CodeCodex

Staging area for learning-loop outputs. Holds artifacts captured by continuous-learning-v2 + /learn + /evolve commands awaiting review, promotion, or demotion per the continuous-learning-mandate.md global rule.

not rated 9 4d ago A 46 tokens

lua-patterns

62

Nmor/the-claude-council

Skill Claude Code

Lua 5.x discipline — module pattern (local M = {}; return M); local-everywhere (no global pollution); pcall/xpcall for protected calls with proper handler; safe loadstring (text-only via load(s, 'chunk', 't')); OO via metatables when needed; coroutines for cooperative concurrency; embedding-specific patterns…

not rated 9 4d ago A 127 tokens

markdown-style

63

Nmor/the-claude-council

Skill Claude Code

Markdown style — CommonMark + GFM compliant, yamllint-clean YAML frontmatter, markdownlint rules enforced (MD004 dashes for ul, MD022 blanks around headings, MD031 blanks around fenced code, MD032 blanks around lists, MD040 fenced code language tag, MD025 single H1, MD034 no bare URLs, MD047 single trailing newline).…

not rated 9 4d ago C 117 tokens

mcp-builder

64

Nmor/the-claude-council

Skill Claude CodeCodex

Build production-grade Model Context Protocol (MCP) servers — stdio + streamable HTTP transports, tool / resource / prompt primitives, capability negotiation, auth model, idempotency, observability, testing via MCP Inspector, 10-question evaluation framework. Use when designing a new MCP server to expose an internal…

not rated 9 4d ago A 126 tokens

mep-coordination

65

Nmor/the-claude-council

Skill Claude CodeCodex

Mechanical, Electrical, Plumbing (plus Fire Protection, Telecommunications, AV, Security, BMS) coordination through design, BIM-modelling, clash-detection, fabrication, and commissioning. Activates on building-services design, ISO 19650 BIM workflows, ASHRAE / BICSI / NFPA standards, multi-discipline AEC coordination.

not rated 9 4d ago A 75 tokens

ml-model-selection

66

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level model selection framework — match problem class to model family (linear / tree / kernel / neural / foundation), evaluate via cross-validation with proper data splits, factor in inference cost + latency + interpretability + compliance constraints, and avoid the common traps that produce strong offline…

not rated 9 4d ago A 64 tokens

mlops-patterns

67

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level MLOps — feature stores, model registry, training pipelines, deployment patterns (online / batch / streaming), monitoring (drift, performance, fairness), CI/CD for models, A/B testing, rollback discipline. Treat models as software artefacts with full lifecycle management.

not rated 9 4d ago A 61 tokens

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level negotiation methodology — interest-based negotiation (Harvard Method), BATNA + ZOPA + reservation values, tactical empathy (Voss), preparation discipline, multi-issue tradeoff design, cross-cultural patterns, and the discipline that turns adversarial bargaining into joint problem-solving with durable…

not rated 9 4d ago A 64 tokens

network-patterns

69

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level networking patterns — OSI / TCP-IP layering, IP addressing + CIDR design, routing, DNS, TLS, load balancing, CDN, service mesh, network security (firewalls / WAF / DDoS / segmentation), zero-trust networking, and the operational discipline that keeps packets flowing reliably + securely across…

not rated 9 4d ago A 80 tokens

Nmor/the-claude-council

Skill Claude CodeCodex

Process, convert, OCR, extract, redact, sign, and fill documents via the Nutrient DWS (Document Web Services) API. Supports PDF, DOCX, XLSX, PPTX, HTML, and image inputs through a single multipart endpoint. Use for document conversion, OCR of scanned content, PII redaction, watermarking, digital signing, and PDF form…

not rated 9 4d ago A 83 tokens

Nmor/the-claude-council

Skill Claude Code

Structured logging, EMF metrics, request-id propagation, per-tenant dimensions, and CloudWatch / OTEL conventions for serverless and long-running services. Auto-fires for handler files, lib code, and middleware where logs / metrics are emitted. Also lazy-loads observability.md content migrated from rules/common/ on…

not rated 9 4d ago A 77 tokens

okr-framework

72

Nmor/the-claude-council

Skill Claude CodeCodex

Principal-level OKR (Objectives + Key Results) design, deployment, grading, and anti-pattern avoidance for teams and organisations.

not rated 9 4d ago A 28 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: