hautc-it/cil

Claude Intelligence Layer — token-efficient context runtime for Claude Code. Persistent memory (SQLite FTS5), structured workflows (/develop /review /commit /wrap-up), output compression, and MCP integration.

1Stars on the repository
32Mods indexed here, across every type
1mo agoLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

api-design

01

hautc-it/cil

Skill Claude CodeCodex

Use when designing or reviewing a public API surface — REST/GraphQL/gRPC, versioning, idempotency, error contracts, pagination, auth boundary. Helps choose between transport styles and avoid breaking-change footguns.

1 1mo ago A 47 tokens original MIT

architecture

02

hautc-it/cil

Skill Claude CodeCodex

Use when making structural decisions, choosing service boundaries, evaluating coupling/cohesion, or deciding whether to add a new component. Helps reason about dependency direction (domain ← application ← infrastructure) and avoid distributed monoliths or premature abstractions.

1 1mo ago A 50 tokens original MIT

database-design

03

hautc-it/cil

Skill Claude CodeCodex

Use when designing a database schema from scratch or evaluating storage trade-offs — entity modeling, normalization, indexing strategy, SQL vs NoSQL choice, read/write patterns, schema evolution plan. Complements the migration skill (which handles changing existing schemas).

1 1mo ago A 51 tokens original MIT

debugging

04

hautc-it/cil

Skill Claude CodeCodex

Use when investigating a bug, regression, or unexpected behavior. Enforces reproduce → isolate → hypothesize → verify → fix → prevent — fixing root causes rather than symptoms, and adding a regression test before closing.

1 1mo ago A 45 tokens original MIT

migration

05

hautc-it/cil

Skill Claude CodeCodex

Use when changing a database schema or backfilling data in production — adding/removing columns, changing types, dropping tables, reindexing. Enforces lock-impact analysis, dual-write transitions, and rollback plans before any DDL runs.

1 1mo ago A 50 tokens original MIT

performance

06

hautc-it/cil

Skill Claude CodeCodex

Use when investigating slowness, planning optimizations, or reviewing a hot path. Enforces "measure first" — profile before optimizing, fix algorithm before I/O, never add caches before fixing the underlying query. Covers DB indexing, N+1, and request-path I/O hygiene.

1 1mo ago A 60 tokens original MIT

security

07

hautc-it/cil

Skill Claude CodeCodex

Use when designing or reviewing a system for security properties — threat modeling, trust boundaries, auth design, input validation strategy, secret management, dependency risk. Focuses on design-time security decisions, not just code-level vulnerabilities (use Claude Code's built-in security-review skill for code…

1 1mo ago A 59 tokens original MIT

testing

08

hautc-it/cil

Skill Claude CodeCodex

Use when writing or reviewing tests — choosing what to test, structuring test suites, deciding on real deps vs mocks, or after fixing a bug (regression test). Emphasizes testing behavior over implementation and progressing boundary → happy path → edge cases → errors.

1 1mo ago A 55 tokens original MIT