codevira GEMINI.md

codevira GEMINI.md is an instructions file for Gemini CLI from sachinshelke/codevira. It costs 1,224 tokens per session, scanned A, original, MIT.

Repository instructions for Codevira, a persistent memory system for coding tools.

In plain words
What is it for?
Use them at the start of a session, before editing files, and before adopting or changing project patterns, libraries, or naming conventions.
Why use it?
They help the agent retrieve project history and architectural decisions before making changes, reducing repeated mistakes and conflicting edits.

Instructions file for Gemini CLI

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

Made for: Gemini CLI.

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 codevira GEMINI.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/sachinshelke/codevira/gemini-md.svg)](https://agentmods.dev/instructions/sachinshelke/codevira/gemini-md)
Your own site
<a href="https://agentmods.dev/instructions/sachinshelke/codevira/gemini-md"><img src="https://agentmods.dev/badge/instructions/sachinshelke/codevira/gemini-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,224 This file is loaded in full into every session.
When invoked 1,224 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.01224 $0.01224
Opus 5 $0.00612 $0.00612
Sonnet 5 $0.00245 $0.00245
Haiku 4.5 $0.00122 $0.00122

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

Security

Grade A, and why

codevira GEMINI.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 3d 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.

GEMINI.md · 83 lines

How it starts

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

Codevira — persistent project memory

This project uses Codevira to give every AI coding tool you use shared memory of the project. Decisions, fix history, the structural code graph, and learned style preferences persist across sessions and across IDEs.

When to call which Codevira tool

Call these MCP tools at the moments the description matches your action — they are fast (tens of ms), token-efficient (summary-by-default), and what makes the project's memory available to you.

At the start of every session

  • get_session_context() — Always call this first. Returns a ~500-token brief: current focus, recent decisions, top open items. Without it you're blind to the project's history.

Before modifying any file

  • get_impact(file_path) — Returns who calls this code (callers, dependents, blast radius). Required before any rename, signature change, or cross-cutting refactor. If callers > a small number, propose a deprecation+migration plan instead of a direct edit.

  • search_decisions(query) — Returns prior architectural decisions touching the topic. Decisions with do_not_revert: true MUST be respected; if your proposed change conflicts, surface the decision to the user and wait for approval before proceeding.

Before adopting a pattern, library, or naming convention

  • search_preferences(category) — Returns this project's coding style (snake_case vs camelCase, error-handling idioms, test layout, etc.). Match these unless the user explicitly asks to change them.

When you fix a bug or land an architectural choice

  • record_decision(...) — Capture the why: what alternatives were considered, why this won, what would force a re-examination. A one-line decision is enough; the value compounds across sessions and across the other AI tools the user opens this project in.

  • For commits that fix a bug, prefer commit messages starting with fix:, bug:, hotfix:, or fixes #N. Codevira scans these into a fix-history database used by the Anti-Regression hero to block silent re-introduction of fixed bugs. (v3.7.0: the scan now self-freshens on read — fix_history.lookup() re-scans when git HEAD has advanced — so fix: commits made after the server started are picked up without a restart.)

Read the full file on GitHub · 83 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. 3d ago First seen · 83 lines · 1,224 tokens per session scan A a190396f8369

Subscribe to this mod's changes

codevira GEMINI.md is an instructions file published in the GitHub repository sachinshelke/codevira (12 stars, last pushed 18d ago), licensed MIT. It adds 1,224 tokens to every session, about $0.0061 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

agents-memory AGENTS.md

AGENTS.md instructions for Lolaplex/agents-memory, covering agent install (this repo), procedure and done when.

Lolaplex/agents-memory · 1,011 tokens

ai-mind-map copilot-instructions.md

Copilot instructions for shdra06/ai-mind-map, covering ai mind map mcp — code memory engine (v1.4.0), 🚀 first thing to do in every conversation, quick lookup: "i need to..." → use this tool, ⚡ session lifecycle (always use these) and 🔍 find code (instead of grep/reading files).

shdra06/ai-mind-map · 1,132 tokens

vibe-memory CLAUDE.md

Claude Code instructions for shahrukh-hack/vibe-memory, covering claude code integration guide and memory lifecycle commands.

shahrukh-hack/vibe-memory · 78 tokens

vibe-memory AGENTS.md

AGENTS.md instructions for shahrukh-hack/vibe-memory: This repository adheres to the Universal Agent Memory Protocol (AGENTMEMORY.md). All AI agents (Antigravity, Cursor, Claude Code, OpenAI Codex) share the same persistent memory context.

shahrukh-hack/vibe-memory · 48 tokens

agents-memory CLAUDE.md

Claude Code instructions for Lolaplex/agents-memory, a project described as: Local markdown memory & cross-agent context engine for AI coding assistants (MCP + injection).

Lolaplex/agents-memory · 3 tokens

ai-mind-map CLAUDE.md

Claude Code instructions for shdra06/ai-mind-map, covering ai mind map mcp — code memory engine (v1.4.0), 🚀 first thing to do in every conversation, quick lookup: "i need to..." → use this tool, ⚡ session lifecycle (always use these) and 🔍 find code (instead of grep/reading files).

shdra06/ai-mind-map · 1,132 tokens