CDLI.ai

cdli.ai / agent skill collection

Skills agents can read.

Six engineering methods, packaged as SKILL.md folders. Humans can inspect them. Agents can crawl them.

public methods

06 skills

v0.1

index: https://cdli.ai/skills/*/SKILL.md

Install

Clone once. Copy the folders where your agent reads skills.

  1. 01

    clone

    git clone https://github.com/cdliai/cdli-agent-skills.git

    Gets the public collection.

  2. 02

    Claude Code

    mkdir -p ~/.claude/skills && cp -R cdli-agent-skills/*/ ~/.claude/skills/

    Personal skills. Use .claude/skills/ for project-local installs.

  3. 03

    Codex / local agents

    mkdir -p ~/.codex/skills && cp -R cdli-agent-skills/*/ ~/.codex/skills/

    Same SKILL.md folders; place them in your agent's skills directory.

Index

Each row has an HTML page, raw markdown, and public source.

  1. 01./reviewing-code

    Reviews pull requests and diffs for correctness, logic errors, performance, style, and merge risk.

    v0.1open ->rawview source
  2. 02./auditing-security

    Audits exposed code and configs for vulnerabilities, injection, auth, secrets, and OWASP risks.

    v0.1open ->rawview source
  3. 03./auditing-tech-debt

    Finds duplication, dead code, drift, naming decay, complexity, and high-interest technical debt.

    v0.1open ->rawview source
  4. 04./refactoring-code

    Restructures code for readability, cohesion, and lower complexity without changing behavior.

    v0.1open ->rawview source
  5. 05./mapping-architecture

    Maps entry points, data flow, dependencies, and failure modes before architecture decisions.

    v0.1open ->rawview source
  6. 06./reviewing-api-contracts

    Reviews REST and GraphQL contracts for endpoint shape, schemas, versioning, auth, errors, and DX.

    v0.1open ->rawview source