vibesolve CLAUDE.md

vibesolve CLAUDE.md is an instructions file for coding agents from vibesolve/vibesolve. It costs 3,719 tokens per session, scanned A, original, MIT.

A project guide for vibesolve, a system that turns natural-language problem descriptions into Timefold Solver projects through a sequence of specialized agents.

In plain words
What is it for?
Use it when installing dependencies, configuring the OpenAI API, creating the local environment file, or following the project's development conventions.
Why use it?
It explains the setup and working rules needed to develop the project consistently, including its API configuration, validation process, and approval before commits.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/vibesolve/vibesolve/claude-md.svg)](https://agentmods.dev/instructions/vibesolve/vibesolve/claude-md)
Your own site
<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>
Per session 3,719 This file is loaded in full into every session.
When invoked 3,719 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 $0.03719 $0.03719
Opus 5 $0.01860 $0.01860
Sonnet 5 $0.00744 $0.00744
Haiku 4.5 $0.00372 $0.00372

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

Security

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.

CLAUDE.md · 309 lines

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

Read the full file on GitHub · 309 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. 4d ago First seen · 309 lines · 3,719 tokens per session scan A ea0f5d7ec09b

Subscribe to this mod's changes

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.

Related

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.

pydantic/pydantic-ai · 3,618 tokens

pixeltable CLAUDE.md

Claude Code instructions for pixeltable/pixeltable, covering claude.md, protected configuration, project overview, repository structure and setup commands.

pixeltable/pixeltable · 3,256 tokens

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.

microsoft/ai-dev-gallery · 738 tokens

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…

devoxx/DevoxxGenieIDEAPlugin · 257 tokens

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.

datawhalechina/easy-vibe · 526 tokens

ClimaAtmos.jl AGENTS.md

Instructions for CliMA/ClimaAtmos.jl, covering climaatmos agent guide, ecosystem guidelines, repo-specific guidelines, local norms and self-correction.

CliMA/ClimaAtmos.jl · 691 tokens