// local-first agent harness
Terminal-native AI coding agent. Zero bloat.
Multi-agent orchestration, streaming completions, skills discovery, and persistent session state. Powered by Bun.
$
npm i -g kloudia-code
tty1 — kloudia
REPL
$ kloudia "refactor auth middleware to use bun native serve"
> loaded .kloudia/MEMORY.md (142 tokens)
> discovered 4 active skills in ~/.agents/skills
> spawning sub-agent: code-review
> discovered 4 active skills in ~/.agents/skills
> spawning sub-agent: code-review
✓ replaced express with Bun.serve()
✓ verified 12 tests passing via bun test
✓ verified 12 tests passing via bun test
kloudia >
/
// capabilities
01 / Sub-Agent Delegation
Orchestrator delegates distinct sub-tasks to isolated sub-agents via standard `task` calls.
02 / Dynamic Skills Engine
Reads `SKILL.md` instruction sets from global and workspace configurations automatically.
03 / Project Context Memory
Injects `CLAUDE.md`, `AGENTS.md`, or `.kloudia/MEMORY.md` straight into prompt context.
04 / Session Persistence
Conversation history saved per session ID. Resume or list active sessions anytime.
// configuration ~/.config/kloudia/settings.json
{
"apiKey": "sk-...",
"baseUrl": "https://api.openai.com/v1",
"model": "gpt-4o"
}