Destynova2/cli-code-skills

Production-ready Claude Code skills — audit code quality, forge design docs, generate documentation, automate infrastructure. CLI = Command Line Interface + Clement Liard Initials.

5Stars on the repository
42Mods indexed here, across every type
9d agoLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

cli-audit-code

01

Destynova2/cli-code-skills

Skill Claude CodeCodex

Audit code quality with weighted scoring across 12 dimensions (naming, complexity, module design, DRY, errors, security, tests, architecture). Detects named anti-patterns (Fowler/Mantyla taxonomy). Use when reviewing code quality, auditing clean code compliance, checking for code smells, or saying 'audit code', 'code…

5 9d ago A 92 tokens original MIT

cli-audit-data

02

Destynova2/cli-code-skills

Skill Claude CodeCodex

Audit PostgreSQL database safety in Rust/SQLx applications. Use for schemas, migrations, constraints, indexes, transactions, repositories, state transitions, idempotency, concurrency, queues, multi-tenancy, soft deletion, ledgers, auditability, repair, database incidents, or whenever SQLx and PostgreSQL changes could…

5 9d ago A 85 tokens original MIT

cli-audit-doc

03

Destynova2/cli-code-skills

Skill Claude CodeCodex

Audit documentation quality with weighted scoring across 12 dimensions (Diataxis coverage, completeness, freshness, readability, examples, accessibility, CI testing). Detects doc anti-patterns (Wall of Text, The Lie, Jargon Soup). Use when reviewing doc quality, auditing documentation, checking for stale docs, or…

5 9d ago A 89 tokens original MIT

cli-audit-drift

04

Destynova2/cli-code-skills

Skill Claude CodeCodex

Detect silent semantic drift between intended behavior (CONTRACTS.md) and actual implementation. Scans code against functional contracts, invariants, and known drift history to catch behavioral changes that compile and run but violate the original intention. Use when reviewing code changes, before commits, auditing…

5 9d ago A 135 tokens original MIT

cli-audit-hanoi

05

Destynova2/cli-code-skills

Skill Claude CodeCodex

