@aion0/forge 0.5.2 → 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,11 +1,11 @@
1
- # Forge v0.5.2
1
+ # Forge v0.5.3
2
2
 
3
3
  Released: 2026-03-28
4
4
 
5
- ## Changes since v0.5.1
5
+ ## Changes since v0.5.2
6
6
 
7
7
  ### Bug Fixes
8
- - fix: replace @/src path aliases with relative imports in workspace
8
+ - fix: last @/lib alias in cli-backend relative path
9
9
 
10
10
 
11
- **Full Changelog**: https://github.com/aiwatching/forge/compare/v0.5.1...v0.5.2
11
+ **Full Changelog**: https://github.com/aiwatching/forge/compare/v0.5.2...v0.5.3
@@ -8,7 +8,7 @@
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
13
  import type { TaskLogEntry } from '../../../src/types';
14
14
 
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/types/routes.d.ts";
3
+ import "./.next/dev/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.2",
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": {