feat(platform): checkpoint current implementation state

This commit is contained in:
2026-04-01 07:42:03 +02:00
parent 3e53471f05
commit 8c5be51251
125 changed files with 10269 additions and 17808 deletions
+3 -2
View File
@@ -7,7 +7,8 @@
const fs = require('fs');
const path = require('path');
const SESSION_DIR = path.join(process.cwd(), '.claude-flow', 'sessions');
const WORKSPACE_ROOT = fs.realpathSync(process.cwd());
const SESSION_DIR = path.join(WORKSPACE_ROOT, '.claude-flow', 'sessions');
const SESSION_FILE = path.join(SESSION_DIR, 'current.json');
const commands = {
@@ -16,7 +17,7 @@ const commands = {
const session = {
id: sessionId,
startedAt: new Date().toISOString(),
cwd: process.cwd(),
cwd: WORKSPACE_ROOT,
context: {},
metrics: {
edits: 0,