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/sevenseconds/vibescout/claude-mdgit clone --depth 1 https://github.com/sevenseconds/vibescoutWrote 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/sevenseconds/vibescout/claude-md)<a href="https://agentmods.dev/instructions/sevenseconds/vibescout/claude-md"><img src="https://agentmods.dev/badge/instructions/sevenseconds/vibescout/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.03221 | $0.03221 |
| Opus 5 | $0.01611 | $0.01611 |
| Sonnet 5 | $0.00644 | $0.00644 |
| Haiku 4.5 | $0.00322 | $0.00322 |
Grade A, and why
vibescout 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 2d 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 — 364 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.
Project Overview
VibeScout is a high-performance Model Context Protocol (MCP) server for local semantic code search and AI-powered assistance. It transforms codebases into searchable, chat-ready knowledge bases using local or cloud-based AI providers.
Commands
Development
# Run tests
npm test
# Run a specific test file
npx vitest run tests/embeddings.test.js
# Lint code
npm run lint
# Build UI
npm run build:ui
Server Operations
# Start Web UI (dashboard at http://localhost:3000)
vibescout ui
# Start MCP server (stdio mode for Claude Desktop/Cursor)
vibescout --mcp stdio
# Start MCP server (HTTP/SSE mode)
vibescout --mcp sse --port 3000
# Index a folder
vibescout index ./my-project "My Project"
# Force full re-index
vibescout index ./my-project "My Project" --force
# Search from terminal
vibescout search "how does auth work?"
# Compact database (remove stale files)
vibescout compact
# Reset database (clear all data)
vibescout reset
UI Development
cd ui
npm run dev # Start Vite dev server
npm run build # Build for production
npm run lint # Lint UI code
Architecture
Entry Points
src/index.js- Main CLI entry point using Commander.jsbin/vibescout.js- Executable wrappersrc/server.js- MCP server and HTTP API (Hono-based)
Core Systems
Provider Architecture (src/providers/)
- All providers implement
EmbeddingProviderand/orSummarizerProviderinterfaces frombase.ts - Embedding providers generate vectors:
generateEmbedding(text)orgenerateEmbeddingsBatch(texts) - Summarizer providers handle LLM operations:
summarize(),generateBestQuestion(),generateResponse() - Providers include: Local (Transformers.js), Ollama, OpenAI, Gemini, Cloudflare, Z.AI, Bedrock
src/embeddings.ts- Manages provider instances with adaptive concurrency throttling
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.
- 2d ago First seen · 364 lines · 3,221 tokens per session scan A 6d910a8108cc
vibescout CLAUDE.md is an instructions file published in the GitHub repository sevenseconds/vibescout (0 stars, last pushed 7mo ago), licensed MIT. It adds 3,221 tokens to every session, about $0.0161 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.
Other instructions, from other repositories
GPT-RAG AGENTS.md
Instructions for Azure/GPT-RAG, covering gpt-rag agent operating contract, priority, what this repository is, repository boundaries and how to work.
GPT-RAG release.instructions.md
Instructions for Azure/GPT-RAG, a project described as: Sharing the learning along the way we been gathering to enable Azure OpenAI at enterprise scale in a secure manner. GPT-RAG core is a Retrieval-Augmented Generation pattern running in Azure, using Azure Cognitive Search for retrieval and Azure OpenAI large…
RAGElo copilot-instructions.md
Instructions for zetaalphavector/RAGElo, covering copilot instructions — ragelo, project overview, commands, install for development and run with openai integration tests (requires openaiapikey).
pdf-brain AGENTS.md
Instructions for joelhooks/pdf-brain, covering pdf-brain agent notes, libsql quirks, ai sdk pattern, key files and docs.
rag-code-mcp copilot-instructions.md
Instructions for doITmagic/rag-code-mcp, covering copilot instructions - ragcode mcp, ⚖️ the golden rule, project overview, architecture & patterns and developer workflows.
gpt-rag-mcp AGENTS.md
Instructions for Azure/gpt-rag-mcp, covering gpt-rag mcp engineering-agent contract, priority, what this repository is, repository boundaries and how to work.