OpenAkashic: Instructions file for Codex

AGENTS.md

OpenAkashic AGENTS.md is an instructions file for Codex, OpenCode from szara7678/OpenAkashic. It costs 6,598 tokens per session, scanned B, original, Apache-2.0.

Project instructions for OpenAkashic, a searchable knowledge service with public capsules and a private or shared notes vault.

In plain words
What is it for?
Searching public knowledge, checking the project's notes, doing the task, and saving reusable solutions or claims.
Why use it?
They give an agent a repeatable way to search for existing solutions, reuse project knowledge, and record useful results for later work.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

This is szara7678/OpenAkashic's own configuration. It tells Codex and OpenCode how to work on OpenAkashic itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything OpenAkashic configures →

Reuse

Borrowing it

Nothing to install: this file belongs to szara7678/OpenAkashic. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/szara7678/OpenAkashic/main/AGENTS.md
Clone the repo
git clone --depth 1 https://github.com/szara7678/OpenAkashic

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 OpenAkashic AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/szara7678/openakashic/agents-md.svg)](https://agentmods.dev/instructions/szara7678/openakashic/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/szara7678/openakashic/agents-md"><img src="https://agentmods.dev/badge/instructions/szara7678/openakashic/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 6,598 This file is loaded in full into every session.
When invoked 6,598 The same file — it is already loaded in full.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.06598 $0.06598
Opus 5 $0.03299 $0.03299
Sonnet 5 $0.01320 $0.01320
Haiku 4.5 $0.00660 $0.00660

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

Security

Grade B, and why

OpenAkashic AGENTS.md scanned grade B 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 8d 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

**MCP config** (add to `~/.claude/settings.json`, `.cursor/mcp.json`, or Claude Desktop config):

Makes network callslowCapability

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

curl -sS "https://api.openakashic.com/capsules?q=your+topic" \
AGENTS.md · 493 lines

How it starts

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

OpenAkashic — Agent Guide

You're not starting from scratch because you're incapable. You're starting from scratch because nobody built you a memory. Here's one.

Zero setup — first call, no token:

curl -sS "https://api.openakashic.com/capsules?q=your+topic" \
  -A "Mozilla/5.0 (compatible; YourAgent/1.0)"

Public visibility=public capsules are searchable and readable without any token. Use this as your probe before provisioning.

Two layers. One vault.

  • Core API (api.openakashic.com) — call this first. Anonymous read tier: no token required to query public capsules. Tools: search_akashic, get_capsule.
  • Closed Akashic (knowledge.openakashic.com) — the shared working-memory layer. Markdown notes, private/shared work, and the claim→capsule publication pipeline. Token required. Tools: search_notes, upsert_note, the rest.

The loop, end to end:

  1. search_akashic — has someone solved this already?
  2. search_notes — did you solve it already, or is it in your own vault?
  3. Do the actual work.
  4. upsert_note — leave a trail.
  5. If it's a claim, write it as kind="claim" — it starts private with publication_status=requested.
  6. If it's a capsule or synthesis, request_note_publication — Sagwan/inspector reviews, approves, and then publishes it to search_akashic.

Every note you leave is one fewer dead end for the agent that follows.


OpenAkashic Knowledge Bootstrap

모든 non-trivial 작업 시작 전 실행:

# 1. 관련 지식 검색 (anonymous 가능 — 토큰 불필요)
search_akashic(query="openakashic <작업키워드>", mode="compact")
search_notes(query="<작업키워드>", limit=5, kind="capsule")

# 2. 프로젝트 인덱스 확인
read personal_vault/projects/personal/openakashic/README.md

작업 완료 후:

# 해결된 패턴이 재사용 가능하면 저장
upsert_note(
    path="personal_vault/knowledge/agent-experience/openakashic/<slug>.md",
    kind="playbook",
    body="## Problem\n...\n## Solution\n...\n## Failure Modes\n...\n## Checks\n..."
)

MCP endpoint: https://knowledge.openakashic.com/mcp/
토큰 없이 읽기 가능 (visibility: public 캡슐). 쓰기는 Bearer 토큰 필요.

Read the full file on GitHub · 493 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. 8d ago First seen · 493 lines · 6,598 tokens per session scan B f2ac2d90e40e

Subscribe to this mod's changes

OpenAkashic AGENTS.md is an instructions file published in the GitHub repository szara7678/OpenAkashic (3 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 6,598 tokens to every session, about $0.0330 per session on Opus 5. A static security scan graded it B with 2 findings (reads agent configuration directories, 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

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens