Aikito is a Git-managed workspace for governing AI-agent context and durable memory.
Aikito = governing agent resources × curating durable memory
Plain files define the source of truth, explicit scopes define who sees what, and Git keeps the history.
You author the resources, agents maintain the memory, Aikito governs the workspace.
One workspace keeps your AI workflow consistent across agents and machines.
Why Aikito
AI agent resources fragment in three directions:
- Across tools: each agent requires a different configuration format
- Across projects: reusable knowledge, skills, and instructions are copied or maintained across multiple repositories
- Across time: valuable decisions and hard-won lessons disappear into old sessions
Aikito keeps all of it in one personal Git workspace and exposes selected resources to each agent and project:
~/aikito
├── skills/ shared reusable skills
├── memory/ global durable memory
├── global/ global instructions
├── mcps/ shared MCP definitions
├── subagents/ shared reusable subagents
└── projects/
└── <project-name>/
├── agent.toml selected shared resources
├── AGENTS.md project instructions
└── memory/ project durable memory
├── index.md
└── notes/
No database, daemon, vector store, or hosted service required.
What Aikito Manages
| Resource | Canonical source | Synchronized destination |
|---|---|---|
| Memory | memory/, projects/<name>/memory/ |
Global access and <project>/.agents/memory/ |
| Skills | skills/<name>/ |
Shared and project-level skill directories |
| Instructions | global/AGENTS.md, projects/<name>/AGENTS.md |
Agent-native and project runtime instructions |
| MCP servers | mcps/*.toml |
Native TOML, JSON, or JSONC configs |
| Subagents | subagents.toml, subagents/ |
Native subagent definitions |
The default registry includes Codex, Claude Code, Antigravity CLI (agy),
OpenCode, GitHub Copilot CLI, and DeepSeek Harness (dsh). See the architecture for the complete mental
model and capability boundaries.
Share or isolate
linkkeeps a resource shared and immediately up to datecopygives a project an isolated snapshot it can evolve independently- project memory always uses
linkmode with its canonical scope, preserving one history
Durable Memory
The bundled durable-memory skill is the curation half of the equation. It
guides coding agents to retrieve relevant notes before acting, distill durable
conclusions from what they learn, update notes that went stale, and choose the
right global or project scope.
The notes are ordinary Markdown, so Git gives you history, review, rollback, and portability — and the memory an agent wrote in Claude Code yesterday is the same memory Codex reads tomorrow.
aikito show memory lists what has accumulated, grouped by scope. A typical
example looks like this:
┌────────┬───────────────────────┬─────────────────────────────────────┬───────┬──────┐
│ Scope │ Note File │ Title │ Index │ Link │
├────────┼───────────────────────┼─────────────────────────────────────┼───────┼──────┤
│ Global │ commit-message-style │ Conventional commits, English only │ ✓ │ – │
│ Global │ review-tone │ Ask before large refactors │ ✓ │ – │
├────────┼───────────────────────┼─────────────────────────────────────┼───────┼──────┤
│ aikito │ versioning-principles │ Version bumps skip round numbers │ ✓ │ ✓ │
│ aikito │ release-checklist │ Tag only after tests pass │ ✓ │ ✓ │
├────────┼───────────────────────┼─────────────────────────────────────┼───────┼──────┤
│ blog │ draft-workflow │ Drafts live in content/ until dated │ ✓ │ ✓ │
└────────┴───────────────────────┴─────────────────────────────────────┴───────┴──────┘
Global notes are available everywhere; each project's notes are linked only into
that project. In this example, an agent working in aikito sees only the global
notes plus aikito's own notes, and nothing from blog.
Use aikito maintain memory for confirmation-gated, full-scope maintenance;
see Proactive Scope Maintenance.
Web Console
Browse your workspace, resources, scopes, and governance state in a local, read-only interface:
aikito web
The console binds to 127.0.0.1 and provides a visual view of the canonical
workspace without changing its resources.
Boundaries
Aikito manages durable files, explicit scopes, and controlled synchronization. To stay lightweight and portable, it deliberately does not:
- capture every agent action or conversation automatically
- run a vector store, embedding pipeline, or memory service
- inject context into every prompt through a background daemon
- orchestrate supervisor and worker agents
- replace your coding agent's native runtime
Aikito governs the workspace and the memory in it. Your agent does the reasoning.
Requirements
- macOS or Linux; Windows users should use WSL2.
- Python 3.12, 3.13, or 3.14.
- Git.
Native Windows is not supported: Aikito relies on symbolic links and POSIX file permissions for synchronization and credential safety.
Quick Start
brew install lsaint/tap/aikito
aikito init workspace ~/aikito
aikito sync global
aikito status
Installing via Homebrew automatically sets up Tab completion for Zsh, Bash, and Fish — no extra configuration needed.
For manual installs, add one line to ~/.zshrc:
eval "$(aikito completion zsh)"
The workspace is the single Git-managed home for all Aikito resources. You normally initialize one workspace per user or machine.
Register each code project that needs project-specific instructions, skills, or memory. From the project directory:
cd ~/code/example
aikito init project
This creates the project's canonical resources under
~/aikito/projects/example/ and connects them to ./.agents/. One workspace
can manage many projects; a project registration represents one code directory
and its project-specific Agent resources, not the project source code itself.
aikito status reports resource state across supported agents:
┌───────────────────────┬──────────────┬────────┬────────────┬───────────┐
│ Agent │ Instructions │ Skills │ MCP Config │ Subagents │
├───────────────────────┼──────────────┼────────┼────────────┼───────────┤
│ Codex │ ✓ │ 2 › │ – │ – │
│ Claude Code │ ✓ │ 2 » │ – │ – │
│ Antigravity CLI │ ✓ │ 2 » │ – │ – │
│ OpenCode │ ✓ │ 2 › │ – │ – │
│ GitHub Copilot CLI │ ✓ │ 2 › │ – │ – │
│ DeepSeek Harness │ ✓ │ 2 › │ – │ – │
└───────────────────────┴──────────────┴────────┴────────────┴───────────┘
✓ all synced · 6 agents · 2 skills · 0 notes across 1 scopes
For building from source, custom install paths, or advanced configuration, see the project setup guide.
Migrating an Existing Setup
If you already use coding agents with existing instructions, MCP definitions, or
subagents, import them with aikito adopt:
aikito adopt
aikito adopt --apply
Adoption previews read-only first. Applying creates timestamped backups under
~/.aikito/backups/adopt_<timestamp> and imports detected configurations
without overwriting originals. See the safety guide.
Companion: Chat Distiller
Chat Distiller turns browser AI
conversations into reviewable Markdown notes and saves them to your Aikito
inbox/.
Browser conversation → distilled note → review → durable memory
See capturing browser discussions for the workflow.
Safety First
aikito init workspace creates a local Git repository; it does not make that
repository private or safe to publish. Before adding a remote or pushing,
review memory and configuration for credentials, customer data, internal
addresses, and private code. Deleting a later commit does not remove a secret
from Git history.
Read the safety model before synchronizing an existing setup.
Documentation
Browse the documentation index for concepts, operational guides, the CLI reference, safety details, the roadmap, and the FAQ.
- Comparison and Design Boundaries — where Aikito fits alongside memory systems, project-local sync tools, and agent orchestrators
Contributing
Issues and pull requests are welcome. Before submitting code, run:
python3 -m unittest discover -s tests
Report vulnerabilities privately according to the Security Policy.
Support
If you find Aikito useful, you can support its development.
No comments yet
Be the first to share your take.