kaku
Kaku — open-source terminal built by tw93 over the 2026 Spring Festival break. Stack: Rust + Lua, with embedded AI features. Repository: tw93/Kaku.
In this wiki Kaku appears primarily as a case study in 2026-04-27-claude-code-architecture-governance-engineering for how to structure a claude-code project — specifically:
- Skill examples are drawn from Kaku’s
.claude/skills/: arelease-checkchecklist Skill, aconfig-migrationworkflow Skill (withdisable-model-invocation: truebecause of side effects), and aruntime-diagnosisdomain-expert Skill (claude-skills). - Mixed-language Hooks — Kaku’s two-language stack motivates per-extension PostToolUse Hooks:
cargo checkon*.rsedits,luajit -bsyntax check on*.luaedits (claude-hooks). kaku doctorpattern — a CLI subcommand that emits a structured environment-health report. Tw93’s recommendation: have your CLI exposeinit/config/reset/doctorsemantically, so Claude Code can converge on environment state before acting rather than guessing about config-file locations (2026-04-27-claude-code-architecture-governance-engineering).