Turn your AI agents into team subject matter experts with shared, human-curated knowledge
Project description
Kluris
Kluris turns your AI agents into a subject matter expert that never sleeps and never quits.
When your best engineer sleeps, Kluris doesn't. When they leave, Kluris stays.
๐ฅ New here? Take the guided tour at kluris.io โ install, first brain, agent workflows, multi-brain, git collaboration, and the MRI visualization, end to end.
What is Kluris?
Kluris gives every AI agent on your team shared knowledge -- architecture, decisions, conventions, learnings -- so they work like an SME who knows your entire codebase, not a generic assistant starting from scratch every time.
Knowledge is stored in a brain: a git-backed repo of structured markdown that agents read, search, and apply automatically. The human and agent curate the brain together -- the agent proposes what to document, the human reviews and approves every piece.
Why it saves tokens
A brain is a pre-digested summary your agent reads instead of the raw files. Without it, the agent crawls the whole repo (and every sibling repo it needs context from) on every new chat. With a brain, it loads one compact snapshot and jumps straight to the neuron it needs.
Without kluris โ illustrative cold-start on a medium repo:
tree + README + CLAUDE.md ~3,000 tokens
grep for related symbols ~2,000 tokens
read 4-8 relevant files ~15,000 tokens
read 2-3 sibling-project files ~8,000 tokens
โโโโโโโโโโโโโ
~28,000 tokens just to orient
With kluris โ same task, brain-backed:
kluris wake-up --json snapshot ~1,200 tokens (brain.md + lobes + recent + glossary)
kluris search "<query>" --json ~400 tokens (ranked hits with snippets)
read 1-2 matching neurons ~1,500 tokens
โโโโโโโโโโโโโ
~3,100 tokens โ ~9x less context burned on orientation
Rough estimates, not a benchmark โ actual numbers depend on repo size, agent, and prompt style. The shape holds: the brain replaces a wide crawl with a targeted lookup. Savings compound the more projects you touch. Agents that would have re-read five repos' worth of source per morning read one brain snapshot instead -- same answers, a fraction of the context window, which means more room for the actual work.
Why not a wiki, Notion, or CLAUDE.md?
- Wikis and Notion are for humans. Agents can't read them, search across them, or write back. A brain is markdown in git -- AI-native.
- CLAUDE.md is per-project and per-tool. A brain sits above all your projects and works with every AI agent on the team.
- Agent memory is agent-controlled -- the agent decides what to keep. A brain is human-curated -- you decide what goes in, review every entry, and correct anything that's wrong.
One brain serves all your projects. Every agent reads the same knowledge. Version-controlled, human-curated, shared across the entire team.
Two surfaces: terminal vs. AI agent
Kluris lives in two places. Knowing which is which makes everything else click.
| Surface | Prompt | Where you type it | What it is | Examples |
|---|---|---|---|---|
| Terminal | $ kluris โฆ |
Your shell โ bash, zsh, fish, PowerShell | The kluris Python CLI |
kluris create, kluris dream, kluris status, kluris mri, kluris doctor |
| AI agent | > /kluris โฆ |
Inside your coding agent โ Claude Code, Cursor, Windsurf, Codex, Copilot, Gemini CLI, Kilo, Junie | The per-brain slash-command skill Kluris keeps refreshed automatically | /kluris learn โฆ, /kluris remember โฆ, /kluris search โฆ, /kluris what โฆ, /kluris implement โฆ, /kluris fix โฆ |
Throughout this README:
- Code blocks labelled
```bashor tagged "In your terminal" are meant for the shell. They start with$(or>on Windows PowerShell). - Code blocks tagged "Inside your AI coding agent" are meant for Claude Code / Cursor / Windsurf / Codex / Copilot / Gemini / Kilo / Junie. They start with
/kluris.
Every command you'll see below belongs to exactly one of these two surfaces.
Install
In your terminal โ install the kluris CLI with pipx. Pick your OS:
macOS:
brew install pipx && pipx ensurepath
Linux:
python3 -m pip install --user pipx && pipx ensurepath
Windows:
pip install pipx && pipx ensurepath
Then restart your terminal and:
pipx install kluris
Quick start
In your terminal โ create your first brain:
kluris doctor # check prerequisites
kluris create # interactive wizard -- name, type, location, git
Then, inside your AI coding agent (Claude Code, Cursor, Windsurf, โฆ) โ open any project directory and use /kluris:
> /kluris learn everything about this service
The agent analyzes your code and walks you through each finding one at a time. You see a small preview before anything is written, and you approve, edit, or skip every piece.
How the agent bootstraps (automatic)
On the first /kluris call of a session, the agent runs kluris wake-up --json
through its shell to load a compact snapshot of the brain: the brain.md body,
lobes with neuron counts, the 5 most recently updated neurons, the full glossary,
and any deprecation warnings. That's enough context for the agent to decode
jargon and avoid citing superseded neurons without touching the filesystem
again for the rest of the session. You never call it manually. The agent
refreshes the snapshot after mutating commands (/kluris remember,
/kluris learn, kluris dream) or direct brain-file edits.
If you want to see what the agent sees, run it yourself in your terminal:
kluris wake-up # pretty text
kluris wake-up --json # machine-readable
kluris wake-up --brain X # target a specific brain when more than one is registered
Working with multiple brains
Each registered brain installs as its own slash command. With one brain
registered, that command is /kluris. With two or more, each brain installs
as /kluris-<name> (e.g. /kluris-acme, /kluris-personal). Every per-brain
skill is bound to exactly one brain โ the agent never has to guess which one
you mean.
CLI commands prompt interactively when 2+ brains are registered:
- Fan-out commands (
dream,status,mri,companion add/remove) show[1] acme [2] personal [3] all. Pick a single brain or apply to every brain. - Single-brain commands (
wake-up,search) show[1] acme [2] personal(noalloption).
Pass --brain NAME to skip the picker, or --brain all on fan-out commands
to act on every brain at once. Scripts and CI must always pass --brain
because non-TTY contexts disable the picker โ set KLURIS_NO_PROMPT=1 to
force non-interactive mode even from a TTY (useful for wrappers like Claude
Code that inherit a terminal but cannot block on prompts).
Joining an existing brain
A Kluris brain is a plain git repository. To adopt one, clone it with git
and register the local directory with kluris:
In your terminal:
git clone git@github.com:team/brain.git ~/brains/acme # plain git
kluris register ~/brains/acme # adopt it
Registration is in-place -- Kluris does not copy or move the source. If a
teammate handed you a zip, unzip it first (unzip brain.zip -d ~/brains/acme)
and then run kluris register ~/brains/acme.
Learning a project
Inside your AI coding agent (Claude Code, Cursor, Windsurf, โฆ) โ open any
project directory and use /kluris. The agent analyzes your code and walks
you through each finding. You review, edit, and approve before anything is
written.
> /kluris learn the API endpoints and data model
> /kluris learn the Docker and deployment setup
> /kluris learn everything about this service
The agent starts with a preview before writing. You can change the target lobe, edit the content, add context the code doesn't show, or skip.
Storing decisions and knowledge
Inside your AI coding agent:
> /kluris remember we chose raw SQL over JPA for query complexity
> /kluris remember all timestamps must be TIMESTAMPTZ
> /kluris remember from this session
> /kluris create a decision record about the auth architecture
> /kluris create an incident report for the January outage
/kluris remember from this session is the sweep variant โ the agent
replays the current chat, pulls out everything that belongs in the brain,
and walks you through each proposed neuron one at a time (approve, edit,
or skip). Use it at the end of a pairing session instead of re-typing every
decision as its own remember.
Using brain knowledge while coding
Inside your AI coding agent:
> /kluris search auth flow
> /kluris search Docker setup
> /kluris what do we know about the auth flow?
> /kluris implement the new endpoint following our conventions
> /kluris fix the token refresh -- use brain knowledge
> /kluris use brain knowledge and codebase and let's write a spec for OAuth sign-in
> /kluris use brain knowledge and codebase and let's implement auth
The agent reads the brain first, then works on the task. If your code contradicts a documented decision, it flags the conflict. Prefixing with "use brain knowledge and codebase" tells the agent to ground the work in both surfaces โ the decisions and conventions in the brain and the actual current shape of the code โ before writing a spec or changing a line. It's the right posture for anything non-trivial.
Reviewing the brain itself
Inside your AI coding agent:
> /kluris review this brain and create more synapses
> /kluris review this brain for gaps and stale neurons
The agent reads across every neuron, spots connections you never wrote
down, and proposes new synapses โ one by one, with approve-all or
one-by-one flow. Handy after a learn binge or a big merge.
Maintaining the brain
In your terminal:
kluris dream # regenerate maps, fix links, validate structure
kluris status # brain tree, neuron counts, recent changes
kluris mri # generate visualization, prints the link to open in your browser
Brains are git repos. Use git push / git pull / git checkout from the
brain directory like any other repo. Run kluris dream first if you've made
structural changes so the auto-generated maps land in the same commit.
Deprecating a decision
When a decision is superseded, mark the old neuron instead of deleting it -- the history is valuable. Add these optional frontmatter fields to the old neuron:
---
status: deprecated
deprecated_at: 2026-04-01
replaced_by: ./use-clerk.md
---
kluris dream reports four kinds of deprecation warnings (non-blocking):
active_links_to_deprecated: an active neuron'srelated:points at a deprecated one -- update the link to point at the replacement.deprecated_without_replacement: a deprecated neuron has noreplaced_by-- add one so readers have a migration path.replaced_by_missing:replaced_bypoints at a file that doesn't exist.replaced_by_not_active:replaced_bypoints at something that isn't an active neuron (another deprecated neuron, or a non-neuron file likemap.md).
Agents see a deprecation_count summary via kluris wake-up and the full
list via kluris dream --json. They flag affected topics when asked.
What a brain looks like
acme-brain/
โโโ kluris.yml # Local config (gitignored -- agents, companions)
โโโ brain.md # Root lobes directory (auto-generated)
โโโ glossary.md # Domain terms (hand-edited)
โโโ README.md # Usage guide
โโโ projects/
โ โโโ map.md # Lobe index (auto-generated)
โ โโโ btb-core/
โ โโโ map.md
โ โโโ data-model.md # <- neuron
โ โโโ auth-flow.md # <- neuron
โโโ infrastructure/
โ โโโ map.md
โ โโโ docker-builds.md # <- neuron
โ โโโ environments.md # <- neuron
โโโ knowledge/
โโโ map.md
โโโ use-raw-sql.md # <- neuron (a decision record)
Folders are lobes (knowledge regions). Files are neurons (knowledge
units). Links between neurons are synapses. Auto-generated map.md files
keep everything navigable.
Visualize with kluris mri
Run kluris mri to generate a self-contained HTML file that renders the whole
brain as an interactive map. The MRI opens with a brain-architecture view
(lobes + cross-lobe synapses); click a lobe to drill into sublobes, click a
sublobe to see neurons. Toggle Expert mode for the legacy force graph.
The HTML file is yours โ no server, no account, no external calls. Commit it to the brain repo, email it, drop it in Slack.
Brain types (scaffolding only)
Types determine the initial folder structure. After creation, every brain works the same -- all commands are available regardless of type. You can add or remove lobes freely after creation.
product-group (default)
For a group of projects/services that share knowledge. Example: a platform with 3 backends, a frontend, and shared infrastructure.
| Lobe | What goes in it |
|---|---|
projects/ |
Per-project sub-folders -- APIs, data models, setup, conventions |
infrastructure/ |
Hosting, CI/CD, Docker, deployment, environments, env vars |
knowledge/ |
Decisions, learnings, troubleshooting tips, domain expertise |
The projects/ lobe nests deeper -- one sub-folder per project:
projects/
โโโ map.md
โโโ btb-core/
โ โโโ map.md
โ โโโ auth-flow.md
โ โโโ endpoints/
โ โโโ map.md
โ โโโ post-auth-login.md
โโโ btb-frontend/
โ โโโ map.md
โ โโโ state-management.md
โโโ btb-summon/
โโโ map.md
Project neurons link to infrastructure neurons for deployment details and environments -- never duplicate infra content across lobes.
personal
For an individual developer's knowledge -- projects, tasks, and notes.
| Lobe | What goes in it |
|---|---|
projects/ |
Sub-folder per project: branches, status, TODOs |
tasks/ |
Current priorities, blockers, in-progress work |
notes/ |
Daily notes, ideas, learnings |
product
For product management -- requirements, features, and user research.
| Lobe | What goes in it |
|---|---|
prd/ |
Requirements, user stories, acceptance criteria |
features/ |
Sub-folder per feature: specs, status, feedback |
ux/ |
User research, personas, journey maps, wireframes |
analytics/ |
Metrics, KPIs, experiment results |
competitors/ |
Competitive analysis, market positioning |
decisions/ |
Product decisions and rationale |
research
For research projects -- literature, experiments, and findings.
| Lobe | What goes in it |
|---|---|
literature/ |
Papers, articles, summaries, key findings |
experiments/ |
Hypotheses, methodology, results |
findings/ |
Synthesized insights, conclusions |
datasets/ |
Data sources, schemas, access notes |
tools/ |
Research tools, scripts, environments |
questions/ |
Open questions, hypotheses to test |
blank
Empty -- build your own structure from scratch.
How it works
- Terminal โ
kluris createcreates a brain (interactive wizard) - Terminal โ Kluris refreshes the
/kluris(or/kluris-<name>) skill automatically - Terminal โ optional companions add embedded specmint workflows per brain
- Inside your AI coding agent โ open any project and use
/kluris; the agent becomes an SME - Agent and human curate the brain together โ you review and approve every entry
- Terminal โ
kluris dreammaintains brain structure - Terminal โ
kluris mrivisualizes the brain
Commands reference
Kluris has two surfaces โ the terminal CLI and the slash commands you type inside your AI coding agent. Here they are side by side.
In your terminal โ $ kluris *
Run these in bash, zsh, fish, or PowerShell. They handle setup, git, maintenance, and anything the agent calls internally.
| Command | What it does |
|---|---|
kluris create |
Create a new brain (interactive wizard) |
kluris register <path> |
Register an existing brain directory on disk |
kluris list |
List registered brains |
kluris status |
Brain tree, neuron counts, recent changes |
kluris search <query> |
Ranked search across neurons, glossary, brain.md (--lobe, --tag, --limit, --json) |
kluris wake-up |
Compact brain snapshot for agent session bootstrap โ includes brain_md, glossary, deprecation (--json) |
kluris companion add specmint-core|specmint-tdd |
Opt a brain into an embedded companion playbook |
kluris companion remove specmint-core|specmint-tdd |
Remove a companion opt-in from a brain |
kluris dream |
Regenerate maps, fix links, validate structure |
kluris pack |
Pack a brain into a self-contained Docker chat server |
kluris mri |
Visualize the brain (opens in browser by default) |
kluris remove <name> |
Unregister a brain (keeps files on disk) |
kluris doctor |
Check prerequisites, refresh agent skills, and refresh companion playbooks after pipx upgrade kluris. Pass --no-refresh to skip writes. |
kluris help |
Show command help |
All CLI commands support --json for machine-readable output.
Sync, commit, and branch operations go through git directly. Brains are
plain git repos โ use git -C <brain-path> push / pull / status / checkout
from the brain directory like any other repo.
Inside your AI coding agent โ > /kluris ...
Type these inside Claude Code, Cursor, Windsurf, GitHub Copilot, Codex, Gemini CLI, Kilo, or Junie. With one brain registered the slash command is /kluris; with multiple brains each installs as /kluris-<name>. Examples below use /kluris for clarity.
| Pattern | What the agent does |
|---|---|
/kluris learn <topic> |
Analyzes your code and proposes neurons one at a time (you approve each) |
/kluris remember <fact> |
Captures a decision as a neuron in the right lobe |
/kluris remember from this session |
Sweeps the current chat and proposes neurons for everything worth keeping |
/kluris search <term> |
Searches the brain for a topic |
/kluris what do we know about ... |
Answers a question grounded in the brain |
/kluris review this brain |
Audits the brain โ proposes new synapses, flags gaps and stale neurons |
/kluris use brain knowledge and codebase and let's ... |
Grounds spec-writing or implementation in both the brain and the actual code |
/kluris implement <task> |
Implements a task following your brain's conventions |
/kluris fix <bug> |
Fixes a bug using brain knowledge, flags any conflicts |
/kluris create a decision |
Creates a decision-record neuron |
/kluris create an incident |
Creates an incident-report neuron |
/kluris create a runbook |
Creates a runbook neuron |
/kluris open <file> |
Opens a neuron and reads it |
/kluris deprecate <file> |
Marks a neuron as deprecated |
Agent patterns are free-form โ say it naturally. Under the hood the agent calls kluris search for lookups and kluris wake-up for the session bootstrap, but you never type those yourself when using the slash command.
Local config (kluris.yml)
Each brain has a kluris.yml that is gitignored -- it's your local config,
not shared. Each team member can have different settings.
name: my-brain
description: my-brain knowledge base
# `companions:` and `agents:` may also appear here.
Brain vocabulary
| Term | Meaning |
|---|---|
| Brain | Git repo of shared team knowledge |
| Lobe | Folder / knowledge region |
| Neuron | Single knowledge file |
| Synapse | Link between neurons (bidirectional) |
| Map | map.md -- auto-generated lobe index |
| MRI | Interactive brain visualization |
| Dream | Brain maintenance -- regenerate maps, update dates, auto-fix safe issues, validate remaining links |
Supported agents
Claude Code, Cursor, Windsurf, GitHub Copilot, Codex, Gemini CLI, Kilo Code, Junie
Pair with Specmint
Kluris is the brain. Specmint turns a feature request into a persistent spec built from deep research and iterative interviews. Pair them and the research phase starts half-done โ grounded in your code and the knowledge your team already agreed to.
Inside your AI coding agent:
> /kluris let's spec out adding OAuth sign-in with GitHub
The /kluris skill sees this is multi-step work and follows the embedded
specmint playbook. Phase 1a reads your codebase. Phase 1b consults the brain.
Phase 2 asks only the questions neither can answer. Phase 3 writes a spec
where every decision references a neuron.
Two flavors โ both installable per brain as Kluris companions:
| Companion | What it is |
|---|---|
specmint-core |
Spec-first workflow โ Research ยท Interview ยท Spec ยท Implement |
specmint-tdd |
Same forge flow with strict TDD โ a failing test before any implementation |
Companions ship inside the kluris Python package. Enabling one copies only
its SKILL.md into ~/.kluris/companions/<name>/SKILL.md and adds a short
reference snippet to that brain's generated Kluris skill.
Enable for one brain:
kluris companion add specmint-core --brain my-brain
kluris companion add specmint-tdd --brain my-brain
Enable for every registered brain:
kluris companion add specmint-core --brain all
kluris companion add specmint-tdd --brain all
More at specmint.io.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kluris-2.18.3.tar.gz.
File metadata
- Download URL: kluris-2.18.3.tar.gz
- Upload date:
- Size: 279.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce8137d4d681956c821253ef01393fd4b04015af060b89d3a0989b608d3ce74e
|
|
| MD5 |
85784bab912515a0bf03d47484b66d91
|
|
| BLAKE2b-256 |
60455aa03bf3a17d82a459f74800b17aaa5b14a01111d5223a93cc9dcae980e1
|
Provenance
The following attestation bundles were made for kluris-2.18.3.tar.gz:
Publisher:
publish.yml on ngvoicu/kluris
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
kluris-2.18.3.tar.gz -
Subject digest:
ce8137d4d681956c821253ef01393fd4b04015af060b89d3a0989b608d3ce74e - Sigstore transparency entry: 1437059695
- Sigstore integration time:
-
Permalink:
ngvoicu/kluris@57b126d42f776adf7d91170c75ed2547cdf47415 -
Branch / Tag:
refs/tags/v2.18.3 - Owner: https://github.com/ngvoicu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@57b126d42f776adf7d91170c75ed2547cdf47415 -
Trigger Event:
push
-
Statement type:
File details
Details for the file kluris-2.18.3-py3-none-any.whl.
File metadata
- Download URL: kluris-2.18.3-py3-none-any.whl
- Upload date:
- Size: 190.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb26549fd78761b89d3d2e35f6d79ca5261f29a33ea6c7e020c5abc9a9428af6
|
|
| MD5 |
100c6451fa41333134a2fa27add216b9
|
|
| BLAKE2b-256 |
699febb729dacc07243c0f7461af435d723271a6ad3738d16af7a294fd4d1e8f
|
Provenance
The following attestation bundles were made for kluris-2.18.3-py3-none-any.whl:
Publisher:
publish.yml on ngvoicu/kluris
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
kluris-2.18.3-py3-none-any.whl -
Subject digest:
cb26549fd78761b89d3d2e35f6d79ca5261f29a33ea6c7e020c5abc9a9428af6 - Sigstore transparency entry: 1437059707
- Sigstore integration time:
-
Permalink:
ngvoicu/kluris@57b126d42f776adf7d91170c75ed2547cdf47415 -
Branch / Tag:
refs/tags/v2.18.3 - Owner: https://github.com/ngvoicu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@57b126d42f776adf7d91170c75ed2547cdf47415 -
Trigger Event:
push
-
Statement type: