feat(boulder-state): add session_origins tracking for direct vs appended sessions

- Add session_origins field to BoulderState type
- Track direct vs appended session origins in storage layer
- Add migration logic for existing state files
- Add comprehensive tests for session origin tracking

🤖 Generated with assistance of OhMyOpenCode
This commit is contained in:
YeonGyu-Kim
2026-04-05 17:14:26 +09:00
parent afd554b2d9
commit ec49bd553f
3 changed files with 102 additions and 1 deletions
@@ -118,6 +118,40 @@ describe("boulder-state", () => {
expect(result!.session_ids).toEqual([])
})
test("should backfill missing origin as direct only for a single tracked session", () => {
// given
const boulderFile = join(SISYPHUS_DIR, "boulder.json")
writeFileSync(boulderFile, JSON.stringify({
active_plan: "/path/to/plan.md",
started_at: "2026-01-01T00:00:00Z",
session_ids: ["session-1"],
plan_name: "plan",
}))
// when
const result = readBoulderState(TEST_DIR)
// then
expect(result?.session_origins).toEqual({ "session-1": "direct" })
})
test("should keep missing origins empty when multiple sessions are tracked", () => {
// given
const boulderFile = join(SISYPHUS_DIR, "boulder.json")
writeFileSync(boulderFile, JSON.stringify({
active_plan: "/path/to/plan.md",
started_at: "2026-01-01T00:00:00Z",
session_ids: ["session-1", "session-2"],
plan_name: "plan",
}))
// when
const result = readBoulderState(TEST_DIR)
// then
expect(result?.session_origins).toEqual({})
})
test("should read valid boulder state", () => {
// given - valid boulder.json
const state: BoulderState = {
@@ -239,6 +273,26 @@ describe("boulder-state", () => {
expect(result).not.toBeNull()
expect(result!.session_ids).toContain("ses-new")
})
test("should persist appended session origin when provided", () => {
// given
writeBoulderState(TEST_DIR, {
active_plan: "/path/to/plan.md",
started_at: "2026-01-02T10:00:00Z",
session_ids: ["session-1"],
session_origins: { "session-1": "direct" },
plan_name: "plan",
})
// when
const result = appendSessionId(TEST_DIR, "session-2", "appended")
// then
expect(result?.session_origins).toEqual({
"session-1": "direct",
"session-2": "appended",
})
})
})
describe("clearBoulderState", () => {
@@ -547,6 +601,18 @@ describe("boulder-state", () => {
expect(state.plan_name).toBe("feature")
})
test("should mark the initial session origin as direct", () => {
// given
const planPath = "/path/to/feature.md"
const sessionId = "ses-origin"
// when
const state = createBoulderState(planPath, sessionId)
// then
expect(state.session_origins).toEqual({ [sessionId]: "direct" })
})
test("should allow agent to be undefined", () => {
//#given - plan path and session id without agent
const planPath = "/path/to/legacy.md"