@aion0/forge 0.5.24 → 0.5.25
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/RELEASE_NOTES.md
CHANGED
|
@@ -1,25 +1,11 @@
|
|
|
1
|
-
# Forge v0.5.
|
|
1
|
+
# Forge v0.5.25
|
|
2
2
|
|
|
3
3
|
Released: 2026-04-05
|
|
4
4
|
|
|
5
|
-
## Changes since v0.5.
|
|
6
|
-
|
|
7
|
-
### Features
|
|
8
|
-
- feat: add benchmark harness comparing Claude Code vs Forge multi-smith
|
|
9
|
-
- feat: smith mascot animations with theme picker
|
|
10
|
-
- feat: smith templates, topo cache, SOP-driven presets, output conflict fix
|
|
11
|
-
- feat: auto DAG notifications, claim_request for parallel engineers
|
|
12
|
-
- feat: request/response document system for multi-agent delivery workflow
|
|
5
|
+
## Changes since v0.5.24
|
|
13
6
|
|
|
14
7
|
### Bug Fixes
|
|
15
|
-
-
|
|
16
|
-
- fix: Claude Code session path encoding — replace all non-alphanumeric chars
|
|
17
|
-
- fix: add 200ms delay between paste-buffer and Enter in injectIntoSession
|
|
18
|
-
- fix: persistent session agents stay 'starting' until session ready in startDaemon
|
|
19
|
-
|
|
20
|
-
### Other
|
|
21
|
-
- tweak: role injection polish + output warnings + docs rewrite
|
|
22
|
-
- tweak: reduce session-monitor timeout from 60min to 20min
|
|
8
|
+
- fix: replace @/src path alias with relative import in project-sessions.ts
|
|
23
9
|
|
|
24
10
|
|
|
25
|
-
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.5.
|
|
11
|
+
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.5.24...v0.5.25
|
|
Binary file
|
|
Binary file
|
package/lib/project-sessions.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import { existsSync, readFileSync, writeFileSync, mkdirSync } from 'node:fs';
|
|
7
7
|
import { join } from 'node:path';
|
|
8
|
-
import { getDataDir } from '
|
|
8
|
+
import { getDataDir } from './dirs';
|
|
9
9
|
|
|
10
10
|
function getFilePath(): string {
|
|
11
11
|
const dir = getDataDir();
|
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/
|
|
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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
approveBuilds: true
|