developing-agent-forge 2.5.1 → 2.5.2

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.
@@ -3,14 +3,14 @@ runtimes:
3
3
  kind: codex
4
4
 
5
5
  threads:
6
- develop:
6
+ develop-manager:
7
7
  runtime: codex
8
8
  options:
9
9
  model: gpt-5.5
10
10
  sandboxMode: danger-full-access
11
11
  workingDirectory: &developerWorkspacePath output/codebase
12
12
 
13
- develop-cheap:
13
+ develop-coding:
14
14
  runtime: codex
15
15
  options:
16
16
  model: gpt-5.3-codex-spark
@@ -25,42 +25,24 @@ threads:
25
25
  workingDirectory: &memoryWorkingDir output/developing
26
26
 
27
27
  agents:
28
- coding-manager:
29
- thread: develop
30
- constants:
28
+ coding-manager: &managerAgentConfig
29
+ thread: develop-manager
30
+ constants: &developAgentConstants
31
31
  workspacePath: *developerWorkspacePath
32
32
 
33
33
  developer:
34
- thread: develop-cheap
35
- constants:
36
- workspacePath: *developerWorkspacePath
37
-
38
- code-reviewer:
39
- thread: develop
40
- constants:
41
- workspacePath: *developerWorkspacePath
42
-
43
- memory-reader:
44
- thread: memory
45
- constants:
46
- workingDir: *memoryWorkingDir
34
+ thread: develop-coding
35
+ constants: *developAgentConstants
47
36
 
48
- memory-modify-planner:
49
- thread: memory
50
- constants:
51
- workingDir: *memoryWorkingDir
52
-
53
- memory-modifier:
54
- thread: memory
55
- constants:
56
- workingDir: *memoryWorkingDir
37
+ code-reviewer: *managerAgentConfig
57
38
 
58
- memory-create-planner:
39
+ memory-reader: &memoryAgentConfig
59
40
  thread: memory
60
41
  constants:
61
42
  workingDir: *memoryWorkingDir
62
43
 
63
- memory-creator:
64
- thread: memory
65
- constants:
66
- workingDir: *memoryWorkingDir
44
+ memory-modify-planner: *memoryAgentConfig
45
+ memory-modifier: *memoryAgentConfig
46
+ memory-create-planner: *memoryAgentConfig
47
+ memory-creator: *memoryAgentConfig
48
+ memory-cleaner: *memoryAgentConfig
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "developing-agent-forge",
3
- "version": "2.5.1",
3
+ "version": "2.5.2",
4
4
  "description": "Goal-driven code development pipelines for coding agents, built on coding-agent-forge.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -45,8 +45,8 @@
45
45
  "developing": "tsx src/cli.ts developing"
46
46
  },
47
47
  "dependencies": {
48
- "coding-agent-forge": "^1.3.2",
49
- "memory-agent-forge": "^1.2.1"
48
+ "coding-agent-forge": "^1.3.3",
49
+ "memory-agent-forge": "^1.2.2"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@eslint/js": "^9.39.4",