This repository was archived by the owner on Sep 13, 2026. It is now read-only.
v0.3.3
Fixed
- Dashboard Config tab: added 7 intent-aware vision fields. The v0.3.2
release addedvision_intent_strategy,vision_decomposition_enabled,
vision_decomposition_timeout_ms,vision_crafting_timeout_ms,
vision_adjacent_text_max_chars,vision_recent_messages_count, and
vision_system_prompt_max_charsto the backend (all hot-reloadable), but
the dashboard Config tab was not updated to expose them — contradicting the
README's "Dashboard-first" configuration guidance. All 7 fields now appear in
the Vision section with descriptions, validation, and hot-reload support.
TheVisionRawConfigtype indashboard/src/hooks/use-config.tswas
extended accordingly. docs/proxy-modifications.md: stalesrc/proxy.ts:161reference.
The vision interception entry pointed at the wrong line inproxy.ts
(the vision call is at lines 308-309, not 161). Replaced the brittle line
number with a stable symbol reference toprocessBody/
processBodyCacheOnlyand documented the new intent-aware prompting
pipeline.docs/ARCHITECTURE.md: vision flow diagram missed the triage step.
The pipeline diagram and numbered list were updated to reflect the
context-extraction and triage-routing steps added in v0.3.2.