Skip to main content

yasna

yasna

Session search tool for AI coding agents.

Indexes conversation history from Claude Code, opencode, continue.dev, aider, nanocoder, 1bcoder, and Kiro CLI into a single searchable store — so you can find any session by keyword, resume it instantly, and never lose track of what you discussed and where.

yasna find "myapp mcp"
claude     2026-04-10  [myapp]  D:\Work\myapp
  myapp mcp server, FastMCP tools...
  … map_index, map_find, BFS trace deps sym idiff
  -> claude --resume cc3cf9f6-6ce9-46d0-9e70-ce2b6354a975

opencode   2026-04-08  [myapp]  D:\Work\myapp
  myapp mcp endpoint discussion
  -> opencode  (session: ses_2ed3ba03...)

The problem

Every AI coding agent stores its sessions differently — or not at all. After a few weeks of active work you have dozens of conversations scattered across JSONL files, SQLite databases, markdown logs, and JSON checkpoints. You remember discussing something important about authentication, or a deployment fix, or a refactoring decision — but you do not remember which tool, which project, or which day.

yasna solves this in one command.


Supported agents

Agent Storage Sessions
Claude Code ~/.claude/projects/**/*.jsonl full conversations, auto
opencode ~/.local/share/opencode/opencode.db full conversations, auto
continue.dev ~/.continue/sessions/*.json full conversations, auto
aider ~/.aider.chat.history.md + <project>/.aider.chat.history.md full conversations, auto
nanocoder <project>/.nanocoder/checkpoints/*/conversation.json manual (/checkpoint create)
1bcoder ~/.1bcoder/ + <project>/.1bcoder/ context files (/ctx save, autosave)
Kiro CLI ~/.kiro/sessions/cli/*.json + *.jsonl full conversations, auto
Pi ~/.pi/agent/sessions/<sanitized-cwd>/*.jsonl full conversations, auto

Agents that do not store sessions locally (GitHub Copilot, Windsurf, Augment, Amazon Q) are not supported — there is nothing to index.


Installation

pip install yasna

No heavy dependencies. Requires Python 3.10+. Uses only stdlib (sqlite3, pathlib, json, re).


Quick start

# Index current project (all agents)
yasna index

# Index a specific directory
yasna index D:\MyProject

# Index everything, no CWD filter
yasna index -g

# Search current project
yasna find "authentication middleware"
yasna find "docker compose"

# Search all projects
yasna find "MAP@10" -g

# Filter by agent
yasna find "migration" --agent claude
yasna list --agent opencode

# List recently indexed sessions
yasna list
yasna list -g -n 50

CWD-aware filtering

yasna knows which project you are working in. When run from a project directory, it automatically filters results to sessions from that project only.

# From ~/Project/myapp:
yasna find "auth"       # only myapp sessions
yasna find "auth" -g    # all sessions from all projects

# From ~/ (home directory):
yasna find "auth"       # all sessions (no filter)

Same for indexing:

# From ~/Project/myapp:
yasna index             # index only myapp sessions
yasna index -g          # index everything

This keeps personal and work projects separate without any configuration.


Commands

yasna index [path] [-r DIR] [-a agent] [-g]

Scan all agents (or one) and write indexed sessions to ~/.yasna/index/.

yasna index                        # current directory, all agents
yasna index .                      # same
yasna index D:\MyProject           # explicit project root
yasna index claude                 # Claude Code only, current directory
yasna index -g                     # all agents, no CWD filter
yasna index -g claude              # Claude Code only, no filter
yasna index --root D:\MyProject claude   # claude only, explicit root

The positional argument is auto-detected: if it looks like a directory path it sets the scan root; if it is an agent name it filters by agent. Use --root/-r when you need both.

Run this periodically or after finishing a work session. Each run clears and rewrites the index for the current project (or globally with -g), so there are no stale duplicates.

yasna find <query> [-a agent] [-n N] [-g]

Search indexed sessions for a keyword. Returns up to N results (default 10) with matching context snippets and resume commands.

yasna find "pgvector"
yasna find "FastMCP" --agent claude
yasna find "init wizard" -n 5
yasna find "book crossing" -g    # ignore CWD filter

yasna list [-a agent] [-n N] [-g]

List the most recently indexed sessions (default 20).

yasna list
yasna list --agent aider
yasna list -n 50 -g

Scan roots

Global agent storage is always scanned automatically:

  • ~/.claude/projects/ — Claude Code
  • ~/.local/share/opencode/opencode.db — opencode
  • ~/.continue/sessions/ — continue.dev
  • ~/.aider.chat.history.md — aider (global log)
  • ~/.1bcoder/ — 1bcoder (global ctx, autosave, projects)
  • ~/.kiro/sessions/cli/ — Kiro CLI (global)

For project-local files (.aider.chat.history.md, .nanocoder/, .1bcoder/ inside a project), yasna scans the current working directory by default.

To scan a different or additional directory pass it as an argument or set an environment variable:

# Explicit path argument
yasna index D:\MyProject
yasna index --root D:\MyProject

# Multiple roots via environment variable (path-separator-separated)
# Windows
set YASNA_SCAN_ROOTS=C:\Projects\rubocop;D:\Work\client-app
yasna index -g

# Linux / macOS
export YASNA_SCAN_ROOTS=/home/user/projects:/mnt/work
yasna index -g

Adding a new adapter

Each agent adapter is a single Python file in yasna/adapters/ that exposes:

AGENT_NAME: str

def sessions() -> list[Session]:
    ...

Drop a new file in that directory and register it in yasna/adapters/__init__.py:

from . import my_new_agent

ALL: dict = {
    ...
    "mynewagent": my_new_agent,
}

That is all. The CLI, indexer, and searcher need no changes.


Part of the SIMARGL toolkit

yasna is one of eight tools that together form an intellectual development support system:

Tool Role
simargl Task-to-code retrieval — given a task description, finds which files and modules are likely affected, using semantic similarity over git history
svitovyd Project map — scans any codebase and produces a structural map of definitions and cross-file dependencies; exposes it as an MCP server
1bcoder AI coding assistant for small local models — surgical context management, agents, parallel inference, proc scripts
yasna Session memory — indexes conversations from all AI agents so you can find what was discussed, when, and where
radogast Context drift monitor — measures how far an AI agent's conversation has drifted from the original task
vyrii Local AI web UI — chat, translate, web research, RAG, and file management via Gradio; powered by Ollama or any OpenAI-compatible backend
syryn Bluetooth identity beacon — returns hostname, mDNS, and active network interfaces for headless devices
alkonost Task-board viewer/editor — Trello-style board and backlog over 1bcoder's deepagent_task output, with full spec rendering and autosave
  • simargl answers: what code is related to this task?
  • svitovyd answers: how is the code structured and what depends on what?
  • 1bcoder answers: how do I work with local models efficiently?
  • yasna answers: where did I already discuss this?
  • radogast answers: is the AI agent still on track toward the goal?
  • vyrii answers: how do I access all of this through a browser?
  • syryn answers: what is the address of this headless device?
  • alkonost answers: where do I see and edit the tasks generated from a spec tree?

Together they cover the full development loop: understand the codebase, find relevant history, work with AI locally, remember what was decided, and verify the context stays on target.

The name comes from Slavic mythology. Yasna (Ясна) is the goddess who weaves the thread of fate — and memory.


About

(c) 2026 Stanislav Zholobetskyi, Oleh Andriichuk
Institute for Information Recording, National Academy of Sciences of Ukraine, Kyiv
PhD research: «Intelligent Technology for Software Development and Maintenance Support»

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yasna-0.1.8.tar.gz (26.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

yasna-0.1.8-py3-none-any.whl (29.6 kB view details)

Uploaded Python 3

File details

Details for the file yasna-0.1.8.tar.gz.

File metadata

  • Download URL: yasna-0.1.8.tar.gz
  • Upload date:
  • Size: 26.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.9

File hashes

Hashes for yasna-0.1.8.tar.gz
Algorithm Hash digest
SHA256 5797dcc104353aa8eb7f4dde9b3306eef3764f8ff0cb89061dbd94834f09e859
MD5 23f793a9c92cfdd49f57f5046c9701e4
BLAKE2b-256 5db1c0455c63b11cb1e710764f8d7327b4bf0a949a233ca5f7d367ba6be572ac

See more details on using hashes here.

File details

Details for the file yasna-0.1.8-py3-none-any.whl.

File metadata

  • Download URL: yasna-0.1.8-py3-none-any.whl
  • Upload date:
  • Size: 29.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.9

File hashes

Hashes for yasna-0.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 2cf306e5695e92e3a787fd2043db644d4f4d01f993f791982572e71e0ccc47b7
MD5 581ee6c881f146b83bf698896b1dab57
BLAKE2b-256 71c2127f584653d17dfa461b927887c8276ae5dc62d70835ab9148b68368ff76

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.8 This release

2 files

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page