cognitive-core 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/atlas.d.ts +10 -0
- package/dist/atlas.d.ts.map +1 -1
- package/dist/atlas.js +65 -0
- package/dist/atlas.js.map +1 -1
- package/dist/learning/pipeline.d.ts +4 -31
- package/dist/learning/pipeline.d.ts.map +1 -1
- package/dist/learning/pipeline.js +12 -64
- package/dist/learning/pipeline.js.map +1 -1
- package/dist/memory/curated-loader.d.ts +21 -4
- package/dist/memory/curated-loader.d.ts.map +1 -1
- package/dist/memory/curated-loader.js +53 -16
- package/dist/memory/curated-loader.js.map +1 -1
- package/dist/memory/index.d.ts +2 -1
- package/dist/memory/index.d.ts.map +1 -1
- package/dist/memory/index.js +3 -1
- package/dist/memory/index.js.map +1 -1
- package/dist/memory/playbook.d.ts +6 -0
- package/dist/memory/playbook.d.ts.map +1 -1
- package/dist/memory/playbook.js +15 -0
- package/dist/memory/playbook.js.map +1 -1
- package/dist/memory/source-resolver.d.ts +120 -0
- package/dist/memory/source-resolver.d.ts.map +1 -0
- package/dist/memory/source-resolver.js +300 -0
- package/dist/memory/source-resolver.js.map +1 -0
- package/dist/types/config.d.ts +141 -0
- package/dist/types/config.d.ts.map +1 -1
- package/dist/types/config.js +40 -0
- package/dist/types/config.js.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +1 -1
- package/dist/types/index.js.map +1 -1
- package/dist/workspace/types.d.ts +12 -54
- package/dist/workspace/types.d.ts.map +1 -1
- package/dist/workspace/types.js.map +1 -1
- package/package.json +2 -2
- package/playbooks/compound-engineering/adversarial-review.json +51 -0
- package/playbooks/compound-engineering/agent-native-architecture.json +59 -0
- package/playbooks/compound-engineering/agent-native-review.json +54 -0
- package/playbooks/compound-engineering/api-contract-review.json +52 -0
- package/playbooks/compound-engineering/brainstorm-requirements.json +55 -0
- package/playbooks/compound-engineering/bug-reproduction.json +62 -0
- package/playbooks/compound-engineering/confidence-calibration.json +49 -0
- package/playbooks/compound-engineering/correctness-review.json +49 -0
- package/playbooks/compound-engineering/data-migration-safety.json +59 -0
- package/playbooks/compound-engineering/deployment-verification.json +63 -0
- package/playbooks/compound-engineering/error-recovery-patterns.json +53 -0
- package/playbooks/compound-engineering/implementation-planning.json +64 -0
- package/playbooks/compound-engineering/issue-pattern-analysis.json +53 -0
- package/playbooks/compound-engineering/knowledge-compounding.json +63 -0
- package/playbooks/compound-engineering/learnings-research.json +54 -0
- package/playbooks/compound-engineering/maintainability-review.json +49 -0
- package/playbooks/compound-engineering/performance-review.json +54 -0
- package/playbooks/compound-engineering/plan-adversarial-review.json +56 -0
- package/playbooks/compound-engineering/plan-feasibility-review.json +56 -0
- package/playbooks/compound-engineering/project-standards-review.json +52 -0
- package/playbooks/compound-engineering/reliability-review.json +53 -0
- package/playbooks/compound-engineering/review-orchestration.json +64 -0
- package/playbooks/compound-engineering/security-review.json +54 -0
- package/playbooks/compound-engineering/systematic-execution.json +64 -0
- package/playbooks/compound-engineering/testing-review.json +50 -0
- package/src/atlas.ts +96 -0
- package/src/memory/curated-loader.ts +69 -16
- package/src/memory/index.ts +16 -0
- package/src/memory/playbook.ts +19 -0
- package/src/memory/source-resolver.ts +422 -0
- package/src/types/config.ts +46 -0
- package/src/types/index.ts +4 -0
- package/src/workspace/types.ts +22 -78
- package/tests/integration/curated-sources-e2e.test.ts +502 -0
- package/tests/memory/compound-engineering-seed.test.ts +338 -0
- package/tests/memory/curated-loader-extended.test.ts +225 -0
- package/tests/memory/playbook-quality-validation.test.ts +430 -0
- package/tests/memory/source-resolver.test.ts +700 -0
- package/.claude/settings.local.json +0 -11
- package/dist/learning/llm-extractor.d.ts +0 -88
- package/dist/learning/llm-extractor.d.ts.map +0 -1
- package/dist/learning/llm-extractor.js +0 -372
- package/dist/learning/llm-extractor.js.map +0 -1
- package/dist/learning/loop-coordinator.d.ts +0 -61
- package/dist/learning/loop-coordinator.d.ts.map +0 -1
- package/dist/learning/loop-coordinator.js +0 -96
- package/dist/learning/loop-coordinator.js.map +0 -1
- package/references/agent-workspace/CLAUDE.md +0 -74
- package/references/agent-workspace/README.md +0 -587
- package/references/agent-workspace/media/banner.png +0 -0
- package/references/agent-workspace/package-lock.json +0 -2061
- package/references/agent-workspace/package.json +0 -54
- package/references/agent-workspace/src/handle.ts +0 -122
- package/references/agent-workspace/src/index.ts +0 -32
- package/references/agent-workspace/src/manager.ts +0 -102
- package/references/agent-workspace/src/readers/json.ts +0 -71
- package/references/agent-workspace/src/readers/markdown.ts +0 -37
- package/references/agent-workspace/src/readers/raw.ts +0 -27
- package/references/agent-workspace/src/types.ts +0 -68
- package/references/agent-workspace/src/validation.ts +0 -93
- package/references/agent-workspace/src/writers/json.ts +0 -17
- package/references/agent-workspace/src/writers/markdown.ts +0 -27
- package/references/agent-workspace/src/writers/raw.ts +0 -22
- package/references/agent-workspace/tests/errors.test.ts +0 -652
- package/references/agent-workspace/tests/handle.test.ts +0 -144
- package/references/agent-workspace/tests/manager.test.ts +0 -124
- package/references/agent-workspace/tests/readers.test.ts +0 -205
- package/references/agent-workspace/tests/validation.test.ts +0 -196
- package/references/agent-workspace/tests/writers.test.ts +0 -108
- package/references/agent-workspace/tsconfig.json +0 -20
- package/references/agent-workspace/tsup.config.ts +0 -9
- package/references/minimem/.claude/settings.json +0 -7
- package/references/minimem/.sudocode/issues.jsonl +0 -18
- package/references/minimem/.sudocode/specs.jsonl +0 -1
- package/references/minimem/CLAUDE.md +0 -310
- package/references/minimem/README.md +0 -556
- package/references/minimem/claude-plugin/.claude-plugin/plugin.json +0 -10
- package/references/minimem/claude-plugin/.mcp.json +0 -7
- package/references/minimem/claude-plugin/README.md +0 -158
- package/references/minimem/claude-plugin/commands/recall.md +0 -47
- package/references/minimem/claude-plugin/commands/remember.md +0 -41
- package/references/minimem/claude-plugin/hooks/__tests__/hooks.test.ts +0 -272
- package/references/minimem/claude-plugin/hooks/hooks.json +0 -27
- package/references/minimem/claude-plugin/hooks/session-end.sh +0 -86
- package/references/minimem/claude-plugin/hooks/session-start.sh +0 -85
- package/references/minimem/claude-plugin/skills/memory/SKILL.md +0 -108
- package/references/minimem/package-lock.json +0 -5373
- package/references/minimem/package.json +0 -60
- package/references/minimem/scripts/postbuild.js +0 -35
- package/references/minimem/src/__tests__/edge-cases.test.ts +0 -371
- package/references/minimem/src/__tests__/errors.test.ts +0 -265
- package/references/minimem/src/__tests__/helpers.ts +0 -199
- package/references/minimem/src/__tests__/internal.test.ts +0 -407
- package/references/minimem/src/__tests__/knowledge.test.ts +0 -287
- package/references/minimem/src/__tests__/minimem.integration.test.ts +0 -1127
- package/references/minimem/src/__tests__/session.test.ts +0 -190
- package/references/minimem/src/cli/__tests__/commands.test.ts +0 -759
- package/references/minimem/src/cli/commands/__tests__/conflicts.test.ts +0 -141
- package/references/minimem/src/cli/commands/append.ts +0 -76
- package/references/minimem/src/cli/commands/config.ts +0 -262
- package/references/minimem/src/cli/commands/conflicts.ts +0 -413
- package/references/minimem/src/cli/commands/daemon.ts +0 -169
- package/references/minimem/src/cli/commands/index.ts +0 -12
- package/references/minimem/src/cli/commands/init.ts +0 -88
- package/references/minimem/src/cli/commands/mcp.ts +0 -177
- package/references/minimem/src/cli/commands/push-pull.ts +0 -213
- package/references/minimem/src/cli/commands/search.ts +0 -158
- package/references/minimem/src/cli/commands/status.ts +0 -84
- package/references/minimem/src/cli/commands/sync-init.ts +0 -290
- package/references/minimem/src/cli/commands/sync.ts +0 -70
- package/references/minimem/src/cli/commands/upsert.ts +0 -197
- package/references/minimem/src/cli/config.ts +0 -584
- package/references/minimem/src/cli/index.ts +0 -264
- package/references/minimem/src/cli/shared.ts +0 -161
- package/references/minimem/src/cli/sync/__tests__/central.test.ts +0 -152
- package/references/minimem/src/cli/sync/__tests__/conflicts.test.ts +0 -209
- package/references/minimem/src/cli/sync/__tests__/daemon.test.ts +0 -118
- package/references/minimem/src/cli/sync/__tests__/detection.test.ts +0 -207
- package/references/minimem/src/cli/sync/__tests__/integration.test.ts +0 -476
- package/references/minimem/src/cli/sync/__tests__/registry.test.ts +0 -363
- package/references/minimem/src/cli/sync/__tests__/state.test.ts +0 -255
- package/references/minimem/src/cli/sync/__tests__/validation.test.ts +0 -193
- package/references/minimem/src/cli/sync/__tests__/watcher.test.ts +0 -178
- package/references/minimem/src/cli/sync/central.ts +0 -292
- package/references/minimem/src/cli/sync/conflicts.ts +0 -204
- package/references/minimem/src/cli/sync/daemon.ts +0 -407
- package/references/minimem/src/cli/sync/detection.ts +0 -138
- package/references/minimem/src/cli/sync/index.ts +0 -107
- package/references/minimem/src/cli/sync/operations.ts +0 -373
- package/references/minimem/src/cli/sync/registry.ts +0 -279
- package/references/minimem/src/cli/sync/state.ts +0 -355
- package/references/minimem/src/cli/sync/validation.ts +0 -206
- package/references/minimem/src/cli/sync/watcher.ts +0 -234
- package/references/minimem/src/cli/version.ts +0 -34
- package/references/minimem/src/core/index.ts +0 -9
- package/references/minimem/src/core/indexer.ts +0 -628
- package/references/minimem/src/core/searcher.ts +0 -221
- package/references/minimem/src/db/schema.ts +0 -183
- package/references/minimem/src/db/sqlite-vec.ts +0 -24
- package/references/minimem/src/embeddings/__tests__/embeddings.test.ts +0 -431
- package/references/minimem/src/embeddings/batch-gemini.ts +0 -392
- package/references/minimem/src/embeddings/batch-openai.ts +0 -409
- package/references/minimem/src/embeddings/embeddings.ts +0 -434
- package/references/minimem/src/index.ts +0 -109
- package/references/minimem/src/internal.ts +0 -299
- package/references/minimem/src/minimem.ts +0 -1276
- package/references/minimem/src/search/__tests__/hybrid.test.ts +0 -247
- package/references/minimem/src/search/graph.ts +0 -234
- package/references/minimem/src/search/hybrid.ts +0 -151
- package/references/minimem/src/search/search.ts +0 -256
- package/references/minimem/src/server/__tests__/mcp.test.ts +0 -341
- package/references/minimem/src/server/__tests__/tools.test.ts +0 -364
- package/references/minimem/src/server/mcp.ts +0 -326
- package/references/minimem/src/server/tools.ts +0 -720
- package/references/minimem/src/session.ts +0 -460
- package/references/minimem/tsconfig.json +0 -19
- package/references/minimem/tsup.config.ts +0 -26
- package/references/minimem/vitest.config.ts +0 -24
- package/references/sessionlog/.husky/pre-commit +0 -1
- package/references/sessionlog/.lintstagedrc.json +0 -4
- package/references/sessionlog/.prettierignore +0 -4
- package/references/sessionlog/.prettierrc.json +0 -11
- package/references/sessionlog/LICENSE +0 -21
- package/references/sessionlog/README.md +0 -453
- package/references/sessionlog/eslint.config.js +0 -58
- package/references/sessionlog/package-lock.json +0 -3672
- package/references/sessionlog/package.json +0 -65
- package/references/sessionlog/src/__tests__/agent-hooks.test.ts +0 -570
- package/references/sessionlog/src/__tests__/agent-registry.test.ts +0 -127
- package/references/sessionlog/src/__tests__/claude-code-hooks.test.ts +0 -225
- package/references/sessionlog/src/__tests__/claude-generator.test.ts +0 -46
- package/references/sessionlog/src/__tests__/commit-msg.test.ts +0 -86
- package/references/sessionlog/src/__tests__/cursor-agent.test.ts +0 -224
- package/references/sessionlog/src/__tests__/e2e-live.test.ts +0 -890
- package/references/sessionlog/src/__tests__/event-log.test.ts +0 -183
- package/references/sessionlog/src/__tests__/flush-sentinel.test.ts +0 -105
- package/references/sessionlog/src/__tests__/gemini-agent.test.ts +0 -375
- package/references/sessionlog/src/__tests__/git-hooks.test.ts +0 -78
- package/references/sessionlog/src/__tests__/hook-managers.test.ts +0 -121
- package/references/sessionlog/src/__tests__/lifecycle-tasks.test.ts +0 -759
- package/references/sessionlog/src/__tests__/opencode-agent.test.ts +0 -338
- package/references/sessionlog/src/__tests__/redaction.test.ts +0 -136
- package/references/sessionlog/src/__tests__/session-repo.test.ts +0 -353
- package/references/sessionlog/src/__tests__/session-store.test.ts +0 -166
- package/references/sessionlog/src/__tests__/setup-ccweb.test.ts +0 -466
- package/references/sessionlog/src/__tests__/skill-live.test.ts +0 -461
- package/references/sessionlog/src/__tests__/summarize.test.ts +0 -348
- package/references/sessionlog/src/__tests__/task-plan-e2e.test.ts +0 -610
- package/references/sessionlog/src/__tests__/task-plan-live.test.ts +0 -632
- package/references/sessionlog/src/__tests__/transcript-timestamp.test.ts +0 -121
- package/references/sessionlog/src/__tests__/types.test.ts +0 -166
- package/references/sessionlog/src/__tests__/utils.test.ts +0 -333
- package/references/sessionlog/src/__tests__/validation.test.ts +0 -103
- package/references/sessionlog/src/__tests__/worktree.test.ts +0 -57
- package/references/sessionlog/src/agent/agents/claude-code.ts +0 -1089
- package/references/sessionlog/src/agent/agents/cursor.ts +0 -361
- package/references/sessionlog/src/agent/agents/gemini-cli.ts +0 -632
- package/references/sessionlog/src/agent/agents/opencode.ts +0 -540
- package/references/sessionlog/src/agent/registry.ts +0 -143
- package/references/sessionlog/src/agent/session-types.ts +0 -113
- package/references/sessionlog/src/agent/types.ts +0 -220
- package/references/sessionlog/src/cli.ts +0 -597
- package/references/sessionlog/src/commands/clean.ts +0 -133
- package/references/sessionlog/src/commands/disable.ts +0 -84
- package/references/sessionlog/src/commands/doctor.ts +0 -145
- package/references/sessionlog/src/commands/enable.ts +0 -202
- package/references/sessionlog/src/commands/explain.ts +0 -261
- package/references/sessionlog/src/commands/reset.ts +0 -105
- package/references/sessionlog/src/commands/resume.ts +0 -180
- package/references/sessionlog/src/commands/rewind.ts +0 -195
- package/references/sessionlog/src/commands/setup-ccweb.ts +0 -275
- package/references/sessionlog/src/commands/status.ts +0 -172
- package/references/sessionlog/src/config.ts +0 -165
- package/references/sessionlog/src/events/event-log.ts +0 -126
- package/references/sessionlog/src/git-operations.ts +0 -558
- package/references/sessionlog/src/hooks/git-hooks.ts +0 -165
- package/references/sessionlog/src/hooks/lifecycle.ts +0 -391
- package/references/sessionlog/src/index.ts +0 -650
- package/references/sessionlog/src/security/redaction.ts +0 -283
- package/references/sessionlog/src/session/state-machine.ts +0 -452
- package/references/sessionlog/src/store/checkpoint-store.ts +0 -509
- package/references/sessionlog/src/store/native-store.ts +0 -173
- package/references/sessionlog/src/store/provider-types.ts +0 -99
- package/references/sessionlog/src/store/session-store.ts +0 -266
- package/references/sessionlog/src/strategy/attribution.ts +0 -296
- package/references/sessionlog/src/strategy/common.ts +0 -207
- package/references/sessionlog/src/strategy/content-overlap.ts +0 -228
- package/references/sessionlog/src/strategy/manual-commit.ts +0 -988
- package/references/sessionlog/src/strategy/types.ts +0 -279
- package/references/sessionlog/src/summarize/claude-generator.ts +0 -115
- package/references/sessionlog/src/summarize/summarize.ts +0 -432
- package/references/sessionlog/src/types.ts +0 -508
- package/references/sessionlog/src/utils/chunk-files.ts +0 -49
- package/references/sessionlog/src/utils/commit-message.ts +0 -65
- package/references/sessionlog/src/utils/detect-agent.ts +0 -36
- package/references/sessionlog/src/utils/hook-managers.ts +0 -125
- package/references/sessionlog/src/utils/ide-tags.ts +0 -32
- package/references/sessionlog/src/utils/paths.ts +0 -79
- package/references/sessionlog/src/utils/preview-rewind.ts +0 -80
- package/references/sessionlog/src/utils/rewind-conflict.ts +0 -121
- package/references/sessionlog/src/utils/shadow-branch.ts +0 -109
- package/references/sessionlog/src/utils/string-utils.ts +0 -46
- package/references/sessionlog/src/utils/todo-extract.ts +0 -188
- package/references/sessionlog/src/utils/trailers.ts +0 -187
- package/references/sessionlog/src/utils/transcript-parse.ts +0 -177
- package/references/sessionlog/src/utils/transcript-timestamp.ts +0 -59
- package/references/sessionlog/src/utils/tree-ops.ts +0 -219
- package/references/sessionlog/src/utils/tty.ts +0 -72
- package/references/sessionlog/src/utils/validation.ts +0 -65
- package/references/sessionlog/src/utils/worktree.ts +0 -58
- package/references/sessionlog/src/wire-types.ts +0 -59
- package/references/sessionlog/templates/setup-env.sh +0 -153
- package/references/sessionlog/tsconfig.json +0 -18
- package/references/sessionlog/vitest.config.ts +0 -12
- package/references/skill-tree/.claude/settings.json +0 -6
- package/references/skill-tree/.sudocode/issues.jsonl +0 -19
- package/references/skill-tree/.sudocode/specs.jsonl +0 -3
- package/references/skill-tree/CLAUDE.md +0 -126
- package/references/skill-tree/README.md +0 -372
- package/references/skill-tree/docs/GAPS_v1.md +0 -221
- package/references/skill-tree/docs/INTEGRATION_PLAN.md +0 -467
- package/references/skill-tree/docs/TODOS.md +0 -91
- package/references/skill-tree/docs/anthropic_skill_guide.md +0 -1364
- package/references/skill-tree/docs/design/federated-skill-trees.md +0 -524
- package/references/skill-tree/docs/design/multi-agent-sync.md +0 -759
- package/references/skill-tree/docs/scraper/BRAINSTORM.md +0 -583
- package/references/skill-tree/docs/scraper/POC_PLAN.md +0 -420
- package/references/skill-tree/docs/scraper/README.md +0 -170
- package/references/skill-tree/examples/basic-usage.ts +0 -164
- package/references/skill-tree/package-lock.json +0 -1852
- package/references/skill-tree/package.json +0 -66
- package/references/skill-tree/scraper/README.md +0 -123
- package/references/skill-tree/scraper/docs/DESIGN.md +0 -683
- package/references/skill-tree/scraper/docs/PLAN.md +0 -336
- package/references/skill-tree/scraper/drizzle.config.ts +0 -10
- package/references/skill-tree/scraper/package-lock.json +0 -6329
- package/references/skill-tree/scraper/package.json +0 -68
- package/references/skill-tree/scraper/test/fixtures/invalid-skill/missing-description.md +0 -7
- package/references/skill-tree/scraper/test/fixtures/invalid-skill/missing-name.md +0 -7
- package/references/skill-tree/scraper/test/fixtures/minimal-skill/SKILL.md +0 -27
- package/references/skill-tree/scraper/test/fixtures/skill-json/SKILL.json +0 -21
- package/references/skill-tree/scraper/test/fixtures/skill-with-meta/SKILL.md +0 -54
- package/references/skill-tree/scraper/test/fixtures/skill-with-meta/_meta.json +0 -24
- package/references/skill-tree/scraper/test/fixtures/valid-skill/SKILL.md +0 -93
- package/references/skill-tree/scraper/test/fixtures/valid-skill/_meta.json +0 -22
- package/references/skill-tree/scraper/tsup.config.ts +0 -14
- package/references/skill-tree/scraper/vitest.config.ts +0 -17
- package/references/skill-tree/scripts/convert-to-vitest.ts +0 -166
- package/references/skill-tree/skills/skill-writer/SKILL.md +0 -339
- package/references/skill-tree/skills/skill-writer/references/examples.md +0 -326
- package/references/skill-tree/skills/skill-writer/references/patterns.md +0 -210
- package/references/skill-tree/skills/skill-writer/references/quality-checklist.md +0 -123
- package/references/skill-tree/test/run-all.ts +0 -106
- package/references/skill-tree/test/utils.ts +0 -128
- package/references/skill-tree/vitest.config.ts +0 -16
|
@@ -1,509 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Checkpoint Store
|
|
3
|
-
*
|
|
4
|
-
* Manages checkpoint data stored on git branches.
|
|
5
|
-
* - Temporary checkpoints live on shadow branches (sessionlog/<hash>)
|
|
6
|
-
* - Committed checkpoints live on sessionlog/checkpoints/v1 branch
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
import * as crypto from 'node:crypto';
|
|
10
|
-
import {
|
|
11
|
-
type CheckpointID,
|
|
12
|
-
type CheckpointSummary,
|
|
13
|
-
type CommittedMetadata,
|
|
14
|
-
type WriteTemporaryOptions,
|
|
15
|
-
type WriteTemporaryResult,
|
|
16
|
-
type WriteCommittedOptions,
|
|
17
|
-
CHECKPOINT_ID_LENGTH,
|
|
18
|
-
CHECKPOINTS_BRANCH,
|
|
19
|
-
SHADOW_BRANCH_PREFIX,
|
|
20
|
-
SHADOW_BRANCH_HASH_LENGTH,
|
|
21
|
-
checkpointIDPath,
|
|
22
|
-
} from '../types.js';
|
|
23
|
-
import {
|
|
24
|
-
git,
|
|
25
|
-
getHead,
|
|
26
|
-
getGitAuthor,
|
|
27
|
-
refExists,
|
|
28
|
-
getTreeHash,
|
|
29
|
-
lsTree,
|
|
30
|
-
listBranches,
|
|
31
|
-
hashObject,
|
|
32
|
-
mktree,
|
|
33
|
-
commitTree,
|
|
34
|
-
updateRef,
|
|
35
|
-
deleteBranch,
|
|
36
|
-
showFile,
|
|
37
|
-
log,
|
|
38
|
-
type GitAuthor,
|
|
39
|
-
} from '../git-operations.js';
|
|
40
|
-
|
|
41
|
-
// ============================================================================
|
|
42
|
-
// Checkpoint Store Interface
|
|
43
|
-
// ============================================================================
|
|
44
|
-
|
|
45
|
-
export interface CheckpointStore {
|
|
46
|
-
/** Generate a new checkpoint ID */
|
|
47
|
-
generateID(): Promise<CheckpointID>;
|
|
48
|
-
|
|
49
|
-
/** Write a temporary checkpoint (shadow branch) */
|
|
50
|
-
writeTemporary(opts: WriteTemporaryOptions): Promise<WriteTemporaryResult>;
|
|
51
|
-
|
|
52
|
-
/** Read the latest temporary checkpoint for a base commit */
|
|
53
|
-
readTemporary(
|
|
54
|
-
baseCommit: string,
|
|
55
|
-
worktreeID?: string,
|
|
56
|
-
): Promise<{ commitHash: string; treeHash: string; sessionID: string } | null>;
|
|
57
|
-
|
|
58
|
-
/** List all temporary (shadow) branches */
|
|
59
|
-
listTemporary(): Promise<
|
|
60
|
-
Array<{
|
|
61
|
-
branchName: string;
|
|
62
|
-
baseCommit: string;
|
|
63
|
-
latestCommit: string;
|
|
64
|
-
sessionID: string;
|
|
65
|
-
timestamp: string;
|
|
66
|
-
}>
|
|
67
|
-
>;
|
|
68
|
-
|
|
69
|
-
/** Write a committed checkpoint to the metadata branch */
|
|
70
|
-
writeCommitted(opts: WriteCommittedOptions): Promise<void>;
|
|
71
|
-
|
|
72
|
-
/** Read a committed checkpoint summary */
|
|
73
|
-
readCommitted(checkpointID: CheckpointID): Promise<CheckpointSummary | null>;
|
|
74
|
-
|
|
75
|
-
/** Read session content from a committed checkpoint */
|
|
76
|
-
readSessionContent(
|
|
77
|
-
checkpointID: CheckpointID,
|
|
78
|
-
sessionIndex: number,
|
|
79
|
-
): Promise<{
|
|
80
|
-
metadata: CommittedMetadata;
|
|
81
|
-
transcript: string;
|
|
82
|
-
prompts: string;
|
|
83
|
-
context: string;
|
|
84
|
-
} | null>;
|
|
85
|
-
|
|
86
|
-
/** List committed checkpoints (most recent first) */
|
|
87
|
-
listCommitted(limit?: number): Promise<CheckpointSummary[]>;
|
|
88
|
-
|
|
89
|
-
/** Delete a shadow branch */
|
|
90
|
-
deleteShadowBranch(branchName: string): Promise<void>;
|
|
91
|
-
|
|
92
|
-
/** Get the shadow branch name for a base commit */
|
|
93
|
-
getShadowBranchName(baseCommit: string, worktreeID?: string): string;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
// ============================================================================
|
|
97
|
-
// Git-Based Checkpoint Store
|
|
98
|
-
// ============================================================================
|
|
99
|
-
|
|
100
|
-
/**
|
|
101
|
-
* Create a checkpoint store.
|
|
102
|
-
*
|
|
103
|
-
* @param cwd - The project working directory (used for shadow branches / temporary checkpoints)
|
|
104
|
-
* @param sessionRepoCwd - Optional separate repo directory for committed checkpoints.
|
|
105
|
-
* When provided, the `sessionlog/checkpoints/v1` branch and its data are stored
|
|
106
|
-
* in this repo instead of the project repo. Shadow branches remain in the
|
|
107
|
-
* project repo since they reference the project's git objects.
|
|
108
|
-
* @param checkpointsBranch - Optional override for the checkpoints branch name.
|
|
109
|
-
* Defaults to `sessionlog/checkpoints/v1`. When multiple projects share a session
|
|
110
|
-
* repo, each project uses a unique branch like `sessionlog/checkpoints/v1/<projectID>`.
|
|
111
|
-
*/
|
|
112
|
-
export function createCheckpointStore(
|
|
113
|
-
cwd?: string,
|
|
114
|
-
sessionRepoCwd?: string,
|
|
115
|
-
checkpointsBranch?: string,
|
|
116
|
-
): CheckpointStore {
|
|
117
|
-
/** Directory for committed checkpoint operations (separate repo or project repo) */
|
|
118
|
-
const committedCwd = sessionRepoCwd ?? cwd;
|
|
119
|
-
/** Branch name for committed checkpoints */
|
|
120
|
-
const cpBranch = checkpointsBranch ?? CHECKPOINTS_BRANCH;
|
|
121
|
-
|
|
122
|
-
function getShadowBranchName(baseCommit: string, worktreeID?: string): string {
|
|
123
|
-
const shortHash = baseCommit.slice(0, SHADOW_BRANCH_HASH_LENGTH);
|
|
124
|
-
if (worktreeID) {
|
|
125
|
-
const worktreeHash = crypto.createHash('sha256').update(worktreeID).digest('hex').slice(0, 6);
|
|
126
|
-
return `${SHADOW_BRANCH_PREFIX}${shortHash}-${worktreeHash}`;
|
|
127
|
-
}
|
|
128
|
-
return `${SHADOW_BRANCH_PREFIX}${shortHash}`;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
return {
|
|
132
|
-
async generateID(): Promise<CheckpointID> {
|
|
133
|
-
const bytes = crypto.randomBytes(CHECKPOINT_ID_LENGTH / 2);
|
|
134
|
-
return bytes.toString('hex');
|
|
135
|
-
},
|
|
136
|
-
|
|
137
|
-
async writeTemporary(opts: WriteTemporaryOptions): Promise<WriteTemporaryResult> {
|
|
138
|
-
const branchName = getShadowBranchName(opts.baseCommit, opts.worktreeID);
|
|
139
|
-
const branchExists = await refExists(`refs/heads/${branchName}`, cwd);
|
|
140
|
-
|
|
141
|
-
// Get the current tree from HEAD
|
|
142
|
-
const headHash = await getHead(cwd);
|
|
143
|
-
let parentHash: string | null = null;
|
|
144
|
-
let baseTreeHash: string;
|
|
145
|
-
|
|
146
|
-
if (branchExists) {
|
|
147
|
-
// Branch exists: use its tip as parent
|
|
148
|
-
parentHash = await git(['rev-parse', branchName], { cwd });
|
|
149
|
-
baseTreeHash = await getTreeHash(branchName, cwd);
|
|
150
|
-
|
|
151
|
-
// Dedup: if tree hash matches, skip
|
|
152
|
-
const headTreeHash = await getTreeHash('HEAD', cwd);
|
|
153
|
-
if (baseTreeHash === headTreeHash) {
|
|
154
|
-
return { commitHash: parentHash, skipped: true };
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
// Create new tree from working directory state
|
|
159
|
-
const headTreeHash = await getTreeHash('HEAD', cwd);
|
|
160
|
-
|
|
161
|
-
// Build metadata tree entries
|
|
162
|
-
const metadataEntries = await buildMetadataTree(opts, cwd);
|
|
163
|
-
|
|
164
|
-
// Merge metadata into the head tree
|
|
165
|
-
const newTree = await mergeMetadataIntoTree(
|
|
166
|
-
headTreeHash,
|
|
167
|
-
metadataEntries,
|
|
168
|
-
opts.metadataDir,
|
|
169
|
-
cwd,
|
|
170
|
-
);
|
|
171
|
-
|
|
172
|
-
// Create commit
|
|
173
|
-
const author: GitAuthor = { name: opts.authorName, email: opts.authorEmail };
|
|
174
|
-
const commitHash = await commitTree(
|
|
175
|
-
newTree,
|
|
176
|
-
parentHash ?? headHash,
|
|
177
|
-
opts.commitMessage,
|
|
178
|
-
author,
|
|
179
|
-
cwd,
|
|
180
|
-
);
|
|
181
|
-
|
|
182
|
-
// Update branch ref
|
|
183
|
-
if (branchExists) {
|
|
184
|
-
await updateRef(branchName, commitHash, cwd);
|
|
185
|
-
} else {
|
|
186
|
-
await git(['branch', branchName, commitHash], { cwd });
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
return { commitHash, skipped: false };
|
|
190
|
-
},
|
|
191
|
-
|
|
192
|
-
async readTemporary(
|
|
193
|
-
baseCommit: string,
|
|
194
|
-
worktreeID?: string,
|
|
195
|
-
): Promise<{ commitHash: string; treeHash: string; sessionID: string } | null> {
|
|
196
|
-
const branchName = getShadowBranchName(baseCommit, worktreeID);
|
|
197
|
-
const exists = await refExists(`refs/heads/${branchName}`, cwd);
|
|
198
|
-
if (!exists) return null;
|
|
199
|
-
|
|
200
|
-
const commitHash = await git(['rev-parse', branchName], { cwd });
|
|
201
|
-
const treeHash = await getTreeHash(branchName, cwd);
|
|
202
|
-
|
|
203
|
-
// Try to extract sessionID from commit message
|
|
204
|
-
const message = await git(['log', '-1', '--format=%B', branchName], { cwd });
|
|
205
|
-
const sessionMatch = message.match(/Session:\s*(\S+)/);
|
|
206
|
-
const sessionID = sessionMatch?.[1] ?? '';
|
|
207
|
-
|
|
208
|
-
return { commitHash, treeHash, sessionID };
|
|
209
|
-
},
|
|
210
|
-
|
|
211
|
-
async listTemporary(): Promise<
|
|
212
|
-
Array<{
|
|
213
|
-
branchName: string;
|
|
214
|
-
baseCommit: string;
|
|
215
|
-
latestCommit: string;
|
|
216
|
-
sessionID: string;
|
|
217
|
-
timestamp: string;
|
|
218
|
-
}>
|
|
219
|
-
> {
|
|
220
|
-
const branches = await listBranches(`${SHADOW_BRANCH_PREFIX}*`, cwd);
|
|
221
|
-
const result = [];
|
|
222
|
-
|
|
223
|
-
for (const branch of branches) {
|
|
224
|
-
// Skip the checkpoints branch
|
|
225
|
-
if (branch === CHECKPOINTS_BRANCH) continue;
|
|
226
|
-
|
|
227
|
-
try {
|
|
228
|
-
const latestCommit = await git(['rev-parse', branch], { cwd });
|
|
229
|
-
const timestamp = await git(['log', '-1', '--format=%aI', branch], { cwd });
|
|
230
|
-
const message = await git(['log', '-1', '--format=%B', branch], { cwd });
|
|
231
|
-
|
|
232
|
-
// Extract base commit from branch name
|
|
233
|
-
const hashPart = branch.slice(SHADOW_BRANCH_PREFIX.length);
|
|
234
|
-
const baseCommit = hashPart.split('-')[0];
|
|
235
|
-
|
|
236
|
-
const sessionMatch = message.match(/Session:\s*(\S+)/);
|
|
237
|
-
|
|
238
|
-
result.push({
|
|
239
|
-
branchName: branch,
|
|
240
|
-
baseCommit,
|
|
241
|
-
latestCommit,
|
|
242
|
-
sessionID: sessionMatch?.[1] ?? '',
|
|
243
|
-
timestamp,
|
|
244
|
-
});
|
|
245
|
-
} catch {
|
|
246
|
-
// Skip branches we can't read
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
return result;
|
|
251
|
-
},
|
|
252
|
-
|
|
253
|
-
async writeCommitted(opts: WriteCommittedOptions): Promise<void> {
|
|
254
|
-
const checkpointPath = checkpointIDPath(opts.checkpointID);
|
|
255
|
-
const branchRef = `refs/heads/${cpBranch}`;
|
|
256
|
-
|
|
257
|
-
// Committed checkpoints go to the session repo (or project repo if no session repo)
|
|
258
|
-
const targetCwd = committedCwd;
|
|
259
|
-
|
|
260
|
-
// Ensure the metadata branch exists
|
|
261
|
-
const branchExists = await refExists(branchRef, targetCwd);
|
|
262
|
-
let parentHash: string | null = null;
|
|
263
|
-
let baseTree: string | null = null;
|
|
264
|
-
|
|
265
|
-
if (branchExists) {
|
|
266
|
-
parentHash = await git(['rev-parse', cpBranch], { cwd: targetCwd });
|
|
267
|
-
baseTree = await getTreeHash(cpBranch, targetCwd);
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
// Build session directory content
|
|
271
|
-
const sessionIndex = '1'; // First session in this checkpoint
|
|
272
|
-
|
|
273
|
-
const metadata: CommittedMetadata = {
|
|
274
|
-
cliVersion: 'opentasks-sessionlog',
|
|
275
|
-
checkpointID: opts.checkpointID,
|
|
276
|
-
sessionID: opts.sessionID,
|
|
277
|
-
strategy: opts.strategy,
|
|
278
|
-
createdAt: new Date().toISOString(),
|
|
279
|
-
branch: opts.branch,
|
|
280
|
-
checkpointsCount: opts.checkpointsCount,
|
|
281
|
-
filesTouched: opts.filesTouched,
|
|
282
|
-
agent: opts.agent,
|
|
283
|
-
turnID: opts.turnID,
|
|
284
|
-
isTask: opts.isTask,
|
|
285
|
-
toolUseID: opts.toolUseID,
|
|
286
|
-
transcriptIdentifierAtStart: opts.transcriptIdentifierAtStart,
|
|
287
|
-
checkpointTranscriptStart: opts.checkpointTranscriptStart,
|
|
288
|
-
tokenUsage: opts.tokenUsage,
|
|
289
|
-
summary: opts.summary,
|
|
290
|
-
initialAttribution: opts.initialAttribution,
|
|
291
|
-
tasks: opts.tasks,
|
|
292
|
-
planModeUsed: opts.planModeUsed,
|
|
293
|
-
planModeEntries: opts.planModeEntries,
|
|
294
|
-
planEntries: opts.planEntries,
|
|
295
|
-
skillsUsed: opts.skillsUsed,
|
|
296
|
-
};
|
|
297
|
-
|
|
298
|
-
// Create blob objects in the target repo
|
|
299
|
-
const metadataBlob = await hashObject(JSON.stringify(metadata, null, 2), targetCwd);
|
|
300
|
-
const transcriptBlob = await hashObject(opts.transcript, targetCwd);
|
|
301
|
-
const promptBlob = await hashObject(opts.prompts.join('\n---\n'), targetCwd);
|
|
302
|
-
const contextBlob = await hashObject(opts.context, targetCwd);
|
|
303
|
-
|
|
304
|
-
// Build session subtree: <sessionIndex>/
|
|
305
|
-
const sessionTree = await mktree(
|
|
306
|
-
[
|
|
307
|
-
{ mode: '100644', type: 'blob', hash: metadataBlob, name: 'metadata.json' },
|
|
308
|
-
{ mode: '100644', type: 'blob', hash: transcriptBlob, name: 'full.jsonl' },
|
|
309
|
-
{ mode: '100644', type: 'blob', hash: promptBlob, name: 'prompt.txt' },
|
|
310
|
-
{ mode: '100644', type: 'blob', hash: contextBlob, name: 'context.md' },
|
|
311
|
-
],
|
|
312
|
-
targetCwd,
|
|
313
|
-
);
|
|
314
|
-
|
|
315
|
-
// Build checkpoint summary
|
|
316
|
-
const summary: CheckpointSummary = {
|
|
317
|
-
cliVersion: 'opentasks-sessionlog',
|
|
318
|
-
checkpointID: opts.checkpointID,
|
|
319
|
-
strategy: opts.strategy,
|
|
320
|
-
branch: opts.branch,
|
|
321
|
-
checkpointsCount: opts.checkpointsCount,
|
|
322
|
-
filesTouched: opts.filesTouched,
|
|
323
|
-
sessions: [
|
|
324
|
-
{
|
|
325
|
-
metadata: `${checkpointPath}/${sessionIndex}/metadata.json`,
|
|
326
|
-
transcript: `${checkpointPath}/${sessionIndex}/full.jsonl`,
|
|
327
|
-
context: `${checkpointPath}/${sessionIndex}/context.md`,
|
|
328
|
-
prompt: `${checkpointPath}/${sessionIndex}/prompt.txt`,
|
|
329
|
-
},
|
|
330
|
-
],
|
|
331
|
-
tokenUsage: opts.tokenUsage,
|
|
332
|
-
};
|
|
333
|
-
|
|
334
|
-
const summaryBlob = await hashObject(JSON.stringify(summary, null, 2), targetCwd);
|
|
335
|
-
|
|
336
|
-
// Build checkpoint tree: <id[:2]>/<id[2:]>/
|
|
337
|
-
const checkpointTree = await mktree(
|
|
338
|
-
[
|
|
339
|
-
{ mode: '100644', type: 'blob', hash: summaryBlob, name: 'metadata.json' },
|
|
340
|
-
{ mode: '040000', type: 'tree', hash: sessionTree, name: sessionIndex },
|
|
341
|
-
],
|
|
342
|
-
targetCwd,
|
|
343
|
-
);
|
|
344
|
-
|
|
345
|
-
// Now we need to merge this into the existing tree on the branch
|
|
346
|
-
// Path structure: <id[:2]>/<id[2:]>
|
|
347
|
-
const shardDir = opts.checkpointID.slice(0, 2);
|
|
348
|
-
const checkpointDir = opts.checkpointID.slice(2);
|
|
349
|
-
|
|
350
|
-
// Build shard subtree
|
|
351
|
-
let shardSubtreeEntries: Array<{ mode: string; type: string; hash: string; name: string }> =
|
|
352
|
-
[];
|
|
353
|
-
|
|
354
|
-
if (baseTree) {
|
|
355
|
-
// Read existing shard if present
|
|
356
|
-
const existingShardEntries = await lsTree(`${cpBranch}:${shardDir}`, undefined, targetCwd);
|
|
357
|
-
if (existingShardEntries.length > 0) {
|
|
358
|
-
shardSubtreeEntries = existingShardEntries.filter((e) => e.name !== checkpointDir);
|
|
359
|
-
}
|
|
360
|
-
}
|
|
361
|
-
shardSubtreeEntries.push({
|
|
362
|
-
mode: '040000',
|
|
363
|
-
type: 'tree',
|
|
364
|
-
hash: checkpointTree,
|
|
365
|
-
name: checkpointDir,
|
|
366
|
-
});
|
|
367
|
-
|
|
368
|
-
const shardTree = await mktree(shardSubtreeEntries, targetCwd);
|
|
369
|
-
|
|
370
|
-
// Build root tree
|
|
371
|
-
let rootEntries: Array<{ mode: string; type: string; hash: string; name: string }> = [];
|
|
372
|
-
|
|
373
|
-
if (baseTree) {
|
|
374
|
-
const existingRoot = await lsTree(cpBranch, undefined, targetCwd);
|
|
375
|
-
rootEntries = existingRoot.filter((e) => e.name !== shardDir);
|
|
376
|
-
}
|
|
377
|
-
rootEntries.push({ mode: '040000', type: 'tree', hash: shardTree, name: shardDir });
|
|
378
|
-
|
|
379
|
-
const rootTree = await mktree(rootEntries, targetCwd);
|
|
380
|
-
|
|
381
|
-
// Create commit
|
|
382
|
-
const author = await getGitAuthor(targetCwd);
|
|
383
|
-
const commitMessage = `Sessionlog-Checkpoint: ${opts.checkpointID}\n\nSession: ${opts.sessionID}`;
|
|
384
|
-
const commitHash = await commitTree(rootTree, parentHash, commitMessage, author, targetCwd);
|
|
385
|
-
|
|
386
|
-
// Update branch ref
|
|
387
|
-
if (branchExists) {
|
|
388
|
-
await updateRef(cpBranch, commitHash, targetCwd);
|
|
389
|
-
} else {
|
|
390
|
-
await git(['branch', cpBranch, commitHash], { cwd: targetCwd });
|
|
391
|
-
}
|
|
392
|
-
},
|
|
393
|
-
|
|
394
|
-
async readCommitted(checkpointID: CheckpointID): Promise<CheckpointSummary | null> {
|
|
395
|
-
const exists = await refExists(`refs/heads/${cpBranch}`, committedCwd);
|
|
396
|
-
if (!exists) return null;
|
|
397
|
-
|
|
398
|
-
const checkpointPath = checkpointIDPath(checkpointID);
|
|
399
|
-
try {
|
|
400
|
-
const content = await showFile(cpBranch, `${checkpointPath}/metadata.json`, committedCwd);
|
|
401
|
-
return JSON.parse(content) as CheckpointSummary;
|
|
402
|
-
} catch {
|
|
403
|
-
return null;
|
|
404
|
-
}
|
|
405
|
-
},
|
|
406
|
-
|
|
407
|
-
async readSessionContent(
|
|
408
|
-
checkpointID: CheckpointID,
|
|
409
|
-
sessionIndex: number,
|
|
410
|
-
): Promise<{
|
|
411
|
-
metadata: CommittedMetadata;
|
|
412
|
-
transcript: string;
|
|
413
|
-
prompts: string;
|
|
414
|
-
context: string;
|
|
415
|
-
} | null> {
|
|
416
|
-
const checkpointPath = checkpointIDPath(checkpointID);
|
|
417
|
-
const sessionPath = `${checkpointPath}/${sessionIndex + 1}`;
|
|
418
|
-
|
|
419
|
-
try {
|
|
420
|
-
const [metadataStr, transcript, prompts, context] = await Promise.all([
|
|
421
|
-
showFile(cpBranch, `${sessionPath}/metadata.json`, committedCwd),
|
|
422
|
-
showFile(cpBranch, `${sessionPath}/full.jsonl`, committedCwd),
|
|
423
|
-
showFile(cpBranch, `${sessionPath}/prompt.txt`, committedCwd),
|
|
424
|
-
showFile(cpBranch, `${sessionPath}/context.md`, committedCwd),
|
|
425
|
-
]);
|
|
426
|
-
|
|
427
|
-
return {
|
|
428
|
-
metadata: JSON.parse(metadataStr) as CommittedMetadata,
|
|
429
|
-
transcript,
|
|
430
|
-
prompts,
|
|
431
|
-
context,
|
|
432
|
-
};
|
|
433
|
-
} catch {
|
|
434
|
-
return null;
|
|
435
|
-
}
|
|
436
|
-
},
|
|
437
|
-
|
|
438
|
-
async listCommitted(limit = 20): Promise<CheckpointSummary[]> {
|
|
439
|
-
const exists = await refExists(`refs/heads/${cpBranch}`, committedCwd);
|
|
440
|
-
if (!exists) return [];
|
|
441
|
-
|
|
442
|
-
// Get recent commits on the metadata branch
|
|
443
|
-
const logOutput = await log(cpBranch, { maxCount: limit, format: '%H %s' }, committedCwd);
|
|
444
|
-
|
|
445
|
-
if (!logOutput) return [];
|
|
446
|
-
|
|
447
|
-
const summaries: CheckpointSummary[] = [];
|
|
448
|
-
for (const line of logOutput.split('\n').filter(Boolean)) {
|
|
449
|
-
const match = line.match(/^([0-9a-f]+)\s+Sessionlog-Checkpoint:\s+([0-9a-f]+)/);
|
|
450
|
-
if (!match) continue;
|
|
451
|
-
|
|
452
|
-
const id = match[2];
|
|
453
|
-
const summary = await this.readCommitted(id);
|
|
454
|
-
if (summary) summaries.push(summary);
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
return summaries;
|
|
458
|
-
},
|
|
459
|
-
|
|
460
|
-
async deleteShadowBranch(branchName: string): Promise<void> {
|
|
461
|
-
try {
|
|
462
|
-
await deleteBranch(branchName, true, cwd);
|
|
463
|
-
} catch {
|
|
464
|
-
// Ignore if branch doesn't exist
|
|
465
|
-
}
|
|
466
|
-
},
|
|
467
|
-
|
|
468
|
-
getShadowBranchName,
|
|
469
|
-
};
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
// ============================================================================
|
|
473
|
-
// Tree Building Helpers
|
|
474
|
-
// ============================================================================
|
|
475
|
-
|
|
476
|
-
async function buildMetadataTree(
|
|
477
|
-
opts: WriteTemporaryOptions,
|
|
478
|
-
cwd?: string,
|
|
479
|
-
): Promise<Array<{ mode: string; type: string; hash: string; name: string }>> {
|
|
480
|
-
// Create a simple metadata file in the shadow branch
|
|
481
|
-
const metadata = {
|
|
482
|
-
sessionID: opts.sessionID,
|
|
483
|
-
baseCommit: opts.baseCommit,
|
|
484
|
-
timestamp: new Date().toISOString(),
|
|
485
|
-
modifiedFiles: opts.modifiedFiles,
|
|
486
|
-
newFiles: opts.newFiles,
|
|
487
|
-
deletedFiles: opts.deletedFiles,
|
|
488
|
-
};
|
|
489
|
-
|
|
490
|
-
const blob = await hashObject(JSON.stringify(metadata, null, 2), cwd);
|
|
491
|
-
return [{ mode: '100644', type: 'blob', hash: blob, name: 'checkpoint.json' }];
|
|
492
|
-
}
|
|
493
|
-
|
|
494
|
-
async function mergeMetadataIntoTree(
|
|
495
|
-
baseTree: string,
|
|
496
|
-
metadataEntries: Array<{ mode: string; type: string; hash: string; name: string }>,
|
|
497
|
-
metadataDir: string,
|
|
498
|
-
cwd?: string,
|
|
499
|
-
): Promise<string> {
|
|
500
|
-
// Create the metadata subtree
|
|
501
|
-
const metadataTree = await mktree(metadataEntries, cwd);
|
|
502
|
-
|
|
503
|
-
// Get existing root entries
|
|
504
|
-
const rootEntries = await lsTree(baseTree, undefined, cwd);
|
|
505
|
-
const filtered = rootEntries.filter((e) => e.name !== metadataDir);
|
|
506
|
-
filtered.push({ mode: '040000', type: 'tree', hash: metadataTree, name: metadataDir });
|
|
507
|
-
|
|
508
|
-
return mktree(filtered, cwd);
|
|
509
|
-
}
|
|
@@ -1,173 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Native Sessionlog Store
|
|
3
|
-
*
|
|
4
|
-
* Replaces the CLI-based SessionlogStore with direct filesystem and git reads.
|
|
5
|
-
* This is the primary integration point between the Sessionlog module and
|
|
6
|
-
* the existing OpenTasks provider system.
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
import type { SessionlogStore, SessionlogSession, SessionlogCheckpoint } from './provider-types.js';
|
|
10
|
-
import type { SessionState } from '../types.js';
|
|
11
|
-
import { createSessionStore } from './session-store.js';
|
|
12
|
-
import { createCheckpointStore } from './checkpoint-store.js';
|
|
13
|
-
|
|
14
|
-
// ============================================================================
|
|
15
|
-
// Implementation
|
|
16
|
-
// ============================================================================
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* Create a native Sessionlog store that reads directly from
|
|
20
|
-
* the filesystem and git, without shelling out to the CLI.
|
|
21
|
-
*/
|
|
22
|
-
export function createNativeSessionlogStore(cwd?: string): SessionlogStore {
|
|
23
|
-
const sessionStore = createSessionStore(cwd);
|
|
24
|
-
const checkpointStore = createCheckpointStore(cwd);
|
|
25
|
-
|
|
26
|
-
function sessionStateToSessionlogSession(state: SessionState): SessionlogSession {
|
|
27
|
-
return {
|
|
28
|
-
id: state.sessionID,
|
|
29
|
-
agent: state.agentType,
|
|
30
|
-
phase: state.phase === 'active' ? 'ACTIVE' : state.phase === 'idle' ? 'IDLE' : 'ENDED',
|
|
31
|
-
baseCommit: state.baseCommit || undefined,
|
|
32
|
-
branch: undefined, // Will be populated if needed
|
|
33
|
-
startedAt: state.startedAt,
|
|
34
|
-
endedAt: state.endedAt,
|
|
35
|
-
checkpoints: state.turnCheckpointIDs.length > 0 ? state.turnCheckpointIDs : undefined,
|
|
36
|
-
tokenUsage: state.tokenUsage
|
|
37
|
-
? {
|
|
38
|
-
input: state.tokenUsage.inputTokens + state.tokenUsage.cacheReadTokens,
|
|
39
|
-
output: state.tokenUsage.outputTokens,
|
|
40
|
-
cache: state.tokenUsage.cacheCreationTokens,
|
|
41
|
-
}
|
|
42
|
-
: undefined,
|
|
43
|
-
filesTouched: state.filesTouched.length > 0 ? state.filesTouched : undefined,
|
|
44
|
-
summary: state.firstPrompt,
|
|
45
|
-
};
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
return {
|
|
49
|
-
async getSession(id: string): Promise<SessionlogSession | null> {
|
|
50
|
-
try {
|
|
51
|
-
const state = await sessionStore.load(id);
|
|
52
|
-
if (!state) return null;
|
|
53
|
-
return sessionStateToSessionlogSession(state);
|
|
54
|
-
} catch {
|
|
55
|
-
return null;
|
|
56
|
-
}
|
|
57
|
-
},
|
|
58
|
-
|
|
59
|
-
async listSessions(): Promise<SessionlogSession[]> {
|
|
60
|
-
try {
|
|
61
|
-
const states = await sessionStore.list();
|
|
62
|
-
return states.map(sessionStateToSessionlogSession);
|
|
63
|
-
} catch {
|
|
64
|
-
return [];
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
|
|
68
|
-
async getCheckpoint(id: string): Promise<SessionlogCheckpoint | null> {
|
|
69
|
-
try {
|
|
70
|
-
const summary = await checkpointStore.readCommitted(id);
|
|
71
|
-
if (!summary) return null;
|
|
72
|
-
|
|
73
|
-
// Read first session content for details
|
|
74
|
-
const content = await checkpointStore.readSessionContent(id, 0);
|
|
75
|
-
|
|
76
|
-
return {
|
|
77
|
-
id: summary.checkpointID,
|
|
78
|
-
sessionId: content?.metadata.sessionID,
|
|
79
|
-
commitHash: undefined, // Checkpoint hash, not a git commit
|
|
80
|
-
commitMessage: content?.metadata.summary?.intent,
|
|
81
|
-
promptCount: undefined,
|
|
82
|
-
filesModified: summary.filesTouched.length > 0 ? summary.filesTouched : undefined,
|
|
83
|
-
filesNew: undefined,
|
|
84
|
-
filesDeleted: undefined,
|
|
85
|
-
tokenUsage: summary.tokenUsage
|
|
86
|
-
? {
|
|
87
|
-
input: summary.tokenUsage.inputTokens + summary.tokenUsage.cacheReadTokens,
|
|
88
|
-
output: summary.tokenUsage.outputTokens,
|
|
89
|
-
cache: summary.tokenUsage.cacheCreationTokens,
|
|
90
|
-
}
|
|
91
|
-
: undefined,
|
|
92
|
-
context: content?.context,
|
|
93
|
-
};
|
|
94
|
-
} catch {
|
|
95
|
-
return null;
|
|
96
|
-
}
|
|
97
|
-
},
|
|
98
|
-
|
|
99
|
-
async listCheckpoints(): Promise<SessionlogCheckpoint[]> {
|
|
100
|
-
try {
|
|
101
|
-
const summaries = await checkpointStore.listCommitted(50);
|
|
102
|
-
const checkpoints: SessionlogCheckpoint[] = [];
|
|
103
|
-
|
|
104
|
-
for (const summary of summaries) {
|
|
105
|
-
const content = await checkpointStore.readSessionContent(summary.checkpointID, 0);
|
|
106
|
-
|
|
107
|
-
checkpoints.push({
|
|
108
|
-
id: summary.checkpointID,
|
|
109
|
-
sessionId: content?.metadata.sessionID,
|
|
110
|
-
commitHash: undefined,
|
|
111
|
-
commitMessage: content?.metadata.summary?.intent,
|
|
112
|
-
promptCount: undefined,
|
|
113
|
-
filesModified: summary.filesTouched.length > 0 ? summary.filesTouched : undefined,
|
|
114
|
-
filesNew: undefined,
|
|
115
|
-
filesDeleted: undefined,
|
|
116
|
-
tokenUsage: summary.tokenUsage
|
|
117
|
-
? {
|
|
118
|
-
input: summary.tokenUsage.inputTokens + summary.tokenUsage.cacheReadTokens,
|
|
119
|
-
output: summary.tokenUsage.outputTokens,
|
|
120
|
-
cache: summary.tokenUsage.cacheCreationTokens,
|
|
121
|
-
}
|
|
122
|
-
: undefined,
|
|
123
|
-
context: content?.context,
|
|
124
|
-
});
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
return checkpoints;
|
|
128
|
-
} catch {
|
|
129
|
-
return [];
|
|
130
|
-
}
|
|
131
|
-
},
|
|
132
|
-
|
|
133
|
-
async search(query: string): Promise<Array<SessionlogSession | SessionlogCheckpoint>> {
|
|
134
|
-
const results: Array<SessionlogSession | SessionlogCheckpoint> = [];
|
|
135
|
-
const lowerQuery = query.toLowerCase();
|
|
136
|
-
|
|
137
|
-
// Search sessions
|
|
138
|
-
try {
|
|
139
|
-
const sessions = await this.listSessions();
|
|
140
|
-
for (const session of sessions) {
|
|
141
|
-
if (
|
|
142
|
-
session.summary?.toLowerCase().includes(lowerQuery) ||
|
|
143
|
-
session.id.toLowerCase().includes(lowerQuery) ||
|
|
144
|
-
session.filesTouched?.some((f) => f.toLowerCase().includes(lowerQuery))
|
|
145
|
-
) {
|
|
146
|
-
results.push(session);
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
} catch {
|
|
150
|
-
// Continue with checkpoints
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
// Search checkpoints
|
|
154
|
-
try {
|
|
155
|
-
const checkpoints = await this.listCheckpoints();
|
|
156
|
-
for (const cp of checkpoints) {
|
|
157
|
-
if (
|
|
158
|
-
cp.commitMessage?.toLowerCase().includes(lowerQuery) ||
|
|
159
|
-
cp.id.toLowerCase().includes(lowerQuery) ||
|
|
160
|
-
cp.context?.toLowerCase().includes(lowerQuery) ||
|
|
161
|
-
cp.filesModified?.some((f) => f.toLowerCase().includes(lowerQuery))
|
|
162
|
-
) {
|
|
163
|
-
results.push(cp);
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
} catch {
|
|
167
|
-
// Return what we have
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
return results;
|
|
171
|
-
},
|
|
172
|
-
};
|
|
173
|
-
}
|