English · Tiếng Việt · 한국어 · 中文
Yana AI 🐰
One runtime. Any AI. Human-governed.
A local-first, cross-platform system for running, connecting, orchestrating, and governing AI — with deterministic control over what it can access, change, and execute.
Your AI can act. But who decides how far it can go?
Created by Vũ Văn Tâm · Vietnam
AI is gaining agency. Governance has not caught up.
A model can now inspect a repository, edit files, run commands, launch agents, call tools, and prepare a release. The difficult questions are no longer only about intelligence:
- Can one runtime connect local models, cloud models, and coding agents without locking the project to one vendor?
- Can every interface share the same capability boundary instead of inventing its own safety behavior?
- Can the system distinguish routine automation from actions that must remain human-only?
- Can a developer inspect the evidence behind “safe,” “done,” “blocked,” or “approved”?
- Can one independent control plane halt every agent when project integrity is uncertain?
Yana AI exists to make those questions executable.
It is not another foundation model and it does not replace Claude, Codex, Cursor, Ollama, or your preferred runtime. It connects them to a native execution layer, deterministic policy gates, project memory, orchestration primitives, and a human-governed operating plane.
Choose your first win
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.
What Yana unifies
| 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.
One runtime, several interfaces
| 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 bypass Yana's typed turn, capability, evidence, or human-approval boundaries.
Model intelligence may propose an action. Deterministic code and human authority decide whether it may happen.
See governance act
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.
The problem
AI coding agents make mistakes. They rm -rf the wrong directory. They push force to main. They hallucinate test results. By the time you notice, the damage is done.
Yana AI sits between the agent and your system: every risky tool call passes through a chain of deterministic checks before execution.
What it catches
Destructive git operations, rm outside the workspace, piping the internet into bash, and unvetted package installs, via agent hooks backed by a Rust runtime (yana-rt).
How it works
Agent wants to run a command
↓
Anti-evasion scan — blocks base64 decode+exec, pipe-to-shell interpreters
Shell sanitization — quotes all variables, strips shell metacharacters
Egress / SSRF policy — implementation available; runtime wiring varies
Supply-chain vetting — implementation available; runtime wiring varies
Blast-radius cap — caps how many files/what scope a destructive command can touch
Tamper-evident audit log — every allowed AND blocked action logged, hash-chained
Human gate — irreversible actions (push, publish, delete) require explicit confirmation
↓
Execute (or block + log)
See Known Limitations for exactly which of these are live, wired hooks today versus documented policy an agent applies by convention, verified directly against the code rather than the docs describing it.
Quick install
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/.
Requirements
- 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.
Clone from source instead
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 # verify
Multi-harness support
Yana 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 adapters
Repository layout
The 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.
Rust runtime — yana-rt
34 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 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 mission
Benchmark (measured 2026-07-23, full methodology in BENCHMARK.md):
bounded commands like doctor/ci are ~2–12x faster than Python
(startup-dominated); a full-repo scan converges to ~1.1x at 19k files
(work-dominated, not startup-dominated at that scale). The 1256x figure
this line used to claim was already found unverified once
(2026-05-31, commit fb6a0cd7) and regressed back in by an unrelated
README restore (2026-07-07) — not reproducible by any measurement in
BENCHMARK.md, then or now.
Inside src/: Yana OS and the other planes
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.
Safety architecture
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 — 282 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.
What it looks like in practice
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.
Known limitations
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.
Yana task router
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.
Mission dispatcher
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.
Multi-agent launcher
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 auditor
Or 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 4
status 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.
GitHub Action
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 comment
Posts a comment on every PR:
🟠 Yana AI Security Scan — HIGH
| Metric | Value |
|---------|--------|
| Risk | HIGH |
| Score | 58/100 |
| Findings| 3 |
→ Full workflow template · full reference
MCP integration — Buzz
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.sh
The 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.
Yana AI (the web product)
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.
Cutting your own token bill
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.
Versioning
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.
What's new in v1.4.0
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).
📚 Documentation
| 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 |
Built by one person
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).
Add Yana AI to your repo
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 output
GitHub Action, scan every PR automatically:
- uses: yanacuti1121/yana-ai/.github/actions/scan@main
with:
fail-on: 'high'
Project links
| 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 |
Contact
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 |
🇻🇳 Tiếng Việt · 🇰🇷 한국어 · 🇨🇳 中文
Full translations of this document: README.vi.md (Tiếng Việt) · README.ko.md (한국어) · README.zh.md (中文)
Lineage
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.
Design influences and provenance
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.
Acknowledgements
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.
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 yana_ai-1.4.2.tar.gz.
File metadata
- Download URL: yana_ai-1.4.2.tar.gz
- Upload date:
- Size: 14.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b962ebd70e27d07953cd9893680155b4b47619735f7bf181f0a519f6bf882297
|
|
| MD5 |
82ce05643ccb72adc389fa87f95d7536
|
|
| BLAKE2b-256 |
1e18b68645cdd2aab0dfba59e4688670dd19ff20ee951f41fa028101fa691668
|
File details
Details for the file yana_ai-1.4.2-py3-none-any.whl.
File metadata
- Download URL: yana_ai-1.4.2-py3-none-any.whl
- Upload date:
- Size: 17.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c207ec5ad7a2d37e68e38fc9edf86c4a99be6c93c59ad0c08d7227ed444fb1e
|
|
| MD5 |
19620458ed1a16f1677188e9601df53d
|
|
| BLAKE2b-256 |
a7c9be47d448a6012d75302bc2f8c0150b6af21474fd8e47d16ec9f79a71f21b
|