thimiko CLAUDE.md

thimiko CLAUDE.md is an instructions file for coding agents from azerv1/thimiko. It costs 945 tokens per session, scanned A, original, MIT.

Repository instructions for Thimiko, a tool that searches and indexes chat history from several coding assistants.

In plain words
What is it for?
Use them when rebuilding or updating the chat index, searching conversations, listing data sources, or running the MCP server.
Why use it?
They document the project structure, commands, and data rules that changes must preserve.

Instructions file

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/azerv1/thimiko/claude-md
Clone the repo
git clone --depth 1 https://github.com/azerv1/thimiko

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 thimiko CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/azerv1/thimiko/claude-md.svg)](https://agentmods.dev/instructions/azerv1/thimiko/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/azerv1/thimiko/claude-md"><img src="https://agentmods.dev/badge/instructions/azerv1/thimiko/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 945 This file is loaded in full into every session.
When invoked 945 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.00945 $0.00945
Opus 5 $0.00473 $0.00473
Sonnet 5 $0.00189 $0.00189
Haiku 4.5 $0.00094 $0.00094

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

Security

Grade A, and why

thimiko CLAUDE.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.

CLAUDE.md · 70 lines

How it starts

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

thimiko — agent guide

Layered, searchable memory over local Codex, Claude Code, GitHub Copilot, Gemini CLI, Cursor, and OpenCode chat history. See ARCHITECTURE.md for the layer/interface design before changing structure.

Commands

uv sync                          # create .venv + uv.lock
uv run thimiko build              # full rebuild of the index (default: %LOCALAPPDATA%\thimiko\thimiko.sqlite)
uv run thimiko update [--prune]   # incremental: only changed/new files; --prune drops deleted files' sessions
uv run thimiko search "query"     # BM25 ranked search; JSON by default (--text for humans, --days N for recency)
uv run thimiko list [-v]          # supported sources + roots; -v adds indexed/on-disk chat counts
uv run thimiko mcp                # launch the MCP server over stdio

--db PATH overrides the index location on any subcommand.

Invariants (don't break these)

  • Never merge providers' raw schemas — normalize into the canonical Session/Event model only. See ARCHITECTURE.md.
  • Every Event carries a Provenance (source file + line). Never lose that link — it's how get_turn/get_session point back to the raw record.
  • Only ordinary user/assistant Messages are searchable. Hidden reasoning, tool calls/results, and attachments stay out of the default search corpus.
  • FTS5 (documents_fts) is kept in sync via triggers on documents, not a manual reindex step — if you touch SqliteStore, insert/delete through documents, don't write to documents_fts directly.
  • Store, Retriever, and ChatSource are ABCs for a reason: code above a layer must depend only on the interface (e.g. cli.py/mcp.py never import sqlite3 directly).
  • Provider databases are inputs, never index targets. In particular, opencode.db must only be opened read-only as a source; --db always names Thimiko's separate derived SQLite index.
  • Capture ChatSource.fingerprint() before parsing and record that exact value. OpenCode combines its main database and WAL so concurrent writes remain visible to the next update.

Read the full file on GitHub · 70 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 · 70 lines · 945 tokens per session scan A bec92d4fd1de

Subscribe to this mod's changes

thimiko CLAUDE.md is an instructions file published in the GitHub repository azerv1/thimiko (2 stars, last pushed 14d ago), licensed MIT. It adds 945 tokens to every session, about $0.0047 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.