vibecheck CLAUDE.md

vibecheck CLAUDE.md is an instructions file for coding agents from EpleCheck/vibecheck. It costs 1,570 tokens per session, scanned A, original, MIT.

A project guide for VibeCheck, a chat-edited content system whose pages are typed data rather than hand-written markup. It documents a Node.js workspace repository containing a schema package, an Astro website, and an MCP server.

In plain words
What is it for?
It helps install dependencies, build and preview the site, run type checks, and edit page YAML files in the documented content structure.
Why use it?
It gives coding agents and contributors the project structure, requirements, commands, and rules for editing content safely. Shared schemas help keep the website and MCP server consistent.

Instructions file

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 instructions/eplecheck/vibecheck/claude-md
Clone the repo
git clone --depth 1 https://github.com/EpleCheck/vibecheck

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 vibecheck CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/eplecheck/vibecheck/claude-md.svg)](https://agentmods.dev/instructions/eplecheck/vibecheck/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/eplecheck/vibecheck/claude-md"><img src="https://agentmods.dev/badge/instructions/eplecheck/vibecheck/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,570 This file is loaded in full into every session.
When invoked 1,570 The same file — it is already loaded in full.
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.1 $0.01570 $0.01570
Opus 5 $0.00785 $0.00785
Sonnet 5 $0.00314 $0.00314
Haiku 4.5 $0.00157 $0.00157

Measured 5d ago against content hash fe0fd293797e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

vibecheck CLAUDE.md 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 5d 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.

CLAUDE.md · 130 lines

How it starts

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

VibeCheck — repo guide

VibeCheck is "the CMS you talk to": a git-backed, schema-safe headless CMS you edit by chatting with an AI agent. A page is typed data, not markup, so machine-generated content can't break the build. This file orients both Claude and human contributors working in the repo.

Requirements

  • Node 22+ and npm (uses workspaces)
  • git
  • Optional, only to run the MCP server: a GitHub token and (for the container) Docker

Layout (npm-workspaces monorepo)

packages/schema   @vibecheck/schema — the content contract (zod). Single source of truth.
apps/site         the Astro site — renderer + content. Deploys as static HTML.
apps/mcp          @vibecheck/mcp — the MCP server (lets an agent edit from anywhere).

site and mcp both import @vibecheck/schemanever define a schema in two places.

Setup & commands

npm install
npm run build          # build:schema -> build:site (validates content) -> typecheck:mcp
npm run dev -w site    # local preview at http://localhost:4321

Editing content (the main task)

Pages are YAML in apps/site/src/content/pages/**/*.yaml. A page is a title plus a list of typed sections: hero | features | pricing | cta | richtext | faq | testimonials | embed | heading | image | gallery | divider | spacer | iconlist | form. Only richtext carries raw HTML.

  • Add/edit a page → edit the YAML directly. home.yaml is the front page.
  • A nested file a/b.yaml becomes /a/b/ and gets an automatic breadcrumb.
  • Always run npm run build before committing — it validates every page against the schema. A green build means the content is valid (this is exactly what CI runs).

Reach for a typed section before richtext

richtext is the escape hatch, not the default — raw HTML is the one thing that can break the build, so prefer a typed section whenever one fits:

  • FAQ → use the faq section (faq.yaml is the worked example). It emits FAQPage JSON-LD for SEO; faking one with features or richtext does not.
  • Testimonials/reviews → use the testimonials section (home.yaml is the worked example). It emits Review JSON-LD; set subject so each review names what it's reviewing. Don't fake quotes with features or richtext.
  • Feature/service grid, teamfeatures (title + body, optional image/href). Don't hand-write card markup in richtext.
  • Video (YouTube/Vimeo) → use the embed section (about.yaml is the worked example). It builds the iframe from an allowlisted provider + bare id, so a raw <iframe> in richtext is never needed (and is the kind of HTML that can break the build).
  • Plans/tierspricing. Lead-in + buttonhero or cta.
  • A single image → use the image section (required alt, optional caption/link), not an <img> in richtext. Several imagesgallery (grid or carousel). components.yaml is the worked example for both.
  • A section heading on its ownheading (h2/h3). A checklist / feature ticksiconlist (allowlisted icon names, never raw SVG). A rule / vertical gapdivider / spacer. All shown in components.yaml.

Read the full file on GitHub · 130 lines

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. 5d ago First seen · 130 lines · 1,570 tokens per session scan A fe0fd293797e

Subscribe to this mod's changes

vibecheck CLAUDE.md is an instructions file published in the GitHub repository EpleCheck/vibecheck (1 stars, last pushed 1mo ago), licensed MIT. It adds 1,570 tokens to every session, about $0.0078 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-31.

Related

Other instructions, from other repositories

payload CLAUDE.md

Claude Code instructions for payloadcms/payload, covering claude.md, project structure, key directories, architecture notes and quick start.

payloadcms/payload · 5,182 tokens

emdash AGENTS.md

AGENTS.md instructions for emdash-cms/emdash, covering rules, workflow, architecture, code patterns and database: never interpolate into sql.

emdash-cms/emdash · 6,651 tokens

payload AGENTS.md

AGENTS.md instructions for payloadcms/payload, a project described as: Payload is the open-source, fullstack Next.js framework, giving you instant backend superpowers. Get a full TypeScript backend and admin panel instantly. Use Payload as a headless CMS or for building powerful applications.

payloadcms/payload · 12 tokens

sonicjs AGENTS.md

AGENTS.md instructions for SonicJs-Org/sonicjs, covering sonicjs agent guidelines, decision tree — code exploration, rtk (rust token killer), caveman mode and delegation — cavecrew subagents.

SonicJs-Org/sonicjs · 2,447 tokens

sonicjs CLAUDE.md

Claude Code instructions for SonicJs-Org/sonicjs, covering sonicjs ai development guidelines, core technology stack, workspace boundary (conductor), architecture direction: document model (authoritative) and the 5 document tables (migration 0002documents.sql).

SonicJs-Org/sonicjs · 4,697 tokens

flowwink CLAUDE.md

Claude Code instructions for magnusfroste/flowwink, covering claude.md, commands, development (auto-runs migrations before starting), production build and lint.

magnusfroste/flowwink · 7,295 tokens