data-olympus AGENTS.md

data-olympus AGENTS.md is an instructions file for Codex, OpenCode from knaisoma/data-olympus. It costs 1,583 tokens per session, scanned A, original, Apache-2.0.

Project instructions for Data Olympus, a knowledge-base service that lets coding agents search company information before making governed changes.

In plain words
What is it for?
Use them when developing Data Olympus, working with its Python commands, SQLite search index, MCP server, REST service, configuration, or project-specific coding standards.
Why use it?
They explain the project’s architecture and rules, helping contributors preserve its small dependency set and required knowledge-consultation workflow.

Instructions file for CodexOpenCode

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/knaisoma/data-olympus/agents-md
Clone the repo
git clone --depth 1 https://github.com/knaisoma/data-olympus

Made for: Codex, OpenCode.

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 data-olympus AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/knaisoma/data-olympus/agents-md.svg)](https://agentmods.dev/instructions/knaisoma/data-olympus/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/knaisoma/data-olympus/agents-md"><img src="https://agentmods.dev/badge/instructions/knaisoma/data-olympus/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,583 This file is loaded in full into every session.
When invoked 1,583 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.01583 $0.01583
Opus 5 $0.00792 $0.00792
Sonnet 5 $0.00317 $0.00317
Haiku 4.5 $0.00158 $0.00158

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

Security

Grade A, and why

data-olympus 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 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.

AGENTS.md · 105 lines

How it starts

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

Data Olympus

Project Overview

Data Olympus is the knowledge base service that coding agents consult before making decisions. It indexes the company-knowledge corpus and serves it over MCP and REST, and it enforces that agents consult it before governed changes.

It is the authority behind the tier model (T1 Universal, T2 Stack, T3 Project, T4 Component; see GDEC-017), decisions, and workflows.

Stack, as declared in pyproject.toml:

  • Python >=3.13, managed with uv
  • Runtime dependencies are deliberately few: fastmcp, pydantic, pyyaml, regex
  • Two entry points: data-olympus-mcp (the MCP server) and data-olympus (the CLI)

There is no web framework and no database server. Keep it that way unless a decision says otherwise: the small dependency surface is a feature, because this service is a dependency of every other project's agent workflow.

Architecture

Storage is SQLite. The index lives at KB_INDEX_PATH (default /index/kb.db) and is rebuilt atomically into a temporary file before being swapped in.

Retrieval is a SQLite FTS5 index with BM25 ranking, layered with progressively broader fallbacks:

Module Role
index.py FTS5 index over the KB markdown corpus
query_expansion.py synonym and acronym expansion
cooccurrence.py corpus co-occurrence expansion, embedding free
trigram.py fuzzy fallback for typos and partial identifiers
embeddings.py optional local ONNX hybrid ranking, blended with BM25

embeddings.py is off by default. It requires the embeddings extra and KB_EMBEDDINGS_MODE, imports its libraries lazily, and never calls an external API at query time. With the extra absent and the variable unset, the product is byte-for-byte unchanged. Do not describe this service as a vector or RAG pipeline: the default retrieval path is lexical.

Serving is server.py (MCP tools) and rest_api.py (the REST mirror). The enforcement surface is enforce_policy.py, write_gate.py, governed_lane.py, auth.py, principals.py, and rate_limit.py.

Read the full file on GitHub · 105 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 · 105 lines · 1,583 tokens per session scan A dfba17e75184

Subscribe to this mod's changes

data-olympus AGENTS.md is an instructions file published in the GitHub repository knaisoma/data-olympus (23 stars, last pushed 23d ago), licensed Apache-2.0. It adds 1,583 tokens to every session, about $0.0079 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.