Claude-Codex Skills

July 30, 2026 · View on GitHub

A compact marketplace of standalone engineering skills for Claude Code and Codex.

Why this repository is intentionally small: Earlier coding models needed a large orchestration and evaluation harness to follow complex workflows reliably. Modern Claude and Codex models work better with concise procedural guidance, so that machinery has been removed. These skills retain only the domain knowledge, decision gates, tool guidance, and evidence checklists worth bringing into context.

Browse the skills catalog or install only the plugins you need below.

The repository intentionally contains only the skills, minimal plugin manifests, two host-specific marketplace catalogs, documentation, and a static catalog site. It has no MCP servers, orchestration hierarchy, distributed shared resources, generated skill copies, or evaluation harness.

Plugins

Review Suite

IndexSkillPurpose
11Plan ReviewerValidate an implementation plan against repository evidence before execution.
12Delivery ReviewerReview completed code through independent risk-selected perspectives.

Codebase Audit Suite

IndexSkillPurpose
21Documentation AuditorAudit documentation trust, coverage, structure, and factual accuracy.
22Codebase AuditorAudit cross-cutting code health, security, delivery, and maintainability.
23Test Suite AuditorAudit test value, coverage, isolation, and oracle strength.
24Architecture AuditorAudit system boundaries, ownership, contracts, and dependency topology.
25Persistence AuditorAudit queries, transactions, consistency, and resource lifecycle.

Optimization Suite

IndexSkillPurpose
31Performance OptimizerProfile, experiment, and keep only measured improvements.
32Dependency UpgraderUpgrade dependencies in reversible, verified batches.
33Code ModernizerReplace or simplify bounded capabilities when net value is proven.
34Benchmark ComparatorCompare alternatives with a frozen, reproducible experiment contract.

Testing Suite

IndexSkillPurpose
41Test Strategy PlannerDesign a risk-based, decision-complete test strategy without changing code.
42Acceptance Test BuilderCreate reproducible acceptance tests through observable product boundaries.

Product Discovery Suite

IndexSkillPurpose
51Opportunity EvaluatorCompare product opportunities using current evidence and a low-cost validation path.

Maintainer Suite

Optional maintainer toolkit: skill 61 reviews skill repositories, skill 62 publishes any Git repository with equivalent remote evidence, and skills 63–64 publish GitHub releases and Discussions. Users who only consume the engineering skills do not need to install it.

IndexSkillPurpose
61Skill ReviewerReview standalone skills and configured distribution surfaces before publication.
62Repository PublisherValidate, commit, push, and remotely verify approved repository changes.
63Release PublisherPrepare and publish an approved tagged GitHub release.
64Community AnnouncerDraft and publish fact-checked GitHub Discussions project announcements.

Architecture Suite

Creates durable architecture artifacts without coupling the skills to one another. Each workflow operates independently and communicates only through optional repository documents.

IndexSkillPurpose
71System Design Baseline BuilderEstablish measurable architecture drivers and constraints in one project baseline.
72Current Architecture DocumenterDocument implemented architecture from repository evidence.
73System Design Proposal BuilderTurn requirements and constraints into a decision-complete target design.
74Architecture Decision RecorderRecord one significant decision with alternatives and consequences.
75Architecture Diagram BuilderCreate evidence-backed current or target architecture views.
76Architecture Migration PlannerPlan a reversible current-to-target transition with compatibility and rollback.

Install in Claude Code

Add the marketplace and install only the suites you need:

/plugin marketplace add levnikolaevich/claude-code-skills
/plugin install review-suite@levnikolaevich-skills-marketplace
/plugin install codebase-audit-suite@levnikolaevich-skills-marketplace
/plugin install optimization-suite@levnikolaevich-skills-marketplace
/plugin install testing-suite@levnikolaevich-skills-marketplace
/plugin install product-discovery-suite@levnikolaevich-skills-marketplace
/plugin install maintainer-suite@levnikolaevich-skills-marketplace
/plugin install architecture-suite@levnikolaevich-skills-marketplace
/reload-plugins

Invoke a skill by its namespaced name, for example /review-suite:ln-12-delivery-reviewer.

For local development, load one plugin directly:

claude --plugin-dir ./plugins/review-suite

Install in Codex

codex plugin marketplace add levnikolaevich/claude-code-skills
codex plugin add review-suite@levnikolaevich-skills-marketplace
codex plugin add codebase-audit-suite@levnikolaevich-skills-marketplace
codex plugin add optimization-suite@levnikolaevich-skills-marketplace
codex plugin add testing-suite@levnikolaevich-skills-marketplace
codex plugin add product-discovery-suite@levnikolaevich-skills-marketplace
codex plugin add maintainer-suite@levnikolaevich-skills-marketplace
codex plugin add architecture-suite@levnikolaevich-skills-marketplace

Repository layout

.
├── .agents/plugins/marketplace.json       # Codex catalog
├── .claude-plugin/marketplace.json        # Claude Code catalog
└── plugins/
    ├── review-suite/
    ├── codebase-audit-suite/
    ├── optimization-suite/
    ├── testing-suite/
    ├── product-discovery-suite/
    ├── maintainer-suite/
    └── architecture-suite/

Each plugin contains .codex-plugin/plugin.json for Codex and a shared skills/<skill>/SKILL.md tree used by both hosts.

This is the smallest practical shared layout for distributed plugins:

  • Both hosts use skills/<name>/SKILL.md, so each skill has one canonical copy.
  • Codex requires .codex-plugin/plugin.json for a plugin.
  • Claude Code automatically scans each manifest-less marketplace source's standard skills/ directory, so duplicate per-plugin Claude manifests are unnecessary here.
  • agents/openai.yaml, references, scripts, assets, hooks, agents, and MCP configuration are optional and omitted until a concrete need appears.

The structure follows the current official Codex skill guide, OpenAI plugin guide, Claude Code skill guide, and Claude Code plugin reference.

Indexing

The first digit identifies the plugin and the second identifies the skill within it: 1x review, 2x audit, 3x optimization, 4x testing, 5x product discovery, 6x repository maintenance, and 7x architecture artifact creation. See the canonical allocation and overflow rules in AGENTS.md.

License

MIT