Agent Plugins Marketplace
All plugins

clairvoyance

v1.3.0

ESP for AI Coding — Agent skills on the philosophy of software design, grounded in decades of engineering experience.

CodexClaude Code16 Skills

By Cody BromleyLicense: MIT11 GitHub starsUpdated 2 months ago

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
16 skill or MCP entries
Source updated
Jul 22, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install clairvoyance for Codex and Claude Code

Installs for the current user
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add clairvoyance@agent-plugin-marketplace

Paste and run these commands in a terminal with Codex. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/codybrom/clairvoyance

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.

Plugin files

clairvoyance/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/abstraction-quality/SKILL.md
├── skills/code-evolution/SKILL.md
├── skills/comments-docs/SKILL.md
├── skills/complexity-recognition/SKILL.md
├── skills/deep-modules/SKILL.md
├── skills/design-it-twice/SKILL.md
├── skills/design-review/SKILL.md
├── skills/diagnose/SKILL.md
├── skills/error-design/SKILL.md
├── skills/general-vs-special/SKILL.md
├── skills/information-hiding/SKILL.md
├── skills/module-boundaries/SKILL.md
├── skills/naming-obviousness/SKILL.md
├── skills/pull-complexity-down/SKILL.md
├── skills/red-flags/SKILL.md
└── skills/strategic-mindset/SKILL.md

Included Skills16

abstraction-qualityskills/abstraction-quality/SKILL.md

Evaluates whether abstractions provide a genuinely different way of thinking or are structurally shallow. Use when adjacent layers feel redundant, wrappers add boilerplate without depth, or an abstraction feels leaky. Not for a single module's interface-to-implementation ratio (use deep-modules) or information leakage across boundaries (use information-hiding).

code-evolutionskills/code-evolution/SKILL.md

Evaluates whether changes to existing code maintain or degrade design quality. Use when reviewing diffs, PRs, or recently modified files to judge whether each change looks designed-in or bolted-on. Not for scanning design smells (use red-flags) or assessing overall design investment (use strategic-mindset).

comments-docsskills/comments-docs/SKILL.md

Reviews comment quality and documentation practices: the four comment types, comments-first workflow, and comment rot. Use when reviewing comments or docs, when comments just repeat the code, or when something is hard to describe in a sentence. Not for naming or code obviousness (use naming-obviousness).

complexity-recognitionskills/complexity-recognition/SKILL.md

Diagnoses whether complexity exists and where it comes from, using the three-symptom, two-root-cause framework. Use when code feels harder to work with than it should but the specific problem is unclear. Not for scanning known design smells (use red-flags) or evaluating a module's depth (use deep-modules).

deep-modulesskills/deep-modules/SKILL.md

Measures module depth: whether the interface is simple relative to the implementation behind it. Use when an interface has too many parameters or methods, many small classes each do too little, or methods just forward calls. Not for whether adjacent layers provide different abstractions (use abstraction-quality) or merging/splitting modules (use module-boundaries).

design-it-twiceskills/design-it-twice/SKILL.md

Generates and compares at least two fundamentally different design alternatives on concrete criteria before committing. Use when the user asks to design something twice, or before committing to any significant design of classes, modules, APIs, or architecture. Not for judging strategic vs. tactical investment in existing code (use strategic-mindset) or whether a change degrades design (use code-evolution).

design-reviewskills/design-review/SKILL.md

Orchestrates a structured design review, running the other skills as a diagnostic funnel from complexity triage to a full red-flags sweep. Use when reviewing a file, module, or PR for overall design quality and you want a comprehensive, prioritized assessment. Not for applying one specific lens (use that skill directly) or analyzing how code changed over time (use code-evolution).

diagnoseskills/diagnose/SKILL.md

Routes a vague symptom or complaint to the most relevant Clairvoyance skill via a decision tree. Use when someone describes a problem but doesn't know which skill to reach for. Not for a comprehensive review (use design-review) or a checklist scan (use red-flags).

error-designskills/error-design/SKILL.md

Reviews error handling and exception design, applying the "define errors out of existence" principle. Use when reviewing error handling, when a module throws too many exceptions, or when callers must handle errors they shouldn't need to know about. Not for general caller-burden complexity (use pull-complexity-down); this skill is specifically for exception and error-condition strategy.