Audit the ordering and layering of install/config/build steps using the Tower of Hanoi model: stable-and-expensive at the bottom, volatile-and-cheap on top, no step before its prerequisite, minimal redone work per change, and no responsibility displaced to a higher layer. Applies to Dockerfiles (layer cache, image…

5 9d ago A 236 tokens original MIT

cli-audit-review

06

Destynova2/cli-code-skills

Skill Claude CodeCodex

Scored MR/PR/diff review skill calibrated for strict infrastructure and automation changes. Use for merge-request reviews, pull-request reviews, scored reviewer gates, convention compliance, Ansible roles/collections, Molecule, GitLab CI, semantic-release, packaging, Go/Cobra CLIs, PowerShell, shell/Python helpers…

5 9d ago A 138 tokens original MIT

cli-audit-shell

07

Destynova2/cli-code-skills

Skill Claude CodeCodex

Audit shell scripts against Google Shell Style Guide + ops best practices. Scores 12 dimensions: strict mode coherence, error surfaces, logging, stderr hygiene, variable discipline, quoting, control flow, naming, CLI ergonomics, idempotency, namespace, and security. Goes beyond shellcheck — detects semantic…

5 9d ago A 179 tokens original MIT

cli-audit-sync

08

Destynova2/cli-code-skills

Skill Claude CodeCodex

Verify documentation-code coherence: detect stale references, broken links, terminology drift, outdated diagrams, and non-working examples. Use when the user wants to check if docs match reality, detect doc drift, verify README accuracy, find stale documentation, or says 'is my doc up to date', 'check coherence'…

5 9d ago A 100 tokens original MIT

cli-audit-tangle

09

Destynova2/cli-code-skills

Skill Claude CodeCodex

Detect spaghetti code and dependency cycles using graph theory, spectral analysis, and biomimetic patterns. Finds god functions, circular dependencies, dead code, suboptimal module boundaries, CI/CD pipeline deadlocks, and inefficient call patterns. Uses call graph topology (not just line-level metrics) to identify…

5 9d ago A 220 tokens original MIT

cli-audit-test

10

Destynova2/cli-code-skills

Skill Claude CodeCodex

Audit test plan quality and maturity. Scores coverage, techniques, pyramid balance, negative testing, NFR, automation, CI integration. Use when reviewing a test plan, test strategy, test suite structure, or saying 'audit tests', 'test quality', 'test plan review', 'test maturity', 'are my tests good enough', 'test…

5 9d ago A 94 tokens copy · 88% MIT

cli-audit-wizard

11

Destynova2/cli-code-skills

Skill Claude CodeCodex

Audit configuration wizard UX and lifecycle quality (setup, doctor, edit, migrate). Scores the 4 Laws (ask once, defaults, recap, config-as-code), credential discovery, multi-surface consistency (CLI/MCP/web), and scriptability. Detects wizard anti-patterns. Use on 'wizard', 'setup flow', 'config UX', 'init command'…

5 9d ago B 119 tokens original MIT

cli-audit-xray

12

Destynova2/cli-code-skills

Skill Claude CodeCodex

Reveal hidden semantic, mathematical, dataflow, resource-flow, and operational structure in code. Produces optimization candidates with explicit invariants, risks, validation methods, and handoffs. Use when analyzing a function, hot path, AI inference pipeline, compiler/runtime bottleneck, DevSecOps pipeline, LLM…

5 9d ago A 150 tokens original MIT

cli-cycle

13

Destynova2/cli-code-skills

Skill Claude CodeCodex

Continuous improvement cycle — orchestrates all cli- skills on the current project, synthesizes results, and proposes prioritized improvements. Use when the user wants a full project review, a health check, a weekly cycle, or says 'audit everything', 'review the project', 'health check', 'what should I improve', 'run…

5 9d ago A 93 tokens original MIT

cli-forge-arch

14

Destynova2/cli-code-skills

Skill Claude CodeCodex

Router for architecture design. Detects whether the user needs an HLD or LLD and delegates to the appropriate skill. Use when the user says 'design doc', 'architecture', or is ambiguous about HLD vs LLD. For explicit HLD requests, use cli-forge-hld directly. For explicit LLD requests, use cli-forge-lld directly.

5 9d ago A 80 tokens original MIT

cli-forge-chef

15

Destynova2/cli-code-skills

Skill Claude CodeCodex

Generate a multi-agent orchestrator for any project using the Brigade de Cuisine pattern: Chef (plans, decides), Sous-Chef (validates, merges), Commis (execute). Clients order via a Menu (PERT), the kitchen delivers Plats (merged features). Creates tmuxinator config, prompts, shared-state memory, quality gates, and…

5 9d ago C 175 tokens original MIT

cli-forge-choice-ux

16

Destynova2/cli-code-skills

Skill Claude CodeCodex

Design, audit, and simplify user choice flows: checkout, purchase, ordering, pricing selection, signup, onboarding, settings, configuration wizards, plan pickers, product configurators, forms, and any interface where users must decide, configure, buy, subscribe, or complete a guided task. Use when the user says UX…

5 9d ago A 152 tokens original MIT

cli-forge-data

17

Destynova2/cli-code-skills

Skill Claude CodeCodex

Design and implement safe PostgreSQL database changes for Rust/SQLx applications. Use for new schemas, migrations, constraints, indexes, repositories, transaction boundaries, state machines, idempotency, concurrency control, queues, multi-tenancy, soft deletion, ledgers, outbox/inbox, repair jobs, or corrections…

5 9d ago A 76 tokens original MIT

cli-forge-demo

18

Destynova2/cli-code-skills

Skill Claude CodeCodex

Generate a reproducible live-demo kit for any project: a staged demo script (DEMO.md), deterministic seed and idempotent reset wired into the project's own task runner (make / just / task / npm / ansible / flux / chainsaw — never an imposed .sh), a pre-flight checklist, and a backup recording. Picks the best delivery…

5 9d ago A 257 tokens original MIT

cli-forge-doc

19

Destynova2/cli-code-skills

Skill Claude CodeCodex

Generate and audit comprehensive project documentation from a Git repository. Produces standard documentation (CONTRIBUTING.md, architecture, troubleshooting) in Diataxis structure with zero AI markers by default. Use this skill whenever someone asks to document a project, generate docs, create a README, write API…

5 9d ago A 104 tokens original MIT

cli-forge-github

20

Destynova2/cli-code-skills

Skill Claude CodeCodex

Audit and fix GitHub repository health: rulesets vs CI alignment, branch hygiene, PR lifecycle, release automation flow, permission issues, and transient CI failures. Detects misconfigurations that cause PRs to hang, CI to fail silently, branches to accumulate, and releases to stall. Use when the user says 'PR stuck'…

5 9d ago A 165 tokens original MIT

cli-forge-hld

21

Destynova2/cli-code-skills

Skill Claude CodeCodex

Generate a High-Level Design (HLD) document for a software system. Use when the user mentions 'HLD', 'system design', 'architecture document', 'design doc', 'ADR', 'C4 diagram', 'back-of-envelope', 'capacity planning', 'ATAM', 'arc42', 'design proposal', 'Gate review', or says 'design X', 'architect Y'. Produces C4…

5 9d ago A 138 tokens original MIT

cli-forge-infra

22

Destynova2/cli-code-skills

Skill Claude CodeCodex

Ops integration assistant — reads service docs, finds the simplest config path (CLI/Helm/Operator/Terraform), builds dependency trees, proposes upgrade paths, and tracks decisions in ADRs. Use when debugging infra, integrating services, bootstrapping platforms, upgrading versions, simplifying config, or reviewing…

5 9d ago A 159 tokens original MIT

cli-forge-lld

23

Destynova2/cli-code-skills

Skill Claude CodeCodex

Generate a Low-Level Design (LLD) document for a software component or service. Use when the user mentions 'LLD', 'low-level design', 'detailed design', 'class diagram', 'sequence diagram', 'API spec', 'database schema', 'component design', 'module design', 'STRIDE', 'threat model', or asks for detailed technical…

5 9d ago A 133 tokens original MIT

Destynova2/cli-code-skills

Skill Claude CodeCodex

Agentic migration architect for transforming Ansible, bare-metal, VM, shell-scripted, or systemd-root deployed middleware into an operable OCI rootless product using any OCI-compliant runtime (Podman, Docker rootless, nerdctl, or equivalent), systemd --user, declarative units (Quadlet, compose), explicit host…

5 9d ago A 135 tokens original MIT