-
Notifications
You must be signed in to change notification settings - Fork 1.6k
fix(graph): wire session-end → graph extraction + repair status (#666) #698
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,86 @@ | ||
| import { describe, it, expect } from "vitest"; | ||
| import { readFileSync } from "node:fs"; | ||
|
|
||
| // #666: api::session::end must publish the session-stopped lifecycle so | ||
| // summarize + slot-reflect + graph extraction actually fire. Before this | ||
| // fix the `event::session::stopped` handler in events.ts was a dead | ||
| // subscriber — no code published `agentmemory.session.stopped`, so graph | ||
| // nodes / lessons / crystals never materialized despite the handler | ||
| // existing. Direct triggerVoid keeps the HTTP response fast (kv.update | ||
| // runs synchronously, downstream pipeline fan-outs without blocking). | ||
| describe("api::session::end → event::session::stopped (#666)", () => { | ||
| const api = readFileSync("src/triggers/api.ts", "utf-8"); | ||
|
|
||
| it("api::session::end calls sdk.triggerVoid('event::session::stopped') after kv.update", () => { | ||
| expect(api).toMatch( | ||
| /api::session::end[\s\S]*?kv\.update\(KV\.sessions[\s\S]*?triggerVoid\("event::session::stopped"/, | ||
| ); | ||
| }); | ||
|
|
||
| it("triggerVoid payload includes sessionId", () => { | ||
| expect(api).toMatch( | ||
| /triggerVoid\("event::session::stopped",\s*\{\s*sessionId\s*\}/, | ||
| ); | ||
| }); | ||
| }); | ||
|
|
||
| // #666: viewer's "Build Graph" button used to POST /agentmemory/graph/build | ||
| // which returned 404 because the endpoint was never registered. Backfill | ||
| // the knowledge graph from existing compressed observations across every | ||
| // session in batches. | ||
| describe("api::graph-build endpoint (#666)", () => { | ||
| const api = readFileSync("src/triggers/api.ts", "utf-8"); | ||
|
|
||
| it("registers api::graph-build function", () => { | ||
| expect(api).toMatch(/registerFunction\("api::graph-build"/); | ||
| }); | ||
|
|
||
| it("registers HTTP trigger at /agentmemory/graph/build", () => { | ||
| expect(api).toMatch( | ||
| /api_path:\s*"\/agentmemory\/graph\/build",\s*http_method:\s*"POST"/, | ||
| ); | ||
| }); | ||
|
|
||
| it("iterates sessions and calls mem::graph-extract", () => { | ||
| expect(api).toMatch(/kv\.list<Session>\(KV\.sessions\)/); | ||
| expect(api).toMatch(/kv\.list<CompressedObservation>\(KV\.observations\(sid\)\)/); | ||
| expect(api).toMatch( | ||
| /sdk\.trigger\(\{\s*function_id:\s*"mem::graph-extract"/, | ||
| ); | ||
| }); | ||
|
|
||
| it("filters observations that have a title (compressed only)", () => { | ||
| expect(api).toMatch(/typeof o\.title === "string" && o\.title\.length > 0/); | ||
| }); | ||
|
|
||
| it("respects batchSize override with a 100-item upper bound", () => { | ||
| expect(api).toMatch(/Math\.min\(100,\s*Number\(.*batchSize/); | ||
| }); | ||
|
|
||
| it("response shape matches what the viewer expects (success + nodes)", () => { | ||
| expect(api).toMatch(/success:\s*true,\s*sessions:[\s\S]*?nodes:\s*totalNodes/); | ||
| }); | ||
| }); | ||
|
|
||
| // #666: `agentmemory status` showed Memories/Observations as 0 because it | ||
| // fetched /agentmemory/export which times out on iii-engine's file-based | ||
| // KV under concurrent kv.list() pressure. Switch to /memories for the | ||
| // memory count and derive observation count from sessions[].observationCount. | ||
| describe("agentmemory status no longer depends on /export (#666)", () => { | ||
| const cli = readFileSync("src/cli.ts", "utf-8"); | ||
|
|
||
| it("status uses count-only memories endpoint instead of export", () => { | ||
| expect(cli).toMatch(/apiFetch<any>\(base,\s*"memories\?count=true"\)/); | ||
| expect(cli).not.toMatch(/apiFetch<any>\(base,\s*"export"\)/); | ||
| }); | ||
|
|
||
| it("status derives obsCount from sessions[].observationCount", () => { | ||
| expect(cli).toMatch( | ||
| /sessionList\.reduce\([\s\S]*?observationCount/, | ||
| ); | ||
| }); | ||
|
|
||
| it("status reads memCount from memoriesRes.latestCount (count endpoint)", () => { | ||
| expect(cli).toMatch(/memoriesRes\?\.latestCount\s*\?\?\s*memoriesRes\?\.total/); | ||
| }); | ||
| }); | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.