@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
1
+ # Forge v0.5.3
2
2
 
3
3
  Released: 2026-03-28
4
4
 
5
- ## Changes since v0.5.0
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: stop old worker before creating new one in enterDaemonListening
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.0...v0.5.1
11
+ **Full Changelog**: https://github.com/aiwatching/forge/compare/v0.5.2...v0.5.3
@@ -21,7 +21,7 @@ import type {
21
21
  BusMessage,
22
22
  DaemonWakeReason,
23
23
  } from './types';
24
- import type { TaskLogEntry } from '@/src/types';
24
+ import type { TaskLogEntry } from '../../src/types';
25
25
 
26
26
  export interface AgentWorkerOptions {
27
27
  config: WorkspaceAgentConfig;
@@ -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 '@/src/core/providers/registry';
12
+ import { getModel } from '../../../src/core/providers/registry';
13
13
  import type { AgentBackend, StepExecutionParams, StepExecutionResult, Artifact } from '../types';
14
- import type { TaskLogEntry } from '@/src/types';
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 '@/lib/agents';
11
+ import { getAgent } from '../../agents';
12
12
  import type { AgentBackend, AgentStep, StepExecutionParams, StepExecutionResult, Artifact } from '../types';
13
- import type { TaskLogEntry } from '@/src/types';
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 '@/src/types';
17
+ import type { TaskLogEntry } from '../../src/types';
18
18
 
19
19
  // ─── Paths ───────────────────────────────────────────────
20
20
 
@@ -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 '@/src/types';
5
+ import type { ProviderName, TaskLogEntry } from '../../src/types';
6
6
 
7
7
  // ─── Agent Config ────────────────────────────────────────
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aion0/forge",
3
- "version": "0.5.1",
3
+ "version": "0.5.3",
4
4
  "description": "Unified AI workflow platform — multi-model task orchestration, persistent sessions, web terminal, remote access",
5
5
  "type": "module",
6
6
  "scripts": {