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.
npx agentmods add instructions/vibesolve/vibesolve/claude-mdgit clone --depth 1 https://github.com/vibesolve/vibesolveWrote 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.
[](https://agentmods.dev/instructions/vibesolve/vibesolve/claude-md)<a href="https://agentmods.dev/instructions/vibesolve/vibesolve/claude-md"><img src="https://agentmods.dev/badge/instructions/vibesolve/vibesolve/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.03719 | $0.03719 |
| Opus 5 | $0.01860 | $0.01860 |
| Sonnet 5 | $0.00744 | $0.00744 |
| Haiku 4.5 | $0.00372 | $0.00372 |
Grade A, and why
vibesolve 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 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.
How it starts
The opening of the file, as written. The whole thing — 309 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Working conventions
- Never commit without explicit user approval. Always show the proposed commit(s) and wait for the user to say "go ahead" before running
git commit. See also AGENTS.md — a guide for AI coding agents covering the same pipeline plus generated-project conventions and debugging shortcuts; keep the two in sync when architecture changes.
Overview
Multi-agent system that generates complete Timefold Solver projects from natural language problem descriptions. Uses OpenAI API with a sequential pipeline (up to 9 agents) where each agent specializes in one aspect of code generation. Generated projects are validated via Docker (Maven compile + execution) and automatically fixed by a feedback loop. An optional interactive user-validation step lets users review and correct the parsed problem spec before code generation begins.
Setup
# Create the environment and install the package (do this once, or after adding dependencies)
uv sync --extra dev
# Activate it — once per shell; puts `vibesolve` and `pytest` on PATH
source .venv/bin/activate
# Configure API key
# Create .env.local with OPENAI_API_KEY=your-key
# Build the Docker validator image (first run only)
docker build -t timefold-validator docker/
Important: This project requires Python 3.11+ for modern type annotations. All commands below assume the venv is activated. In a shell where it isn't, prefix the command with uv run (e.g. uv run vibesolve run) — uv picks the project environment automatically.
Running the Pipeline
# Single problem (default: user_input/timetable.txt)
vibesolve run
# Specific input file
vibesolve run user_input/hospital-rostering.txt
# Skip the Docker validation/fixer loop
vibesolve run --no-validation-loop
# Pause after parsing to review and correct the problem spec before code generation
vibesolve run --user-validate
# Custom reasoning effort and fixer iterations
vibesolve run --reasoning-effort medium --max-iterations 5
# Emit a Dockerfile + docker-run.sh into the generated project
# (only happens on success; the script is NOT started automatically)
vibesolve run --serve
# Parallel batch across all *.txt in user_input/
vibesolve batch
# Batch with more workers
vibesolve batch --workers 5
# Batch + emit Dockerfiles so the benchmark can also measure "Docker works"
vibesolve batch --serve
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.
- 4d ago First seen · 309 lines · 3,719 tokens per session scan A ea0f5d7ec09b
vibesolve CLAUDE.md is an instructions file published in the GitHub repository vibesolve/vibesolve (24 stars, last pushed 6d ago), licensed MIT. It adds 3,719 tokens to every session, about $0.0186 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.
Other instructions, from other repositories
pydantic-ai AGENTS.md
AGENTS.md instructions for pydantic/pydantic-ai, covering your primary responsibility is to the project and its users, gathering context on the task, ensuring the task is ready for implementation, philosophy and requirements of all contributions.
pixeltable CLAUDE.md
Claude Code instructions for pixeltable/pixeltable, covering claude.md, protected configuration, project overview, repository structure and setup commands.
ai-dev-gallery adding-wcrapis.instructions.md
Instructions for microsoft/ai-dev-gallery, covering windows ai apis (wcrapis) sample instructions, limited access features (laf), important security note, feature availability checks and model types for wcrapis.
DevoxxGenieIDEAPlugin GEMINI.md
Instructions for devoxx/DevoxxGenieIDEAPlugin, a project described as: DevoxxGenie is an agentic plugin for IntelliJ IDEA that uses local LLM's (Ollama, LMStudio, GPT4All, Jan and Llama.cpp) and Cloud based LLMs to help review, test, explain your project code. Latest version now also supports Spec Driven Development…
easy-vibe AGENTS.md
AGENTS.md instructions for datawhalechina/easy-vibe, covering repository guidelines, project structure & module organization, build, test, and development commands, coding style & naming conventions and testing guidelines.
ClimaAtmos.jl AGENTS.md
Instructions for CliMA/ClimaAtmos.jl, covering climaatmos agent guide, ecosystem guidelines, repo-specific guidelines, local norms and self-correction.