@aion0/forge 0.5.1 → 0.5.3
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,33 +1,11 @@
|
|
|
1
|
-
# Forge v0.5.
|
|
1
|
+
# Forge v0.5.3
|
|
2
2
|
|
|
3
3
|
Released: 2026-03-28
|
|
4
4
|
|
|
5
|
-
## Changes since v0.5.
|
|
6
|
-
|
|
7
|
-
### Features
|
|
8
|
-
- feat: daemon health check + SSE for all message actions
|
|
9
|
-
- feat: pending_approval status for watch approve + requiresApproval
|
|
5
|
+
## Changes since v0.5.2
|
|
10
6
|
|
|
11
7
|
### Bug Fixes
|
|
12
|
-
- fix:
|
|
13
|
-
- fix: prevent multiple running messages + clean stale running
|
|
14
|
-
- fix: requiresApproval set at message arrival, not in message loop
|
|
15
|
-
- fix: approved messages not re-converted to pending_approval
|
|
16
|
-
- fix: message loop never stops + auto-recreate dead workers
|
|
17
|
-
- fix: approve/reject emit SSE events + reject marks as failed
|
|
18
|
-
- fix: emit bus_message_status after watch approve sets pending_approval
|
|
19
|
-
- fix: pending_approval edge cases
|
|
20
|
-
- fix: system messages (_watch, _system, user) bypass causedBy rules
|
|
21
|
-
|
|
22
|
-
### Documentation
|
|
23
|
-
- docs: add workspace section + agent flow diagram to README
|
|
24
|
-
- docs: README with Mermaid diagrams for v0.5.0
|
|
25
|
-
- docs: update README for v0.5.0 — multi-agent workspace
|
|
26
|
-
- docs: update workspace help with watch, logs, forge skills, send protection
|
|
27
|
-
|
|
28
|
-
### Other
|
|
29
|
-
- ui: add requiresApproval toggle in agent config modal
|
|
30
|
-
- debug: log watch analyze skip reasons
|
|
8
|
+
- fix: last @/lib alias in cli-backend → relative path
|
|
31
9
|
|
|
32
10
|
|
|
33
|
-
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.5.
|
|
11
|
+
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.5.2...v0.5.3
|
|
@@ -9,9 +9,9 @@ import { generateText, stepCountIs, type ModelMessage } from 'ai';
|
|
|
9
9
|
import { readFileSync, writeFileSync, readdirSync, mkdirSync } from 'node:fs';
|
|
10
10
|
import { execSync, execFileSync } from 'node:child_process';
|
|
11
11
|
import { resolve, dirname } from 'node:path';
|
|
12
|
-
import { getModel } from '
|
|
12
|
+
import { getModel } from '../../../src/core/providers/registry';
|
|
13
13
|
import type { AgentBackend, StepExecutionParams, StepExecutionResult, Artifact } from '../types';
|
|
14
|
-
import type { TaskLogEntry } from '
|
|
14
|
+
import type { TaskLogEntry } from '../../../src/types';
|
|
15
15
|
|
|
16
16
|
// ─── Tool factory ────────────────────────────────────────
|
|
17
17
|
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
|
|
9
9
|
import { spawn, type ChildProcess } from 'node:child_process';
|
|
10
10
|
import { createRequire } from 'node:module';
|
|
11
|
-
import { getAgent } from '
|
|
11
|
+
import { getAgent } from '../../agents';
|
|
12
12
|
import type { AgentBackend, AgentStep, StepExecutionParams, StepExecutionResult, Artifact } from '../types';
|
|
13
|
-
import type { TaskLogEntry } from '
|
|
13
|
+
import type { TaskLogEntry } from '../../../src/types';
|
|
14
14
|
|
|
15
15
|
const esmRequire = createRequire(import.meta.url);
|
|
16
16
|
|
|
@@ -14,7 +14,7 @@ import { writeFile, appendFile, mkdir, rename } from 'node:fs/promises';
|
|
|
14
14
|
import { join } from 'node:path';
|
|
15
15
|
import { homedir } from 'node:os';
|
|
16
16
|
import type { WorkspaceState, AgentState, BusMessage, WorkspaceAgentConfig } from './types';
|
|
17
|
-
import type { TaskLogEntry } from '
|
|
17
|
+
import type { TaskLogEntry } from '../../src/types';
|
|
18
18
|
|
|
19
19
|
// ─── Paths ───────────────────────────────────────────────
|
|
20
20
|
|
package/lib/workspace/types.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Workspace Agent types — core interfaces for the multi-agent workspace system.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
import type { ProviderName, TaskLogEntry } from '
|
|
5
|
+
import type { ProviderName, TaskLogEntry } from '../../src/types';
|
|
6
6
|
|
|
7
7
|
// ─── Agent Config ────────────────────────────────────────
|
|
8
8
|
|