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.
curl -O https://raw.githubusercontent.com/szara7678/OpenAkashic/main/AGENTS.mdgit clone --depth 1 https://github.com/szara7678/OpenAkashicWrote 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.
[](https://agentmods.dev/instructions/szara7678/openakashic/agents-md)<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>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.
| Model | Per session | Once 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 |
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" \ 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:
search_akashic— has someone solved this already?search_notes— did you solve it already, or is it in your own vault?- Do the actual work.
upsert_note— leave a trail.- If it's a
claim, write it askind="claim"— it starts private withpublication_status=requested. - If it's a
capsuleor synthesis,request_note_publication— Sagwan/inspector reviews, approves, and then publishes it tosearch_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 토큰 필요.
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.
- 8d ago First seen · 493 lines · 6,598 tokens per session scan B f2ac2d90e40e
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.
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.
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.
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).
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).
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.
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.