hautc-it

32 mods across 1 repository, 1 stars between them.

api-design

25

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

26

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

27

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

28

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

29

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

30

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

31

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

32

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