arcane AGENTS.md

Project guidance for Arcane, a personal engineering memory system. Arcane stores decisions, bugs, patterns, and lessons from development work in a searchable database and provides them to AI assistants.

In plain words
What is it for?
Use it when navigating Arcane’s command-line tools, database layer, search, plugins, services, or MCP server.
Why use it?
It gives an agent the project’s structure and conventions so it can work consistently with the memory system’s code.

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/edition-x/arcane/agents-md
Clone the repo
git clone --depth 1 https://github.com/Edition-X/arcane

Made for: Codex, OpenCode.

Per session 1,722 This file is loaded in full into every session.
When invoked 1,722 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.01722 $0.01722
Opus 5 $0.00861 $0.00861
Sonnet 5 $0.00344 $0.00344
Haiku 4.5 $0.00172 $0.00172

Measured yesterday against content hash 14e81097c194, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

arcane 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 yesterday.

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 · 157 lines

How it starts

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

Arcane — Agent Guidance

This file tells AI coding agents (Claude Code, Cursor, Copilot Workspace, etc.) how to work with this codebase effectively.

Project Overview

Arcane is a personal engineering memory system exposed as an MCP (Model Context Protocol) server. It stores decisions, bugs, patterns, and learnings across engineering sessions using SQLite with FTS5 + vector search.

Architecture

src/arcane/
├── cli/            # Click CLI — one module per command group
├── domain/         # Pydantic domain models (Memory, Journey, Artifact…)
├── infra/          # Infrastructure: DB repos, config, search, embeddings, redaction
│   ├── db/         # SQLite schema, MemoryRepo, JourneyRepo, ArtifactRepo, RelationshipRepo
│   └── embeddings/ # Ollama + OpenAI embedding providers
├── mcp_server/     # MCP stdio server + tool handlers
│   └── tools/      # One file per tool group (memory, journey, artifact…)
├── plugins/        # Plugin system (ingestion, intelligence, content)
│   └── builtin/    # Built-in plugins: git, GHA, Linear, velocity, blog, ADR
└── services/       # Business logic: MemoryService, JourneyService, ArtifactService…

Key Conventions

Dependency Injection

All services receive a ServiceContainer (defined in services/container.py). Never construct repos or the DB directly outside of create_container() or tests. CLI commands must use the with create_container() as container: pattern for proper resource cleanup.

Repository Boundary

All DB read methods return fully deserialized Python objects — tags are list[str], datetimes are strings. Never call json.loads() on data returned from a repo method; _process_row() in MemoryRepo handles this centrally.

Embedding + Vector Search

Vector search is optional — the system degrades gracefully to FTS if memories_vec table is absent or dimensions mismatch. The dimension is stored in kv_store and checked on every embed operation. Use memory_repo.invalidate_vec_cache() after DDL changes to the vec table.

Read the full file on GitHub · 157 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. yesterday First seen · 157 lines · 1,722 tokens per session scan A 14e81097c194

Subscribe to this mod's changes

arcane AGENTS.md is an instructions file published in the GitHub repository Edition-X/arcane (0 stars, last pushed 26d ago), licensed MIT. It adds 1,722 tokens to every session, about $0.0086 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.

Related

Other instructions, from other repositories