Gorev CLAUDE.md

Gorev CLAUDE.md is an instructions file for coding agents from msenol/Gorev. It costs 2,619 tokens per session, scanned C, original, MIT.

A set of coding instructions for the Gorev project, including rules for Claude Code and other editors that support MCP. MCP is a standard way for coding tools to connect to outside services.

In plain words
What is it for?
Use it when an assistant works on Gorev and needs its architecture, implementation rules and quality checklist.
Why use it?
It gives coding assistants project-specific guidance and discourages shortcuts, duplicated code and disabled checks.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/msenol/gorev/claude-md.svg)](https://agentmods.dev/instructions/msenol/gorev/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/msenol/gorev/claude-md"><img src="https://agentmods.dev/badge/instructions/msenol/gorev/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,619 This file is loaded in full into every session.
When invoked 2,619 The same file — it is already loaded in full.
Security scan C 2 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.02619 $0.02619
Opus 5 $0.01309 $0.01309
Sonnet 5 $0.00524 $0.00524
Haiku 4.5 $0.00262 $0.00262

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

Security

Grade C, and why

Gorev CLAUDE.md scanned grade C with 2 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

cd gorev-vscode && rm -rf out/ # Extension only

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl http://localhost:5082/api/health # Health check endpoint
CLAUDE.md · 286 lines

How it starts

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

CLAUDE.md

This file provides essential guidance to AI assistants using MCP (Model Context Protocol) when working with code in this repository. Compatible with Claude Code, VS Code with MCP extension, Windsurf, Cursor, and other MCP-enabled editors.

Last Updated: Auto-condensed on $(date '+%d %B %Y') | Version: v0.15.24


Note: This file has been auto-condensed to maintain optimal size. Critical rules and essential information are preserved.

🚨 Rule 15: Comprehensive Problem-Solving & Zero Technical Debt

ZERO TOLERANCE for shortcuts, workarounds, or temporary fixes

Core Principles

  1. NO Workarounds: Every problem requires root cause analysis and proper solution
  2. NO Code Duplication: DRY (Don't Repeat Yourself) principle is absolute
  3. NO Technical Debt: "Şimdilik böyle kalsın" approach is FORBIDDEN
  4. NO Quick Fixes: Every solution must be production-ready
  5. NO Disabled Tests/Lints: Fix test and lint errors instead of bypassing them

Implementation Rules

  • "temporary", "workaround", "quick fix", "hotfix", "band-aid"
  • @ts-ignore, @ts-expect-error, eslint-disable, //nolint
  • ❌ Hardcoded values "for speed"
  • ❌ Copy-paste solutions
  • ✅ Root cause analysis
  • ✅ Proper abstraction and reusability
  • ✅ Comprehensive testing
  • ✅ Clean, maintainable code

For Gorev Project Specifically

  • Template Enforcement: All tasks MUST use templates (v0.10.0+)
  • Domain Terms: Turkish domain terminology must be preserved
  • i18n Compliance: Use i18n.T() for all user-facing strings
  • Test Coverage: Maintain ~71% server (goal: 80%+), 100% extension
  • Atomic Tasks: Even atomic tasks must be comprehensive

Quality Checklist

  • Root cause identified and addressed
  • No temporary workarounds introduced
  • DRY principle followed (no duplication)
  • All tests passing without disabling
  • Proper error handling with context
  • i18n keys used for user messages

Read the full file on GitHub · 286 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 · 286 lines · 2,619 tokens per session scan C 4eadaa7a3967

Subscribe to this mod's changes

Gorev CLAUDE.md is an instructions file published in the GitHub repository msenol/Gorev (1 stars, last pushed 7mo ago), licensed MIT. It adds 2,619 tokens to every session, about $0.0131 per session on Opus 5. A static security scan graded it C with 2 findings (recursive force delete, makes network calls). 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

graymatter AGENTS.md

AGENTS.md instructions for angelnicolasc/graymatter, covering agents.md, your tools, when to call which, first call and identity.

angelnicolasc/graymatter · 1,001 tokens

graymatter CLAUDE.md

Claude Code instructions for angelnicolasc/graymatter, covering claude.md, a user asked you to set graymatter up, you are working in a project that already uses graymatter and you are contributing to graymatter itself.

angelnicolasc/graymatter · 615 tokens

calva-backseat-driver AGENTS.md

Instructions for BetterThanTomorrow/calva-backseat-driver, covering calva backseat driver - ai agent guide, essential architecture, action/effect system ("ex"), runtime state structure and datascript connections.

BetterThanTomorrow/calva-backseat-driver · 3,441 tokens

calva-backseat-driver backseat-driver-source-conventions.instructions.md

Backseat Driver extension source code conventions — Ex framework patterns, async, state management, namespace separation, and naming. Supplements universal Clojure patterns with Backseat Driver-specific rules.

BetterThanTomorrow/calva-backseat-driver · 1,225 tokens

calva-backseat-driver copilot-instructions.md

Instructions for BetterThanTomorrow/calva-backseat-driver, covering what backseat driver is, repl environment, state inspection safety, bundled ai context (chatskills / chatinstructions) and key development commands.

BetterThanTomorrow/calva-backseat-driver · 492 tokens

gitlab-mcp-server copilot-instructions.md

Copilot instructions for jmrplens/gitlab-mcp-server, covering gitlab-mcp-server — gitlab mcp server in go, project overview, architecture, project structure and development conventions.

jmrplens/gitlab-mcp-server · 4,832 tokens