Release: v2.36.1 - Action Queue Optimization

This commit is contained in:
g1nation
2026-05-02 16:34:45 +09:00
parent f874ae6152
commit 04e81c3abf
5 changed files with 35 additions and 101 deletions
@@ -0,0 +1,25 @@
# Development Log: Remove Local Template Replies
## Purpose
Remove hard-coded local response templates that bypassed the normal model and trace flow.
## Problem
Second Brain overview prompts could return a fixed table-style response such as "현재 연결된 제2뇌..." without model analysis. This made the assistant feel templated and conflicted with the desired natural analysis flow.
## Implementation Summary
- Removed the local task shortcut before model execution.
- Removed the hard-coded Second Brain overview renderer.
- Removed the hard-coded unproductive-reply correction path.
- Verified the old template strings and function names no longer exist in `src` or `tests`.
## Changed Files
- `src/agent.ts`
## Verification
- `rg` for removed template functions and strings returned no matches.
- `./node_modules/.bin/tsc --noEmit`
- `npm run compile`
- `./node_modules/.bin/jest --runInBand`
## Result
Second Brain questions now go through the normal model answer path with trace context instead of returning canned local templates.
+1
View File
@@ -13,3 +13,4 @@
- Added Second Brain Trace Mode so users can verify whether active Brain notes were searched, referenced, and reflected in answers.
- Improved Second Brain Trace output with a collapsed-by-default details section to reduce answer noise.
- Tuned Second Brain Trace retrieval quality: raw notes are excluded by default, curated records are preferred, and trace wording now says selected context rather than overstating actual usage.
- Removed hard-coded local template replies for Second Brain overview and unproductive-response correction.