Create and manage git-backed AI brains for multi-project, multi-agent teams
Project description
Kluris
Create and manage git-backed AI brains for multi-project, multi-agent teams.
When your best engineer sleeps, Kluris doesn't. When they leave, Kluris stays.
What is Kluris?
Kluris is a CLI tool that creates brains — standalone git repos of structured markdown that AI coding agents read, search, and update through globally installed slash commands.
Kluris = the tool. A brain = the git repo it creates.
Why not a wiki, Notion, or CLAUDE.md?
- Wikis and Notion are for humans. Agents can't natively read them, search across them, or write back. Kluris brains are markdown in git — AI-native.
- CLAUDE.md is per-project and per-tool. A brain sits above all your projects and works with 8 different AI agents simultaneously.
- Agent memory is session-scoped and ephemeral. A brain is persistent, version-controlled, and shared across the entire team.
One brain serves all your projects. Every AI agent on the team reads the same knowledge. When someone leaves, nothing is lost.
Quick start
pipx install kluris
kluris doctor # Check prerequisites
kluris create my-brain --type team # Create a team brain
Then open any project and run /kluris.learn — the AI agent will analyze
your codebase and populate the brain with architecture, conventions, APIs,
and decisions.
Example workflow
# 1. Create a brain for your team
kluris create acme-brain --type team
# 2. In your backend project, run the slash command:
# /kluris.learn focus on architecture and API design
# 3. In your frontend project:
# /kluris.learn focus on components and state management
# 4. Now any agent in any project can use the brain:
# /kluris.think implement the new auth flow
# (agent loads architecture decisions, API contracts, conventions from the brain)
# 5. After a session with useful decisions:
# /kluris.remember
# 6. Validate and push
kluris dream # Regenerate indexes, check links
kluris push # Commit and push to git
# 7. Visualize the brain
kluris mri # Opens brain-mri.html
What a brain looks like
acme-brain/
├── kluris.yml # Brain config
├── brain.md # Root index (auto-generated)
├── index.md # Flat neuron list (auto-generated)
├── glossary.md # Domain terms (hand-edited)
├── README.md # Usage guide
├── architecture/
│ ├── map.md # Lobe index (auto-generated)
│ ├── auth-keycloak.md # <- neuron
│ └── data-flow.md # <- neuron
├── decisions/
│ ├── map.md
│ └── use-raw-sql.md # <- neuron (decision template)
├── services/
│ ├── map.md
│ └── btb-backend/
│ ├── map.md
│ ├── endpoints/
│ │ └── ...
│ └── data-model.md
└── ...
Folders are lobes (knowledge regions). Files are neurons (knowledge
units). Links between neurons are synapses. Auto-generated map.md files
keep everything navigable.
Brain types
| Type | Lobes | Use case |
|---|---|---|
team (default) |
architecture, decisions, product, standards, services, infrastructure, cortex, wisdom | Shared team knowledge across projects |
personal |
projects, tasks, releases, notes | Individual developer brain |
product |
prd, features, ux, analytics, competitors, decisions | Product management |
research |
literature, experiments, findings, datasets, tools, questions | Research projects |
blank |
(empty) | Custom structure |
kluris create my-brain --type personal
kluris create product-brain --type product
How it works
kluris createscaffolds a git repo with lobes, indexes, and a glossarykluris installgenerates slash commands for 8 AI agents- Agents use
/kluris.learnto scan projects and populate the brain - Team members use
/kluris.think <task>to load brain context before working kluris dreamvalidates links, detects orphans, regenerates indexeskluris mrigenerates an interactive HTML graph of the brain
Slash commands (used inside AI agents)
| Command | What it does |
|---|---|
/kluris <anything> |
Main command. Natural language. |
/kluris.think <task> |
Load brain context, work as team expert. |
/kluris.remember [topic] |
Extract knowledge from session. |
/kluris.learn [focus] |
Deep-scan project, populate brain. |
/kluris.recall <topic> |
Search the brain. |
/kluris.neuron <topic> |
Create a knowledge file. |
/kluris.lobe <name> |
Create a knowledge region. |
/kluris.push [msg] |
Commit and push to git. |
/kluris.dream [focus] |
AI-powered brain maintenance. |
CLI commands
| Command | Flags | What it does |
|---|---|---|
kluris create <name> |
--path, --type, --from-config, --json |
Create a new brain |
kluris clone <url> [path] |
--json |
Clone an existing brain |
kluris list |
--json |
List all registered brains |
kluris status |
--brain, --json |
Brain tree and recent changes |
kluris recall <query> |
--brain, --json |
Search across neurons |
kluris neuron <path> |
--lobe, --template, --brain, --json |
Create a neuron |
kluris lobe <name> |
--parent, --description, --brain, --json |
Create a lobe |
kluris dream |
--brain, --json |
Regenerate maps, validate links |
kluris push |
--message, --brain, --json |
Commit and push |
kluris mri |
--brain, --output, --json |
Generate brain visualization |
kluris install |
--json |
Install slash commands for agents |
kluris remove <name> |
--json |
Unregister a brain |
kluris doctor |
--json |
Check prerequisites |
kluris help [command] |
--json |
Show help |
All commands support --json for machine-readable output.
Neuron templates
The team brain type includes templates for structured knowledge:
kluris neuron auth-migration.md --lobe decisions --template decision
| Template | Sections |
|---|---|
decision |
Context, Decision, Rationale, Alternatives considered, Consequences |
incident |
Summary, Timeline, Root cause, Impact, Resolution, Lessons learned |
runbook |
Purpose, Prerequisites, Steps, Rollback, Contacts |
Brain vocabulary
| Term | Meaning |
|---|---|
| Brain | Git repo of structured markdown |
| Lobe | Folder / knowledge region |
| Neuron | Single knowledge file |
| Synapse | Link between neurons (bidirectional) |
| Map | Auto-generated lobe index |
| Index | Flat list of all neurons |
| MRI | Interactive brain visualization |
| Dream | Brain maintenance — validate, repair |
Supported agents
Claude Code, Cursor, Windsurf, GitHub Copilot, Codex, Gemini CLI, Kilo Code, Junie
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-0.1.3.tar.gz.
File metadata
- Download URL: kluris-0.1.3.tar.gz
- Upload date:
- Size: 39.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37266bfa8e472e6d61bc00b568a74a21fd41f0b9bfa1132568ade21ddf983345
|
|
| MD5 |
a98f667ce5475404d64df2516c75eba6
|
|
| BLAKE2b-256 |
a93df553699385ab852edaa3bc40522376e6148d73a3efae27f093af5168fef5
|
Provenance
The following attestation bundles were made for kluris-0.1.3.tar.gz:
Publisher:
publish.yml on ngvoicu/kluris-cli
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
kluris-0.1.3.tar.gz -
Subject digest:
37266bfa8e472e6d61bc00b568a74a21fd41f0b9bfa1132568ade21ddf983345 - Sigstore transparency entry: 1208306121
- Sigstore integration time:
-
Permalink:
ngvoicu/kluris-cli@8bb5f4dbe3707d6fdab3e1d18e92457ba103a175 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/ngvoicu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@8bb5f4dbe3707d6fdab3e1d18e92457ba103a175 -
Trigger Event:
push
-
Statement type:
File details
Details for the file kluris-0.1.3-py3-none-any.whl.
File metadata
- Download URL: kluris-0.1.3-py3-none-any.whl
- Upload date:
- Size: 32.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
310b0d5344c5880259ffcc3883a9c34384db04c9e0c777f72cddd61ec9e8563b
|
|
| MD5 |
7fdd91acea0738792fb086de385b0a48
|
|
| BLAKE2b-256 |
cb26185765cb8edcb08fd8902c94f288818923e84fc4a05b2b1266eb4ece565c
|
Provenance
The following attestation bundles were made for kluris-0.1.3-py3-none-any.whl:
Publisher:
publish.yml on ngvoicu/kluris-cli
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
kluris-0.1.3-py3-none-any.whl -
Subject digest:
310b0d5344c5880259ffcc3883a9c34384db04c9e0c777f72cddd61ec9e8563b - Sigstore transparency entry: 1208306178
- Sigstore integration time:
-
Permalink:
ngvoicu/kluris-cli@8bb5f4dbe3707d6fdab3e1d18e92457ba103a175 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/ngvoicu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@8bb5f4dbe3707d6fdab3e1d18e92457ba103a175 -
Trigger Event:
push
-
Statement type: