red-flags

red-flags is a skill for Claude Code, Codex from codybrom/clairvoyance. It costs 86 tokens per session (2,429 once invoked), scanned A, original, MIT.

A checklist-based scan for 17 warning signs that code may have design problems. A warning sign points to a possible issue but does not explain its root cause.

In plain words
What is it for?
Use it before merging a pull request, during a design review, or when checking code against common design smells.
Why use it?
It helps identify what feels wrong in unfamiliar code or a pull request when the exact design problem is unclear. This can guide a deeper review.

Skill for Claude CodeCodex

Part of the clairvoyance plugin — 16 skills, 1 agent shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/codybrom/clairvoyance/red-flags
Any agent
npx skills add codybrom/clairvoyance --skill red-flags
Clone the repo
git clone --depth 1 https://github.com/codybrom/clairvoyance

Made for: Claude Code, Codex.

Or install clairvoyance, the plugin that ships this one along with the rest of its 16 skills, 1 agent.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for red-flags

README.md
[![agentmods](https://agentmods.dev/badge/skills/codybrom/clairvoyance/red-flags.svg)](https://agentmods.dev/skills/codybrom/clairvoyance/red-flags)
Your own site
<a href="https://agentmods.dev/skills/codybrom/clairvoyance/red-flags"><img src="https://agentmods.dev/badge/skills/codybrom/clairvoyance/red-flags.svg" alt="Measured on agentmods" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,429 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00086 $0.02429
Opus 5 $0.00043 $0.01215
Sonnet 5 $0.00017 $0.00486
Haiku 4.5 $0.00009 $0.00243

Measured 4d ago against content hash 7ec239f840a9, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

red-flags scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/red-flags/SKILL.md · 250 lines

How it starts

The opening of the file, as written. The whole thing — 250 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Red Flags Diagnostic

When invoked with $ARGUMENTS, scope the scan to the specified file or directory. Read the target code first, then run every flag below against it. Each flag points to a deeper lens from Clairvoyance (https://clairvoyance.fyi). This skill works best when the full collection is installed.

A red flag is a signal, not a diagnosis. It tells you something is wrong but not why. Each flag below points to a deeper lens that identifies the root cause.

When to Apply

  • Before merging a PR or completing a design review
  • When code "feels wrong" but the specific problem is unclear
  • When evaluating unfamiliar code for design quality
  • When asked for a "red flags check" or "design diagnostic"

The Red Flags

Structural (4)

1. Shallow Module

Interface isn't much simpler than implementation.

  • Check:deep-modules, error-design
    • Could a caller skip this module and do the work directly?
  • Signals:
    • More public methods than meaningful internal state
    • Abstract class with only one implementation and no prospect of more
    • Layer that exists "for testability" but adds no abstraction value
    • A split that created more total interface surface than the original
    • Error handling code longer than the happy path
    • Excessive exceptions in a method signature
2. Pass-Through Method

Method forwards arguments to another with a similar signature, adding zero logic.

  • Check:deep-modules, abstraction-quality
    • Does removing the method lose any behavior?
  • Signals:
    • Method takes N parameters, passes N-1 unchanged
    • Constructor injects collaborators just to delegate
    • Class API mirrors its dependency's API
    • Wrapper adds one behavior, delegates everything else
    • "Wrapper" or "Adapter" classes that add no functionality
    • Many thin layers providing the same abstraction
    • Decorator with nineteen pass-throughs for one behavior
3. Conjoined Methods

Two separate pieces of code that can only be understood together.

Read the full file on GitHub · 250 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 250 lines · 86 tokens per session scan A 7ec239f840a9

Subscribe to this mod's changes

red-flags is a skill published in the GitHub repository codybrom/clairvoyance (12 stars, last pushed 1mo ago), licensed MIT. It adds 86 tokens to every session and 2,429 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

agent-architecture-planner

Use when designing an autonomous agent, planning agent architecture, building a scheduled automation, or creating a Claude Code agent workflow. Triggers: 'design an agent', 'build an automation', 'agent architecture', 'automate this workflow', 'create a scheduled agent', 'shell script agent'.

majiayu000/claude-skill-registry · 64 tokens

81-pipecat

Create your Pipecat skill from official documentation, then learn to improve it throughout the chapter.

majiayu000/claude-skill-registry · 18 tokens

2026-legal-research-agent

Expert legal research agent for finding and scraping expungement data state by state. Knows authoritative sources, URL patterns, Firecrawl configuration, and 2026 legal landscape. Activate on "find expungement data", "scrape state laws", "legal research", "court URLs", "statute sources", "Clean Slate laws", "automatic…

majiayu000/claude-skill-registry · 103 tokens

80-livekit-agents-majiayu000-claude-skill-registr

Create your LiveKit Agents skill from official documentation, then learn to improve it throughout the chapter.

majiayu000/claude-skill-registry · 18 tokens

ac-lock

Phase 4.0 — Acceptance Criteria lock checkpoint before implementation. Consolidates all ACs from PRD, TechSpec, and Tasks, presents to user for confirmation, and saves the locked AC list to accepted-criteria.md. Implementation only starts after explicit user confirmation.

majiayu000/claude-skill-registry · 57 tokens

advisor-triggers

Detects when user requests warrant critical analysis via /advise command.

majiayu000/claude-skill-registry · 17 tokens