chore: version up to 2.80.35 and package with experience memory

This commit is contained in:
g1nation
2026-05-12 23:23:23 +09:00
parent 065e598cca
commit f6b27a125b
25 changed files with 1088 additions and 103 deletions
+13
View File
@@ -155,6 +155,19 @@ describe('local project path preflight', () => {
expect(agent.isThinkingPartnerRequest(prompt)).toBe(true);
});
it('classifies short greetings as casual conversation so RAG can be skipped', () => {
const context: any = {
globalStorageUri: { fsPath: path.join(root, '.storage') },
workspaceState: stateStore(),
globalState: stateStore()
};
const agent = new AgentExecutor(context) as any;
expect(agent.isCasualConversationPrompt('안녕')).toBe(true);
expect(agent.isCasualConversationPrompt('hello!')).toBe(true);
expect(agent.isCasualConversationPrompt('안녕, 이 프로젝트 구조 분석해줘')).toBe(false);
});
it('adds concrete Astra mode architecture context for Guard and MA design questions', () => {
const context: any = {
globalStorageUri: { fsPath: path.join(root, '.storage') },