-
Notifications
You must be signed in to change notification settings - Fork 1
v0.8.0
Released: 2026-04-15 Theme: Route tasks across tiers within one mission. Add semantic search over project knowledge.
One mission is rarely all-hard or all-easy. v0.8.0 introduces Tier Cascade: Opus plans, Sonnet writes, Haiku greps. Each step runs on the cheapest tier that can do it competently. A new local embedding layer (sentence-transformers) gives /kasi-search semantic queries over .kasidit/knowledge/ without phoning home.
The preceding release (v0.7.4) locked tier behavior at session start — whichever model the user opened with drove the entire mission. That overcharged Opus for mechanical work and underserved Haiku on anything requiring reasoning. v0.8.0 decomposes missions into sub-tasks routed by reasoning requirement:
- Plan (what to do, why, in what order) → Opus
- Work (write code, follow plan) → Sonnet
- Grep / scan / list (mechanical lookups, audits by checklist) → Haiku
This matches SWE-bench observation: Opus wastes budget on grep calls; Haiku hallucinates on architecture.
A mission entering Tier Cascade mode follows:
Opus: mission → plan (file list, step sequence, trade-offs)
↓ dispatch brief to Sonnet
Sonnet: plan → implementation (code, tests, docs)
↓ dispatch brief to Haiku (optional)
Haiku: implementation → audit (checklist pass, grep verification)
↓
Opus: synthesize → report
Each dispatch uses the same brief format later formalized in v0.9.1 (MISSION / INPUTS / CONSTRAINTS / EXPECTED OUTPUT / PRIOR CONTEXT).
Explicit entry point for cascade orchestration. User invokes when a mission is large enough to benefit from multi-tier routing. Small missions stay single-tier.
sentence-transformers model (default: all-MiniLM-L6-v2, 384-dim) runs on the user's machine. Embeds every markdown file under .kasidit/knowledge/ and indexes them. Queries are local — no API calls, no data leaves the machine.
Entry point: /kasi-search <query> returns ranked snippets.
/kasi-search "how did we handle CSRF last time"
Returns top-k semantic matches from .kasidit/knowledge/ with file path, line range, and similarity score. Intended for "we solved this before somewhere" recall.
- Added: Tier Cascade orchestration as a formal pattern
-
Added:
/kasi-cascadeand/kasi-searchcommands -
Added: local embedding layer under
plugins/kasidit/embedding/ - Refined: dispatch brief format (finalized in v0.9.1)
None. Tier Cascade is opt-in via /kasi-cascade; /kasi-search requires embedding setup but does not break anything else.
First run of /kasi-search downloads the embedding model (~80 MB) and indexes .kasidit/knowledge/. After that, queries are instant.
Tier Cascade requires access to multiple tiers in the current environment. In single-tier setups (e.g. Haiku-only), /kasi-cascade falls back to single-tier behavior.
- Embedding model is English-dominant. Thai / mixed-language content works but ranks lower.
- Index is not watched — re-run
/kasi-search --rebuildafter large knowledge updates. - Cascade dispatch requires the harness to support multi-model routing in one session.
- Model Tiers
- v0.7.4 — prior release
- v0.9.0 — next release
Repo • Discussions • Issues • Changelog • Security • Contributing • MIT • © Kasidit Wansudon
Kasidit
Core
- Commands
- Kasi-Mode 🔥 v0.10
- Backend-Hooks 🔥 v0.10
- Model Tiers
- Gravity Pattern
- Multi-Agent-Orchestration
- Claude Design Integration
- UI Override Mode
- FAQ
Version History
- Version History — overview
- v0.13.0 — thClaws (Consolidated) 🦞
- v0.12.0 — thClaws Runtime Support 🦞
- v0.11.0 — Backend + Bridge + Runbook 🚀
- v0.10.0 — Mode + Backend Hooks
- v0.9.2 — Gravity
- v0.9.1 — Master Orchestrator
- v0.9.0 — Claude Design
- v0.8.0 — Tier Cascade
- v0.7.4 — SWE-bench
- v0.3.0 — Tier adaptation
- v0.2.1 — Docs protocol
- v0.2.0 — UI Override
- v0.1.0 — Core
Concepts
Commands
- Kasi-Init
- Kasi-Review
- Kasi-Security
- Kasi-Fix
- Kasi-Ui
- Kasi-Cascade
- Kasi-Multi
- Kasi-Scaffold
- Kasi-Docs
- Kasi-Status
- Kasi-Promote
- Kasi-Pull
- Kasi-Sync
- Kasi-Search
- Kasi-Wiki-Sync
Agents
- Agent-Architect-Planner
- Agent-Audit-Specialist 🔥 v0.10
- Agent-Bug-Hunter
- Agent-Deep-Researcher
- Agent-Legacy-Specialist
- Agent-Migration-Specialist
- Agent-Refactor-Surgeon
- Agent-Test-Writer
Deprecated v0.10 (stubs → audit-specialist --focus=..., removed in v0.11)
-
Agent-Code-Reviewer →
--focus=quality -
Agent-Security-Auditor →
--focus=security -
Agent-Perf-Profiler →
--focus=perf