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/xsovad06/sova/agents-mdgit clone --depth 1 https://github.com/xsovad06/sovaWhat 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.03410 | $0.03410 |
| Opus 5 | $0.01705 | $0.01705 |
| Sonnet 5 | $0.00682 | $0.00682 |
| Haiku 4.5 | $0.00341 | $0.00341 |
Grade A, and why
sova AGENTS.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 — 231 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AI Agent Guidance for SOVA
This file provides cross-cutting guidance for any AI agent (Claude Code, Cursor, CodeRabbit, etc.) working in this repository.
SOVA (Software Orchestration Via Agents) is a standalone application that any software project can install to gain autonomous AI-assisted development capabilities. It takes issues from your tracker, develops solutions using TDD, self-reviews, creates PRs, monitors CI, addresses review feedback, and learns from mistakes. The system is written in Python (CLI, roles, scheduler, dashboard).
Context Index
| File | Purpose |
|---|---|
CLAUDE.md |
Claude Code-specific commands, run instructions, knowledge system |
AGENTS.md |
Cross-cutting conventions for all AI tools (this file) |
README.md |
Project overview, installation, usage |
docs/VISION.md |
Product vision and roadmap |
.claude/rules/architecture.md |
Project structure, key paths, design decisions |
.claude/rules/bash-patterns.md |
Shell scripting conventions and gotchas |
.claude/rules/workflow.md |
Development workflow and task finding |
docs/security-guidelines.md |
Credential handling, input sanitization, subprocess safety |
docs/performance-guidelines.md |
Timeouts, caching, concurrency, async patterns |
docs/error-handling-guidelines.md |
Exceptions, logging, retries, fallbacks, circuit breakers |
docs/api-contracts-guidelines.md |
Dashboard API, adapter ABC, LLM output formats |
docs/database-guidelines.md |
ORM models, session management, migrations |
docs/testing-guidelines.md |
pytest patterns, fixtures, mocking, test isolation |
docs/integration-guidelines.md |
GitHub/Jira/SonarCloud integration, handoff protocol |
docs/jira-configuration-guide.md |
Jira Cloud setup, JQL filters, status mapping, troubleshooting |
Project Structure
sova/
sova/ # Python package (SOVA)
cli/ # Typer CLI (sova run, sova triage, etc.)
app.py # Main app, subcommand registration
commands/ # Command modules (run, triage, harden, project, pr, admin, briefing, memory, migrate, commands, server, mcp, supervisor)
core/ # Workflow engine, steps, state machine, context, output writer, DAG executor
roles/ # Agent roles (triage, researcher, developer, reviewer, custom, planner, dispatcher)
adapters/ # Task source plugins (github; jira, linear, manual planned)
llm/ # Claude CLI wrapper, cost tracking
git/ # Git operations (branch, pr, rebase), worktree management
ipc/ # Inter-process: handoff protocol, process control, notifications
knowledge/ # Memory CRUD, tier loading, personas, review patterns
scheduler/ # Watch loop, parallel executor, server daemon
dashboard/ # FastAPI web UI
app.py # App factory
routers/ # 28 API routers (overview, runs, costs, control, feed, handoff, lifecycle, memory, logs, tasks, queue, quota, settings, setup, agents, work, roles, spec, prs, dependencies, resources, supervisor, oversight, fleet_manager, fleet_insights, telemetry, a2a, mcp)
services/ # 40 services (run, cost, memory, control, feed, handoff, lifecycle, queue, batch, work, work_item, task, log, settings, setup, agent_lifecycle, agent_output, agent_recovery, agent_handoff, agent_pool, agent_db, agent_status, agent_context, agent_progress, agent_validation, output, role, spec, pr, pr_metrics, resource, llm_suggestion, output_stream, fleet, fleet_manager, supervisor, oversight, telemetry_push, merge_queue_monitor, mcp_service)
templates/ # Jinja2 HTML (Catppuccin dark + Tailwind)
static/ # JS + CSS + favicon + logo
a2a/ # A2A (Agent-to-Agent) protocol: agent card generation, task state mapping
mcp/ # MCP stdio server (provider-agnostic agent tools via Model Context Protocol)
dashboard/routers/mcp.py # MCP HTTP endpoint for agent self-inspection (read-only runtime queries)
dashboard/services/mcp_service.py # MCP token generation/validation and tool handlers
awareness/ # Awareness subsystem (AwarenessProvider ABC, AwarenessItem, ItemCategory, provider registry, BriefingService aggregation engine, rendering models, rendering/cli_renderer.py Rich terminal output)
oversight/ # Oversight agent: background daemon, operations persona (user-maintained LLM guidance)
supervisor/ # Supervisor-level services (TaskProgressionEngine, CodeRabbit quota, task dependency graph)
gates/ # Gate check functions (one per module): rate_limit, memory_pressure, dependency, human_involvement, quota, ci_budget, slots, budget, already_running, repeated_failure, ownership, merge_conflict, file_conflict, circuit_breaker
commands/ # Command + guideline distribution (catalog, templates, manifest, distribution)
config/ # Pydantic Settings + TOML config + project registry + request context
monitoring/ # Resource monitoring (psutil-based CPU, memory, I/O tracking)
db/ # SQLAlchemy ORM models + async session
utils/ # Logging, shell, formatting
commands/ # 28 standardized commands (markdown with category frontmatter)
.githooks/ # Git hooks (tracked, mirroring CI checks)
invariants/ # Pre-push constraint check scripts (bash)
guidelines/ # Distributable guideline templates (installed to .claude/rules/)
skills/ # Distributable skill templates (installed to .claude/skills/)
personas/ # Tech-stack-specific guidance (markdown)
knowledge/
KNOWLEDGE.md # 4-tier knowledge management system
templates/ # Project scaffolding templates
deploy/ # systemd + launchd service files
tests/ # pytest suite (3200+ tests, 7288 at last count)
docs/
VISION.md # Product vision and roadmap
ARCHITECTURE.md # Architecture overview (points to .claude/rules/)
*-guidelines.md # Domain-specific guidelines (7 files)
design-system.md # Dashboard design system reference
handoff-protocol.md # Agent handoff protocol
naming-journey.md # How SOVA got its name
assets/
agent-icon.png # Notification icon
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 · 231 lines · 3,410 tokens per session scan A 960ac7818c9c
sova AGENTS.md is an instructions file published in the GitHub repository xsovad06/sova (2 stars, last pushed 2d ago), licensed Apache-2.0. It adds 3,410 tokens to every session, about $0.0170 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
autonomous-dev CLAUDE.md
Claude Code instructions for akaszubski/autonomous-dev, covering autonomous-dev, critical rules, maintainer escape hatches, architecture and code navigation.
planning-with-files AGENTS.md
AGENTS.md instructions for OthmanAdi/planning-with-files, covering agents.md — planning-with-files agent reference card, commit rules, release checklist (12 steps), version bump scope and changelog format.
autoharness AGENTS.md
Instructions for tigerless-labs/autoharness: This repo uses Open Knowledge — collaborative markdown via MCP. .open-knowledge/config.yml (with optional /.open-knowledge/config.yml; CLI/env may override) is the path contract: content.dir is the root for relative paths; content.include lists globs that add markdown…
ESAA-Core AGENTS.md
Instructions for elzobrito/ESAA-Core, covering agents.md — contrato operacional codex/esaa, 1. autoridade e termos, 2. cli e runner, ou configure o runner uma vez por sessão and 3. concorrência.
mcpelevator CLAUDE.md
Instructions for pacnpal/mcpelevator, covering commands, architecture, conventions, agent skills and issue tracker.
clawchat-plugin-connect AGENTS.md
Instructions for XMethues/clawchat-plugin-connect, covering agent skills, issue tracker, triage labels and domain docs.