English · Tiếng Việt · 한국어 · 中文
Created by Vũ Văn Tâm · Vietnam
Yana turns independent AI models and agents into one governed, persistent system — while humans retain final authority.
AI models are powerful at reasoning, planning, coding, and using tools. But intelligence alone does not create a reliable AI system. Models change. Context disappears. Agents terminate. Providers fail. Tools have different permissions. Work spans multiple sessions, machines, and AI environments.
Yana provides the control plane that holds those pieces together.
HUMAN
final authority
│
▼
┌───────────┐
│ YANA │
│ControlPlane│
└─────┬─────┘
│
┌───────────────────┼───────────────────┐
│ │ │
▼ ▼ ▼
Intelligence Continuity Governance
models/providers missions/memory authority/policy
│ │ │
└───────────────────┼───────────────────┘
▼
Canonical Capabilities
│
▼
Bounded Execution
│
▼
Real Environment
This is the foundation of Yana. An AI model may decide what it wants to do. That does not mean it is allowed to do it.
Instead of giving models unrestricted access to the shell, filesystem, processes, repositories, or development environment, Yana separates:
INTELLIGENCE
"What should I do?"
│
▼
PROPOSAL
"I want to execute this tool."
│
▼
AUTHORITY
"Is this allowed?"
│
▼
CAPABILITY
"What exact power does this represent?"
│
▼
POLICY / HUMAN APPROVAL
"May it happen now?"
│
▼
BOUNDED EXECUTION
"Perform only the permitted operation."
In other words: the model provides intelligence, Yana controls capabilities, and humans retain final authority.
Most agent frameworks primarily ask how capable can we make the agent? Yana asks a larger systems question: how do we operate many models, agents, tools, workspaces, and long-running tasks as one system — while keeping their power governable?
That distinction changes the architecture. Yana is not built around one permanent AI — models and agents can become replaceable workers inside a persistent system. Models can be temporary. Agents can be temporary. Yana is the persistent control plane around them.
Underneath that: a local management plane (Yana OS) governing agent lifecycle rather than individual tool calls, a hard line between skills (what an agent knows) and capabilities (what it may actually execute), and one canonical core/ layer materialized across every supported harness — Claude Code, Codex, Cursor, Antigravity — so switching AI engines doesn't mean rebuilding governance from zero. Full detail in Architecture in depth below.
Models may change. Authority does not.
Everything below this line goes deeper — installing it, seeing it stop a dangerous command live, the full runtime architecture, and known limitations, verified against the current codebase rather than aspirational copy.
|
Launch the Rust terminal workspace with a local provider. cargo install yana-rt
yana-ai-rt --provider ollamaStreaming, cancellation, tabs, sessions, model switching, and guarded tools. |
Apply Yana's supported adapter surfaces to an existing project. pip install yana-ai
cd your-project
yana-ai install
yana-ai doctor .Rules, hooks, agents, skills, commands, and integrity checks stay project-local. |
Route work and create dependency-aware missions through the native runtime. yana-rt route classify "fix auth"
yana-rt mission create "add-auth"Use evidence, capability, memory, workspace, and OS controls from the same CLI. |
New here? Start with Quick install. Building a platform? Read the architecture reference. Evaluating the safety boundary? Read Known limitations before the feature list. Curious how this project got here? Read the project history.
Your agent tries something dangerous. Yana intercepts it, explains why, and logs it — hard-blocking on Claude Code and Cursor, advisory guidance on Codex and Antigravity.
pip install yana-ai && yana-ai install # wire the hooks (60 seconds)Known issue, fixed 2026-07-25: old PyPI installs of
yana-rtcould self-recurse and spike CPU to 100% — see CHANGELOG.md for the incident writeup.pip install -U yana-ai(orcargo install yana-rt, never affected) resolves it.
Then ask your agent to misbehave, and watch.
Every example below is copy-pasted from a real, live-tested run of core/hooks/guard-destructive.sh on 2026-07-04, not aspirational copy (see Known Limitations for what this guard does not yet catch):
# Agent tries: git push --force origin main
Blocked: 'git push --force' (any flag spelling) is not allowed. The
orchestrator pushes branches; force-pushing risks overwriting shared history.
# Agent tries: rm -rf /some/path
Blocked: 'rm -rf' (recursive + force, any flag spelling) is irreversible.
Use targeted 'rm' with explicit paths, or ask the human to confirm first.
# Agent tries: git clean -f
Blocked: 'git clean -f' (any flag spelling) permanently deletes untracked
files. Ask the human to confirm before running this.That is the whole pitch: deterministic rules, runs locally, no LLM in the decision path, nothing leaves your machine. See Known Limitations for exactly which checks are live, wired hooks today versus documented policy an agent applies by convention, verified directly against the code rather than the docs describing it.
| Layer | Developer value | Primary surfaces |
|---|---|---|
| Runtime | Native chat, state, routing, health, and project operations | yana-rt, yana-ai-rt |
| Models | Local-first operation without excluding cloud providers | 19-provider Rust catalog: 5 local runtimes + 14 cloud/API adapters |
| Adapters | One governed project contract across supported harnesses | Claude Code, Codex, Cursor, Antigravity |
| Orchestration | Tasks, missions, memory, evidence, workspaces | router, mission dispatcher, event bus |
| Governance | Deterministic checks, audit chain, quarantine, HALT, human gates | capabilities, hooks, Yana OS, Giám Thị |
Terminal · Discord · Electron Desktop Claude Code · Codex · Cursor · Antigravity
│ │
└──────────── governed entry paths ──────────┘
│
Giám Thị root authority
HALT · quarantine · human unlock
│
Yana control plane
policy · identity · evidence · capability
┌──────────┴──────────┐
│ │
Rust TurnEngine project adapters
stream · cancel · tool loop hooks · rules · gates
┌────────┴────────┐
provider plane capability plane
local + cloud files · Git · processes
There is one authority hierarchy, but not one fake integration mechanism. Terminal chat, Discord, and Electron Desktop submit typed turns to the Rust TurnEngine. Claude Code, Codex, Cursor, and Antigravity remain native harnesses governed through project-local adapters, hooks, rules, and gates. Browser-only Yana deployments without a configured Rust runtime still use the legacy JavaScript gateway; that boundary is documented rather than described as fully governed.
| Interface | What it connects | Governance boundary |
|---|---|---|
| Terminal + Desktop + packaged Web | All local and cloud providers in the canonical Rust catalog | One TurnEngine, one capability authority path, one Giám Thị HALT boundary |
| Discord | Authenticated, channel/user-allowlisted remote chat | Uses the same provider catalog and TurnEngine; deliberately exposes no host or tool capabilities |
| MCP (opt-in) | Stdio tools for command checks plus governed repo, Git, host, process, and workspace operations | Built with Cargo feature mcp; approval-only workspace actions remain denied from MCP |
| Claude Code, Codex, Cursor, Antigravity | Native coding-agent harnesses | Governed through generated adapters, hooks, rules, and gates rather than pretending they run inside Yana's process |
Local and cloud intelligence therefore share a runtime contract without becoming one trust domain. Provider choice changes where inference happens; it does not change the runtime authority or canonical capability boundary.
Model intelligence may propose an action. Deterministic code and human authority decide whether it may happen.
The hero above states the principle; this section is the fuller picture it links to.
Yana brings several normally separate concerns under one architecture:
- Intelligence — local and cloud model providers (Claude, OpenAI, Gemini, DeepSeek, Groq, Ollama, LM Studio, llama.cpp, ...) provide reasoning without owning system authority. Changing the intelligence provider does not require changing the authority hierarchy.
- Execution — AI intentions are translated into canonical capabilities before reaching the real environment (
model proposal → TurnEngine → RuntimeAuthority → canonical capability → policy/approval → bounded executor → host). A tool name cannot grant itself permission. - Orchestration — individual AI turns participate in larger units of work: tasks, missions, routing, an event bus, workspaces, checkpoints — so work survives beyond a single prompt-response cycle.
- State and memory — session state, memory, mission state, and workspace state are preserved outside an individual model session; the intelligence performing the work can change while the surrounding operational context remains.
- Evidence and accountability — execution connects to evidence, provenance, audit, research sources, cost accounting, and policy decisions. The question is not just "did the AI produce an answer?" but "what happened, why was it allowed, what evidence supports it, what did it cost, and what state did it leave behind?"
Yana OS is not a replacement for Linux, macOS, or Windows — it is Yana's local management plane, reasoning about the operational state surrounding agents: which agent exists, what identity and autonomy level it has, what resources it holds, what work it is responsible for, whether it is healthy, and whether it should be quarantined or halted. This moves governance beyond individual tool calls toward agent lifecycle management (identity, agent lifecycle, autonomy, resources, health, monitoring, supervision, leases, governor, quarantine, HALT) — but it deliberately does not become a second execution engine. Execution remains owned by canonical capability boundaries.
HUMAN
│
▼
GIÁM THỊ
HALT / Control
│
▼
YANA CONTROL PLANE
│
▼
RuntimeAuthority
│
▼
Capabilities
│
▼
Executor
│
▼
Host
A sufficiently capable model does not become sovereign merely because it can reason better. Subagents do not automatically inherit human authority. Approval for one operation does not create permanent permission. The system can revoke execution independently of model intent.
Yana maintains a large ecosystem of agents, skills, commands, rules, and hooks — but deliberately distinguishes these from execution authority. A skill can teach an agent how to perform a task; a capability determines whether the system may actually do it. A thousand skills do not imply a thousand unrestricted system permissions — this lets Yana's knowledge surface grow without requiring its trusted execution surface to grow at the same rate.
Yana does not require every AI product to use the same execution mechanism. Terminal, Electron Desktop, packaged Web, and Discord use Yana's Rust runtime path; browser-only Web remains a compatibility surface unless connected to a trusted runtime. When another AI environment owns its own runtime — Claude Code, Codex, Cursor, Antigravity — Yana integrates through engine-specific governance surfaces instead. The integration mechanism can change; the authority principle does not. One authority hierarchy does not require one fake integration mechanism.
Yana's canonical core/ defines reusable operating knowledge — agents, skills, commands, rules, hooks, scripts, policies — which is then materialized for different AI harnesses (Claude Code, Codex, Cursor, ...). Switching AI engines does not mean rebuilding the surrounding operating environment from zero: the intelligence may change, while the workflows, governance principles, operational knowledge, and system state remain.
Yana's long-term value is not simply that it can run an AI model — models are increasingly interchangeable. Nor is its value simply the number of agents or skills it contains. The stronger abstraction is the system surrounding those models: authority, continuity, and execution, wrapped around interchangeable intelligence and temporary agent workers.
Yana turns independent AI models and agents into one governed, persistent system. It provides the control plane around intelligence: models for reasoning, agents and skills for knowledge and workflows, missions and memory for continuity, and canonical capabilities for governed execution.
AI can reason and propose. Yana determines what power that intelligence receives. Humans retain final authority.
AI thinks. Yana operates the system. Humans remain in control.
Two independent install paths. Neither is the "real" one — pick based on what you're doing:
→ pip install — pip install yana-ai
installs the project hooks/rules/agents into an existing repo (yana-ai install).
→ cargo install — cargo install yana-rt
builds the native Rust runtime: the fast, zero-Python-dependency yana-rt
terminal, up to ~12x faster on bounded commands (see BENCHMARK.md).
Note (2026-07-30): not distributed via npm. Yana AI is not, and is no longer planned to be, published to the npm registry — see VERSIONING.md for the full history. Use
piporcargoabove.
# Python CLI — installs the yana-ai command
pip install yana-ai
yana-ai install # installs Claude + Codex capability surfaces
yana-ai install --engine codex # install only the Codex surfaces
# Rust runtime (up to ~12x faster on bounded commands — see BENCHMARK.md)
cargo install yana-rt# Verify everything is wired
yana-ai doctor .yana-ai install uses the Python package directly; Node/npm is not required.
It preserves an existing AGENTS.md and synchronizes all 101 canonical agents,
2,025 skills, 170 commands, and the project hook files from core/.
- Python 3.11+ (for the pip package) or Rust/Cargo (for
cargo install yana-rt) - Git
- One of the 4 supported harnesses: Claude Code, Cursor, Codex, or Antigravity — see Multi-harness support below. Other tools aren't wired yet; adding one means writing a real adapter, not just claiming support.
git clone https://github.com/yanacuti1121/yana-ai.git
cd yana-ai
npm install
bash install.sh # copies hooks + config into your project
yana-ai doctor # verifyYana AI adapts to whichever tool you use:
bash core/scripts/switch-engine.sh cursor # .cursorrules + real beforeShellExecution hook
bash core/scripts/switch-engine.sh codex # AGENTS.md
bash core/scripts/switch-engine.sh antigravity # .agent/rules/yana-ai.md
bash core/scripts/switch-engine.sh status # check all 4 adaptersThe tables above describe the runtime architecture. This is the actual directory tree it lives in, grouped by what each path does rather than alphabetically. Two pairs of similarly-named directories are genuinely different things, noted below where that matters:
| Path | What's there |
|---|---|
src/ |
The yana-rt Rust binary. See Inside src/ below. |
core/ |
Rule/hook/skill/agent content, the JS/shell code that enforces it, and audit + trust state (core/memory/). See Safety architecture. |
gates/ |
Gate policy specs in Markdown (action_gate.md, truth_gate.md, ...) — distinct from core/gates/, which is the JS/shell code implementing them. |
scripts/ |
A handful of scripts specific to building/wrapping the yana-rt binary — distinct from core/scripts/'s 130+ general hook and safety scripts. |
memory/ |
Top-level L1 atomic facts and L2 session state — distinct from core/memory/'s audit log and trust ledger. |
scanner/ |
YAML risk-check rule definitions (shell-risk-checks.yml, auth-credential-checks.yml, ...) that src/scanner/ compiles and runs. |
policy/, guards/, router/, prompts/ |
More declarative config: policy templates, a guard index, the model-routing policy behind route.rs, and the system prompt. |
tools/yana-web/ |
The browser dashboard (Node server + client). |
tools/yana-desktop/ |
The Electron desktop shell. |
tools/ (other) |
Standalone utilities: airllm-bridge, codexmate, moss-tts-nano, yana-pixel-bridge, and a few one-off scripts. |
bin/yana |
The installed CLI entrypoint. |
adapters/ |
Per-harness adapter docs (Claude Code, Codex, Cursor, Antigravity). |
docs/ |
Architecture notes, ADRs, incident writeups, docs-site content. |
site/ |
The Astro-built marketing/docs website. |
examples/ |
Spec examples, context-packs, and a deliberately vulnerable test repo the scanner's own tests scan against. |
demo/ |
The script that records the terminal demo at the top of this README. |
tests/ |
The Python test suite. |
ops/ |
Release signing and release-gate service scripts. |
releases/, artifacts/ |
Release logs and build artifacts. |
reports/, ledger/ |
Scan-report schema/templates and the token-usage tracking schema. |
github-app/ |
A GitHub App integration. |
vendor/ |
Vendored reference copies of external projects Yana AI adapts from, including hermes-agent, openclaw, and penpot. |
A fifth, independently-versioned axis, the PyPI-distributed Python package,
lives at src/yana_ai/ rather than as a top-level directory of its own.
39 subcommands. Zero Python dependency. This is the source-defined count across feature builds: a default build exposes 32 runtime commands, Clap adds the visible help entry, and mcp plus remote are feature-gated.
yana-ai chat # governed streaming chat across the canonical provider catalog
yana-ai presentation # ask → preview → confirm → download an editable PPTX
yana-ai audit . # security scan — secrets, CVEs, supply chain risks
yana-ai graph . # knowledge graph — file deps, import resolution
yana-ai vault search Q # search 2,025 skills by keyword
yana-ai hunt . # hunt for security patterns (OWASP, injection, SSRF)
yana-ai fix . # auto-fix rule violations
yana-ai doctor . # full system health check
yana-ai map . # blast radius map — what can the agent touch?
yana-ai ci # run all gate checks (used in CI)
yana-ai route classify "fix auth bug" # classify task → simple/complex/external
yana-ai mission create "add-auth" # create parallel agent missionyana-ai presentation is not a one-shot “write some slides” prompt. It is a
human-gated presentation workflow designed for students, teachers, technical
briefings, and anyone who wants to review the plan before AI creates files.
Ask clear questions
↓
Read TXT / Markdown / HTML / DOCX / PPTX / PDF sources
↓
Generate and show the complete slide outline
↓
Confirm · Edit · Quit
↓
Write an editable PPTX bundle under Downloads
Before generation, Yana asks for the topic, audience, language, slide count, visual style, learning goal, source documents, citation preference, and speaker notes. It writes nothing until the user confirms the displayed outline.
# Install the optional PowerPoint renderer
pip install 'yana-ai[presentation]'
# Fully local: the brief and source text stay on your machine
yana-ai presentation --provider ollama --model qwen3:14b
# Preview without writing files
yana-ai presentation --no-ai --dry-run
# Also create PDF when LibreOffice is installed
yana-ai presentation --pdfPresentation intelligence goes through the same canonical yana-rt provider
catalog and turn runtime as chat. Ollama is the default local provider; cloud
providers remain available when explicitly selected. API keys are passed to
the runtime through stdin rather than process arguments, and source documents
are marked as untrusted reference context instead of executable instructions.
Each confirmed run creates a new, non-overwriting directory under
~/Downloads/Yana-Presentations/ containing:
- an editable
.pptxdeck; presentation.jsonwith the reviewed brief, slide content, notes, provider, model, and generation mode;- an optional
.pdfexport through local LibreOffice.
Model failures are fail-closed by default. Deterministic output is used only
when the user selects --no-ai or explicitly permits --fallback. See the
full Presentation Studio guide for
format requirements, automation, privacy boundaries, and PDF support.
Current performance snapshot (measured 2026-08-26 on an Apple M4 MacBook
Air, 16 GB RAM, macOS 27 beta; release build; historical methodology and
baseline in BENCHMARK.md):
| Path | yana-rt |
Python reference | Current reading |
|---|---|---|---|
| Process startup | 4.21 ms | — | Effectively unchanged from the 4.15 ms July baseline |
doctor |
255 ms | 365 ms | Rust is 1.43x faster, but currently runs 10 checks versus Python's 16 |
ci check |
414 ms | 40 ms | Rust is 10.34x slower and returned 0 findings where Python returned 3 warnings |
scan core/skills |
4.45 s | 8.89 s | Rust is 2.00x faster |
Default full-repo scan |
14.61 s | 7.90 s | Python is currently 1.85x faster |
| Clear-state HALT hook | 3.80 ms | — | Faster than the 4.97 ms July baseline |
| Token-budget guard | 3.48 ms | — | Down from 65 ms after the native fast path |
The release binary is about 14 MiB. Peak RSS was 15.3 MiB for the Rust skill scan versus 25.3 MiB for Python, and 23.0 MiB versus 34.1 MiB for the default full scan. These are local measurements, not cross-platform claims; Linux and Windows numbers remain unmeasured.
Performance work queued from this measurement: restore ci check finding
parity before optimizing it; reconcile the six checks present in Python
doctor but absent from the Rust path; profile the Rust full-repo scanner; and
reduce the current release build's 140 warning lines. Startup, HALT enforcement,
and token-budget enforcement do not currently need optimization.
yana-rt is one binary, but it is not one module. Beyond the turn runtime
described above (runtime/, model/, capability/, chat/, remote/,
mcp.rs), four more planes live under src/:
Yana OS (src/os/, internally "Program K") is the local management
plane, separate from the turn loop:
identity/— guest / operator / sovereign authentication tiersautonomy.rs— the autonomy ladder (how much an agent may do unattended)governor.rs— behavior limits on top of that laddercredential.rs— credential handlingresource/— CPU/RAM/PID quotassupervisor.rs— reads and writes the HALT lock file; this is the function the runtime's authority chain calls into on every turn, and the same file the independent watcher described below writes toservice/(manager.rs,runtime.rs,attribution.rs) — daemon lifecycle managementagent.rs,health.rs,monitor.rs,monitor_service.rs,state.rs,status.rs,roadmap.rs,platform/
Security and audit (guard/, scanner/, score/, evidence/,
provenance/, filescan/) is the tooling behind yana-rt audit,
yana-rt hunt, and the pre-commit rule scan: a native-Rust port of the
highest-frequency PreToolUse hooks, the rule-matching engine, a
CRITICAL/HIGH/MEDIUM/LOW severity scorer, Truth Gate provenance, and a
check that code ported into core/lib/*_adapted/ still matches what it
was vendored from.
Workspace and memory (workspace/, memory.rs, vault/,
session_context.rs) is the unified local event store, the L1/L2 fact
system, the secrets vault with its own search index, and the single
SessionContext type every client (chat, MCP, Desktop) constructs a
turn from.
Operational tooling is the rest of the CLI surface: init, doctor,
fix, watch, monitor, observability, config, cost, route,
plugin, task, skill_quality, spec, graph, hunt, ci,
design, mission, bus, and flock_v1 (the cross-process file lock
everything else in this list relies on not to corrupt state under
concurrent writers).
A fifth, independent axis, src/yana_ai/ (rt.py, cli.py), is the
PyPI-distributed Python CLI. It ships and versions separately from the
Rust binary; see VERSIONING.md.
core/
├── hooks/ # 63 PreToolUse / PostToolUse / Stop hooks
├── rules/ # 71 enforced rules (security, correctness, UI, git)
├── scripts/ # safe-run.sh, verify-core-lock.sh, secure-logger.sh
├── gates/ # truth_gate.md, action_gate.md
├── agents/ # 101 specialist agent definitions
├── skills/ # 2,025 SKILL.md files
├── config/
│ ├── core-lock.json # SHA-256 manifest — 285 core files pinned
│ └── skills-lock.json # skill content hashes
└── memory/
├── L1_atomic/ # permanent facts — persist across sessions
└── L2_session/ # session state — auto-expires
Key properties, verified against the actual code, not just the docs describing it:
- Tamper-evident hash-chain audit log — every action logged as a hash-chained JSONL entry (each entry embeds the previous entry's hash, a linear chain — not a Merkle tree, despite what earlier versions of this README called it); tampering with an existing line is detectable by recomputing the chain (
verify-audit-chain.sh) - Core-lock integrity — a SHA-256 manifest (
core-lock.json) detects drift, deletion, and unreviewed file injection incore/rules,core/hooks,core/gates,core/scripts - Reviewed infrastructure writes — before a change lands in
core/rules/**,core/hooks/**,core/gates/**, orcore/agents/**, two independent reviewer agents (security-auditor plus a paired reviewer) are dispatched; a Safety-severity finding from either blocks the write until a human resolves it - Human gate — irreversible actions (force-push, publish, deploy, delete) require an explicit human confirmation in the current session, not a standing approval
- Independent halt watcher ("giám thị") — opt-in, offered as a one-time prompt on install. Runs on a real OS scheduler (macOS LaunchAgent / cron), entirely outside any Claude session, and checks core-lock integrity, audit-chain integrity, and recent changes to security-sensitive paths every few hours. On any finding it writes a lock file that makes every subsequent tool call in every session against that repo deny outright, with no bypass flag and no code path — in this hook or the watcher itself — that clears it. Only a human, after reading the lock's reason, deleting the file by hand, can resume. The asymmetry is deliberate: the thing that can stop a session isn't the thing that can restart it, so an agent (compromised or just wrong) can't grade its own homework and wave itself back in.
Same live-tested output as the demo at the top of this README (core/hooks/guard-destructive.sh, 2026-07-04) — not repeated here to avoid saying it twice. See Known Limitations below for what this guard does not yet catch, or docs/reference/known-limitations.md for the full technical breakdown.
Honest, not aspirational: verified directly against the live hooks, not the docs describing them.
guard-destructive.shis a command-string guard, not a shell parser. It tokenizes on whitespace and matches known-dangerous spellings (rm -rf,git push --force,git clean -f,git reset --hard, direct push to main/master). As of 2026-07-05 (4 rounds of adversarial review in one day) it normalizes whole-token quoting ("...",'...',$'...'), backslash-escaping,${IFS}-style variable splicing, and denies outright on brace-expansion shapes adjacent to a git/rm invocation, but it does not handle mid-token quote-splice concatenation (quoted and unquoted fragments alternating within one word with no separating whitespace, e.g.--forc"e", a real shell resolves this to--force, this guard does not). Closing that needs character-run quote-state parsing, not another token comparison: tracked as a longer-term design question, not silently claimed as closed. A deliberately-crafted command can still slip past this guard; an ordinary agent typing a command normally will be caught.- SSRF validation is active across the Claude, Codex, and Claude-plugin manifests; supply-chain protection still varies by runtime surface.
tool-validator.shnow protects the supported Bash/write/WebFetch tool surfaces.dependency-safety-gate.shandsupply-chain-guard.shremain plugin-only, so typosquat/package-install blocking must not be claimed without checking the active installation surface. Generated execution-path evidence is maintained indocs/operations/hook-execution-path-audit.md. core/and.claude/are two copies of the same source by design, not an accidental duplicate.core/is canonical,.claude/is what Claude Code reads at runtime, andcore/config/core-lock.jsonpins SHA-256 hashes of both. If you see them as duplicated content, that is intentional, not a bug to "clean up."- macOS ships no GNU
timeout/gtimeoutby default. A hook that assumed one was present silently never executed any guarded hook on affected machines until this was found and fixed (2026-07-04). Now degrades gracefully (runs without a timeout cap) instead of silently no-op'ing, but worth knowing this class of "assumed environment" bug is exactly what to watch for if you fork or extend these hooks.
Found a gap not listed here? Open an issue. Real-world reports are how a guard like this actually gets sharper, not by adding more documentation about what it's supposed to do.
Every task is classified before execution: no more guessing whether to handle it inline or dispatch an agent.
yana-ai route classify "implement JWT refresh token"
# → { "route": "complex", "gate": "harness", "confidence": 0.36,
# "suggested_agents": ["security-engineer", "backend-developer"] }
yana-ai route classify "xem git log 10 commit"
# → { "route": "simple", "gate": "auto", "confidence": 0.43 }
yana-ai route classify "deploy to production"
# → { "route": "external", "gate": "confirm", "confidence": 0.30 }Six routes:
- simple → Yana handles directly (read-only, no agents needed)
- skill → matched against a 2,025-entry index, dispatches exact skill agent
- learn → routes to
hoc-tap, a Socratic learning assistant (triggers on "learn", "explain", "why" — English and Vietnamese) - daily → routes to
daily-assistant, summarize / plan / draft (triggers on "summarize", "write an email", "make a plan" — English and Vietnamese) - complex → dispatch specialist agent(s) with a scoped brief
- external → stop, confirm with human before proceeding
Domain-aware agent selection: auth tasks → security-engineer, database → database-expert, UI → frontend-developer + ui-ux-designer.
Wave-based parallel orchestration with dependency resolution, built in Rust, zero Python.
# 1. Create mission
MID=$(yana-ai mission create "implement-auth" | awk '/id:/{print $2}')
# 2. Declare tasks with dependencies
yana-ai mission task $MID "design-schema" --agent database-expert --produces schema.sql
yana-ai mission task $MID "implement-auth" --agent backend-developer \
--consumes schema.sql --produces src/auth.ts
yana-ai mission task $MID "write-tests" --agent test-engineer \
--consumes src/auth.ts --produces tests/auth.test.ts
# 3. Dispatch wave 1 — only tasks whose dependencies are satisfied
yana-ai mission dispatch $MID --max-parallel 3
# → JSON briefs for each ready agent
# 4. Mark complete, dispatch next wave
yana-ai mission done $MID "design-schema" --evidence schema.sql
yana-ai mission dispatch $MID # → wave 2 unlocked
# Cancel / retry stuck tasks
yana-ai mission cancel $MID "implement-auth"
yana-ai mission retry $MID "write-tests"Tasks marked Running on dispatch: re-running dispatch never double-dispatches the same task.
Launch multiple agents in parallel with hard limits and a kill switch:
# Launch 3 agents, at most 3 running in parallel
bash core/scripts/multi-agent-launch.sh start \
--agents "scanner,auditor,qa-team" \
--concurrency 3
# Real-time status
bash core/scripts/multi-agent-launch.sh status
# Stop one specific agent
bash core/scripts/multi-agent-launch.sh kill scanner
# Kill switch — stop everything immediately
bash core/scripts/multi-agent-launch.sh kill all
# Tail an agent's log
bash core/scripts/multi-agent-launch.sh log auditorOr drive it from a task-list file:
# tasks.txt — one line per task: agent_name:task description
echo "scanner:scan the whole repo
auditor:check the hooks
qa-team:run the test suite" > tasks.txt
bash core/scripts/multi-agent-launch.sh start --tasks-file tasks.txt --concurrency 4status shows 6 states: working (alive, log updated recently), blocked (alive, but its log hasn't changed in over YANA_AGENT_STALE_SECONDS seconds, default 30, so it may be stuck), done (exited 0), failed (exited non-zero), unknown (the process is gone but never wrote its own exit code, e.g. after a SIGKILL), killed (stopped via kill).
See the full CLI reference for sample output and more detail, or COMMANDS.md for every yana-ai command in one place.
Scan any repo's AI agent configuration on every PR: secrets, permissions, hook injection, MCP vulnerabilities.
# .github/workflows/yana-ai-scan.yml
- uses: yanacuti1121/yana-ai/.github/actions/scan@main
with:
fail-on: 'high' # fail CI on HIGH or CRITICAL findings
diff-only: 'true' # scan only changed files on PRs
comment-on-pr: 'true' # post findings summary as PR commentPosts a comment on every PR:
🟠 Yana AI Security Scan — HIGH
| Metric | Value |
|---------|--------|
| Risk | HIGH |
| Score | 58/100 |
| Findings| 3 |
→ Full workflow template · full reference
yana-rt mcp exposes the canonical destructive-command check plus governed
repo, Git, host, process, and workspace operations as MCP tools over stdio.
It is opt-in, gated behind the mcp Cargo feature, and not part of the
default binary. Human approval cannot be manufactured over this transport:
approval-only workspace operations are rejected by the MCP server.
Its first real consumer is Buzz, a
self-hostable team workspace where AI agents are first-class members
with their own keys. Buzz's buzz-acp spawns any ACP-compliant agent
(goose, codex, claude-code, or buzz-agent) and can wire in an extra
MCP server via BUZZ_ACP_MCP_COMMAND — pointed at Yana AI, every agent
Buzz orchestrates gets the same command check, not just Claude Code.
cargo build --release --features mcp
export BUZZ_ACP_MCP_COMMAND=/path/to/Yana-AI/scripts/yana-rt-mcp-wrapper.shThe wrapper exists because buzz-acp invokes BUZZ_ACP_MCP_COMMAND with
no arguments, but yana-rt needs the mcp subcommand — see
docs/programs/buzz-mcp-integration.md
for full setup (keypair generation, relay registration) and the verified
stdio JSON-RPC transcript. Note: this makes the check available to the
spawned agent — whether that agent actually calls it before running a
command depends on the agent's own tool-use policy, nothing forces it.
Live → · Download Desktop → · Command Reference → · Latest release →
Yana is the first end-user interface built on Yana AI core. The Electron Desktop app uses the local Rust runtime for governed turns; the browser-only deployment remains a compatibility surface until it is connected to a trusted local runtime.
Electron Desktop → local NDJSON adapter → yana-rt headless
→ Giám Thị + Yana authority checks
→ TurnEngine
→ provider or approved capability
Browser-only web → legacy JavaScript gateway → provider
(explicit compatibility boundary, not the canonical governed path)
- Zero signup: bring your own API key
- 🔐 Encrypted key vault — keys stored AES-256-GCM, master key non-extractable (WebCrypto + IndexedDB), never plaintext
- Canonical Rust catalog: 19 providers — Anthropic, OpenAI, Gemini, Groq, DeepSeek, OpenRouter, xAI, Novita, NVIDIA, MiniMax, GLM, Hugging Face, 9Router, Kimi, Ollama, LM Studio, llama.cpp, TurboFieldfare, and AirLLM
- Electron Desktop: 17 configured providers use the Rust headless path; llama.cpp and AirLLM remain runtime/terminal integrations rather than Desktop settings entries
Common provider setup examples, bring your own key, keys encrypted locally (never sent to Yana AI):
| Provider | Type | Setup |
|---|---|---|
| Claude | Cloud | API key → console.anthropic.com/settings/keys |
| OpenAI | Cloud | API key → platform.openai.com/api-keys |
| Gemini | Cloud | API key → aistudio.google.com/app/apikey |
| Groq | Cloud | API key → console.groq.com/keys |
| DeepSeek | Cloud | API key → platform.deepseek.com/api_keys |
| OpenRouter | Cloud | API key → openrouter.ai/settings/keys |
| 9Router | Local | npm install -g 9router → 9router (runs on localhost:20128) |
| Ollama | Local | ollama.com/download → ollama serve → ollama pull llama3.2 |
- 📊 100% real data — live provider stats, L1 memory garden, audit-log health panel; zero demo numbers
- Skill routing built in, type naturally and Yana AI dispatches the right agent
- Non-coding use cases: learning (Socratic learning assistant), daily work (summarize / plan / draft)
- SSE streaming, mobile-friendly · Electron desktop app — macOS, Windows, Linux
If Yana AI is the power grid, Yana is the first building plugged into it.
Yana AI enforces safety on what an agent does — it does not reduce how
many tokens an agent burns reading command output. If that's your actual
pain point, pair it with rtk, a
separate Apache-2.0 tool built for exactly that (filters/compresses bash
output before your agent reads it, up to 90% smaller on common commands).
Not vendored, not a dependency — see
docs/reference/token-optimization.md
for install + wiring into Claude Code/Cursor/Codex/Antigravity.
Yana AI has three independently versioned release axes — deliberate, not drift (same pattern as Kubernetes or LLVM: independent components, independent release cadence). Only two of the three actually ship to a package registry; the product axis (rules/hooks/skills/agents/CLI) does not, see the table's Registry column.
| Axis | Version | Registry |
|---|---|---|
| Product (rules/hooks/skills/agents/CLI) | 1.4.2 | None — not distributed via npm, see VERSIONING.md |
Rust runtime (yana-rt) |
1.4.2 | crates.io/crates/yana-rt |
| Python package | 1.4.2 | pypi.org/project/yana-ai |
If you see three different numbers across this repo (including in git tag, ROADMAP.md's older entries written before the 2026-07-05 axis split, or the badges above), that's expected — full rationale in VERSIONING.md.
Three new local-first providers, a runtime architecture unification, and a safety-hook wiring gap that had sat unnoticed for months, closed:
- New providers: a Discord adapter (read-only chat, its own worker
thread isolated from turn panics, dispatch queue now bounded against
a message flood); an AirLLM local-model provider via a thin
OpenAI-compatible bridge, with bounded admission (a second concurrent
request gets an explicit
503, not an unbounded wait), a read timeout, and a context-length ceiling checked before the expensive generation call; Ollama model management built into the terminal chat (pull/delete/status), now correctly distinguishing a genuine backend failure from an honestly-empty install list. - Runtime architecture: the chat surface moved onto a canonical
Capability Runtime (typed errors,
SessionContext, golden end-to-end tests) on top of a newly unified Rust workspace; a Host-Native OS Program (platform contract, resource/model planes, actor identity, a resident service) and an always-on OS Service Supervisor foundation. - Safety, the headline fix:
tool-validator.sh's null-byte check had silently collapsed to an always-matching empty pattern — a bash quoting gotcha ($'\x00'cannot represent a real NUL byte) that denied essentially every Bash tool call. Also: 16 safety hooks (deploy-gate,db-protect,api-destruct-guard,supply-chain-guard,prompt-injection-guard,token-scope-guard,code-freeze,code-quality-gate,coverage-gate,dependency-safety-gate,static-analysis-gate,test-runner-gate,multi-agent-lock,confidence-scorer,risk-scorer,canary-token-guard) existed incore/hooks/but were never referenced in.claude/settings.json— none had ever executed — now wired, plus 2 of them fixed for silently disabling their own checks whenjqis missing. A unified Giám Thị control plane, this README's Safety Architecture halt watcher, replaces the earlier split implementation. - Chat UX: real mouse support, contextual status hints,
/undo, and custom slash commands inyana chat. - Ops: the sandbox Docker image now publishes to GHCR on every
push; CI hardening from a standing start — every GitHub Action
reference SHA-pinned,
cargo audit/pip-audit/npm auditwired as a required check, a release-manifest step recording commit SHA/toolchain/artifact SHA256 for every published binary, branch protection enabled onmainfor the first time; real CVEs closed (quinn-protoRUSTSEC-2026-0185, an SSRF gap for CGNAT and IPv4-mapped-IPv6 ranges).
Full writeup with PR numbers: CHANGELOG.md (see the "v1.4.0" entry).
| Document | Description |
|---|---|
| Journey | The story behind Yana AI |
| Philosophy | Core beliefs and long-term vision |
| Principles | Engineering principles that guide every design decision |
| Lineage | Dated, evidence-checked code-origin record — where this codebase actually came from |
| Acknowledgements | Credits and appreciation for the open-source community |
One person. No team. No funding.
- Hook architecture, safety gates, Python CLI
- Rust runtime (
yana-rt), 100 agents, 2,025 skills, multi-harness support - 4 harness adapters (Claude Code, Cursor, Codex, Antigravity)
The 2,025 skills cover: frontend, backend, AI/LLM, security, Kubernetes, WebAssembly, DevOps, databases, testing, and more. Two agent personas cover non-coding use cases: learning (hoc-tap) and daily productivity (daily-assistant).
Static badge, paste into your README:
[](https://github.com/yanacuti1121/yana-ai)Dynamic audit badge, shows live security score:
yana-ai badge . # prints badge markdown with current score
yana-ai badge . --json # machine-readable outputGitHub Action, scan every PR automatically:
- uses: yanacuti1121/yana-ai/.github/actions/scan@main
with:
fail-on: 'high'| Full command reference (CLI) | COMMANDS.md |
| Full command reference (CLI + slash commands, web) | yanacuti1121.github.io/Yana-AI/commands.html |
| Contributing | CONTRIBUTING.md |
| Code of Conduct | CODE_OF_CONDUCT.md |
| Security policy | SECURITY.md |
| License | Apache 2.0 |
Vũ Văn Tâm · Vietnam · 17
| phamlongh230@gmail.com | |
| Website | yanacuti1121.github.io/Yana-AI |
| GitHub | yanacuti1121/Yana-AI |
| Yana Desktop | yanacuti1121.github.io/Yana-AI/desktop.html |
Full translations of this document: README.vi.md (Tiếng Việt) · README.ko.md (한국어) · README.zh.md (中文)
This codebase's roots go back further than this repo's own git history (which starts 2026-05-17): an earlier scaffold built under the name "YAMTAM ENGINE". See docs/history/LINEAGE.md for the dated origin record — what's independently verified (zip contents, embedded git history, checksums) versus what's reported and still unconfirmed.
Yana AI is independently implemented. It studies public architecture patterns and official interoperability contracts; it does not rebrand those projects or present their work as Yana's own.
| Source | What Yana learned or implemented against | Provenance boundary |
|---|---|---|
| AAIF Goose | Provider-agnostic agent runtime and the cohesion of Rust, CLI, Desktop, and API surfaces | Apache-2.0 project studied at the architecture-pattern level; no Goose source is copied or vendored in this runtime-unification work |
| Model Context Protocol specification | Standard tool/resource interoperability and protocol boundaries | Official public specification; Yana's authority hierarchy, capability policy, and runtime are independently designed |
| Anthropic streaming documentation | Messages streaming and event semantics | Provider wire contract only; no UI or product code reused |
| Google Gemini generate-content API | Gemini streaming, content parts, and inline-image request semantics | Provider wire contract only; implementation written inside Yana's provider abstraction |
| OpenAI Chat API reference | OpenAI-compatible chat, SSE, usage, and tool-call fields | Provider wire contract used for interoperability across compatible endpoints |
No source from Goose or the listed projects was copied into Yana by this runtime-unification work. Any future direct code reuse must preserve the original source URL, license, copyright notices, and file-level attribution.
Yana AI is built on top of ideas, patterns, and tooling from the open-source community, including projects licensed under Apache 2.0, MIT, and other permissive licenses. All third-party sources are used in compliance with their respective licenses. This project has no intent to copy, misrepresent, or infringe upon the intellectual property of any individual or organization. Where specific projects have directly influenced design decisions, they are credited in the relevant source files and rule documentation.
