@aion0/forge 0.5.18 → 0.5.19

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/.forge/mcp.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "mcpServers": {
3
3
  "forge": {
4
4
  "type": "sse",
5
- "url": "http://localhost:8406/sse?workspaceId=656c9e65-9d73-4cb6-a065-60d966e1fc78&agentId=engineer-1774920478256"
5
+ "url": "http://localhost:8406/sse?workspaceId=656c9e65-9d73-4cb6-a065-60d966e1fc78"
6
6
  }
7
7
  }
8
8
  }
package/RELEASE_NOTES.md CHANGED
@@ -1,19 +1,11 @@
1
- # Forge v0.5.18
1
+ # Forge v0.5.19
2
2
 
3
3
  Released: 2026-04-01
4
4
 
5
- ## Changes since v0.5.17
5
+ ## Changes since v0.5.18
6
6
 
7
7
  ### Bug Fixes
8
- - Revert "fix: after hook done, suppress extends until file stops changing"
9
- - fix: after hook done, suppress extends until file stops changing
10
- - fix: warmup back to 7 polls (21s)
11
- - fix: only start session monitor on new tmux creation, not existing
12
- - fix: reduce warmup from 7 polls (21s) to 4 polls (12s)
13
- - fix: resetState doesn't reset warmupCount, only startMonitoring does
8
+ - fix: session monitor also reads fixedSession from file, not dynamic import
14
9
 
15
- ### Other
16
- - Revert "fix: after hook done, suppress extends until file stops changing"
17
10
 
18
-
19
- **Full Changelog**: https://github.com/aiwatching/forge/compare/v0.5.17...v0.5.18
11
+ **Full Changelog**: https://github.com/aiwatching/forge/compare/v0.5.18...v0.5.19
@@ -1175,11 +1175,14 @@ export class WorkspaceOrchestrator extends EventEmitter {
1175
1175
 
1176
1176
  if (config.primary) {
1177
1177
  try {
1178
- const mod = await import('../project-sessions');
1179
- sessionId = (mod as any).getFixedSession(this.projectPath);
1178
+ const psPath = join(homedir(), '.forge', 'data', 'project-sessions.json');
1179
+ if (existsSync(psPath)) {
1180
+ const psData = JSON.parse(readFileSync(psPath, 'utf-8'));
1181
+ sessionId = psData[this.projectPath];
1182
+ }
1180
1183
  console.log(`[session-monitor] ${config.label}: primary fixedSession=${sessionId || 'NONE'}`);
1181
1184
  } catch (err: any) {
1182
- console.log(`[session-monitor] ${config.label}: failed to get fixedSession: ${err.message}`);
1185
+ console.log(`[session-monitor] ${config.label}: failed to read fixedSession: ${err.message}`);
1183
1186
  }
1184
1187
  } else {
1185
1188
  sessionId = config.boundSessionId;
package/next-env.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /// <reference types="next" />
2
2
  /// <reference types="next/image-types/global" />
3
- import "./.next/dev/types/routes.d.ts";
3
+ import "./.next/types/routes.d.ts";
4
4
 
5
5
  // NOTE: This file should not be edited
6
6
  // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aion0/forge",
3
- "version": "0.5.18",
3
+ "version": "0.5.19",
4
4
  "description": "Unified AI workflow platform — multi-model task orchestration, persistent sessions, web terminal, remote access",
5
5
  "type": "module",
6
6
  "scripts": {