[01] Full Power, Lean Footprint
Full mode. Commercial-grade planning and context management, full tool suite — built for complex multi-step work. Lean mode. Bash-only, ~400 token overhead, fast on small models — one-shot questions, zero ceremony. Five context-compression presets give each call an absolute conversation budget — same level, same recall across models.
huko --compact=large -- "review this diff, flag risky changes, suggest fixes"
huko --lean -- "what's the uptime of this machine"
[02] Project as Context
.huko/ — like .git/, but for your agent. Sessions, config, memory scoped to the directory. cd in, full context. cd out, clean slate. Pass --memory and nothing touches disk at all.
cd ~/projects/backend && huko -- "continue the auth refactor"
cd ~/projects/frontend && huko -- "review the new component"
huko --memory -- "explain this regex"
[03] CLI-Native, Pipe-Friendly
stdin in, stdout out. Pipe logs, scripts, data; pipe results to files, jq, the next command. Output as text, --json, or --jsonl. Works anywhere the terminal does. --chat for REPL mode.
cat logs/recent.log | huko -- "are these errors caused by my recent commits? check git history"
git diff | huko -- "review for risky changes, read affected files for context"
huko --json -- "audit deps for unmaintained packages and known CVEs" > audit.json
huko --chat
[04] Tool-Level Security + Redaction
disable tools. deny / allow / requireConfirm regex on every call. huko docker run sandboxing. Secrets scrubbed before the LLM sees them — [REDACTED:name] in, real value out.
huko safety tool
huko safety disable web_fetch
huko safety deny bash 're:^rm -rf'
huko docker run -- "delete all node_modules, clear npm cache, reinstall everything"
huko -- "push the current branch using my github token"
[05] Provider-Agnostic
Anthropic. OpenAI. DeepSeek. Zhipu. MiniMax. OpenRouter. Moonshot. Your own gateway. huko setup in 30 seconds, huko model current to switch, per-project or global. No lock-in.
huko setup
huko model current anthropic/claude-sonnet-4-6
huko model current deepseek/deepseek-v4-flash --project