general-vs-specialskills/general-vs-special/SKILL.md

Evaluates whether interfaces are appropriately general-purpose. Use when checking interface generality, when if-branches or parameters serve only one caller, or when getters/setters expose internal representation. Not for information leakage across boundaries (use information-hiding) or auditing configuration parameters (use pull-complexity-down).

information-hidingskills/information-hiding/SKILL.md

Checks for information leakage across module boundaries, including temporal decomposition and false encapsulation. Use when modules change together, implementation details leak across boundaries, or structure follows execution order rather than knowledge ownership. Not for merge/split decisions (use module-boundaries) or interfaces over-specialized for one caller (use general-vs-special).

module-boundariesskills/module-boundaries/SKILL.md

Evaluates where module boundaries are drawn and whether modules should be merged or split. Use when deciding whether to combine or separate two modules, when modules are tightly coupled, or when a change to one forces changes to another. Not for depth within a single module (use deep-modules) or abstraction-layer quality (use abstraction-quality).

naming-obviousnessskills/naming-obviousness/SKILL.md

Reviews naming quality and code obviousness via the isolation test, scope-length principle, and consistency audit. Use when names feel vague, something is hard to name (a design signal, not a vocabulary problem), or behavior isn't obvious on first read. Not for comment quality or documentation (use comments-docs).

pull-complexity-downskills/pull-complexity-down/SKILL.md

Checks whether complexity is pushed to callers or absorbed by implementations — the direction complexity flows. Use when callers must do significant setup, handle errors the module could resolve, or configure things they don't understand. Not for module depth (use deep-modules), knowledge leakage (use information-hiding), or exception strategy once an error must surface (use error-design).

red-flagsskills/red-flags/SKILL.md

Scans code against 17 design smells (the book's 14 named Red Flags plus 3 process-stage signals) and produces a structured diagnostic report. Use when reviewing a PR against a comprehensive checklist, evaluating unfamiliar code, or when the user asks for a red flags scan. Not for diagnosing why code feels complex (use complexity-recognition) or whether a PR maintains design trajectory (use code-evolution).

strategic-mindsetskills/strategic-mindset/SKILL.md

Assesses whether code reflects strategic or tactical thinking, including the 10-20% investment rule and tactical-tornado patterns. Use when evaluating design investment, when code was written under time pressure, or when working code consistently degrades the system. Not for judging whether a specific diff looks designed-in or bolted-on (use code-evolution).

Plugin manifests2

.codex-plugin/plugin.json
{
  "name": "clairvoyance",
  "version": "1.3.0",
  "description": "ESP for AI Coding — Agent skills on the philosophy of software design, grounded in decades of engineering experience.",
  "author": {
    "name": "Cody Bromley",
    "email": "[email protected]"
  },
  "homepage": "https://clairvoyance.fyi",
  "repository": "https://github.com/codybrom/clairvoyance",
  "license": "MIT",
  "keywords": [
    "software-design-patterns",
    "software-philosophy",
    "code-quality",
    "design-review"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Clairvoyance",
    "shortDescription": "ESP for AI Coding",
    "longDescription": "Agent skills on the philosophy of software design, grounded in decades of engineering experience.",
    "developerName": "Cody Bromley",
    "category": "Productivity",
    "capabilities": [
      "Instructions"
    ],
    "websiteURL": "https://clairvoyance.fyi"
  }
}
.claude-plugin/plugin.json
{
  "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
  "name": "clairvoyance",
  "version": "1.3.0",
  "description": "ESP for AI Coding — Agent skills on the philosophy of software design, grounded in decades of engineering experience.",
  "author": {
    "name": "Cody Bromley",
    "url": "https://github.com/codybrom",
    "email": "[email protected]"
  },
  "homepage": "https://clairvoyance.fyi",
  "repository": "https://github.com/codybrom/clairvoyance",
  "license": "MIT",
  "keywords": [
    "software-design-patterns",
    "software-philosophy",
    "code-quality",
    "design-review"
  ]
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[clairvoyance on Agent Plugins Marketplace](https://pluginsmp.com/plugins/clairvoyance)