developing-agent-forge 2.0.0 → 2.0.1

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.
@@ -1,96 +1,76 @@
1
- # Sample configuration for developing-agent-forge.
2
- #
3
- # Keep these paths consistent:
4
- # - the CLI's --target-path
5
- # - each developing agent's constants.workspacePath
6
- # - the developer/reviewer threads' workingDirectory
7
- # - the CLI's --project-progress-memory-path and --code-design-memory-path
8
- # - each memory agent's constants.workingDir
9
- # - the memory thread's workingDirectory
10
- #
11
- # Put provider credentials in secret.yaml (git-ignored) and pass it after this
12
- # file: --config developing-forge.yaml --config secret.yaml
13
-
14
1
  runtimes:
15
2
  codex:
16
3
  kind: codex
17
4
 
18
5
  threads:
19
- coding-manager-runner:
6
+ skill:
20
7
  runtime: codex
21
8
  options:
22
9
  model: gpt-5.5
23
10
  sandboxMode: danger-full-access
24
- workingDirectory: &targetWorkspace output/codebase
25
-
26
- developer-runner:
27
- runtime: codex
28
- options:
29
- model: gpt-5.3-codex-spark
30
- sandboxMode: danger-full-access
31
- workingDirectory: *targetWorkspace
11
+ workingDirectory: .
32
12
 
33
- code-reviewer-runner:
13
+ develop:
34
14
  runtime: codex
35
15
  options:
36
16
  model: gpt-5.5
37
- sandboxMode: danger-full-access # read-only review agent
38
- workingDirectory: *targetWorkspace
17
+ sandboxMode: danger-full-access
18
+ workingDirectory: &developerWorkspacePath output/codebase
39
19
 
40
- trajectory-optimizer-runner:
20
+ develop-cheap:
41
21
  runtime: codex
42
22
  options:
43
- model: gpt-5.5
23
+ model: gpt-5.3-codex-spark
44
24
  sandboxMode: danger-full-access
45
- workingDirectory: .
25
+ workingDirectory: *developerWorkspacePath
46
26
 
47
- memory-runner:
27
+ memory:
48
28
  runtime: codex
49
29
  options:
50
30
  model: gpt-5.5
51
31
  sandboxMode: danger-full-access
52
- workingDirectory: &memoryWorkspace output/developing
32
+ workingDirectory: &memoryWorkingDir output/developing
53
33
 
54
34
  agents:
55
35
  coding-manager:
56
- thread: coding-manager-runner
36
+ thread: develop
57
37
  constants:
58
- workspacePath: *targetWorkspace
38
+ workspacePath: *developerWorkspacePath
59
39
 
60
40
  developer:
61
- thread: developer-runner
41
+ thread: develop-cheap
62
42
  constants:
63
- workspacePath: *targetWorkspace
43
+ workspacePath: *developerWorkspacePath
64
44
 
65
45
  code-reviewer:
66
- thread: code-reviewer-runner
46
+ thread: develop
67
47
  constants:
68
- workspacePath: *targetWorkspace
48
+ workspacePath: *developerWorkspacePath
69
49
 
70
50
  trajectory-optimizer:
71
- thread: trajectory-optimizer-runner
51
+ thread: skill
72
52
 
73
53
  memory-reader:
74
- thread: memory-runner
54
+ thread: memory
75
55
  constants:
76
- workingDir: *memoryWorkspace
56
+ workingDir: *memoryWorkingDir
77
57
 
78
58
  memory-modify-planner:
79
- thread: memory-runner
59
+ thread: memory
80
60
  constants:
81
- workingDir: *memoryWorkspace
61
+ workingDir: *memoryWorkingDir
82
62
 
83
63
  memory-modifier:
84
- thread: memory-runner
64
+ thread: memory
85
65
  constants:
86
- workingDir: *memoryWorkspace
66
+ workingDir: *memoryWorkingDir
87
67
 
88
68
  memory-create-planner:
89
- thread: memory-runner
69
+ thread: memory
90
70
  constants:
91
- workingDir: *memoryWorkspace
71
+ workingDir: *memoryWorkingDir
92
72
 
93
73
  memory-creator:
94
- thread: memory-runner
74
+ thread: memory
95
75
  constants:
96
- workingDir: *memoryWorkspace
76
+ workingDir: *memoryWorkingDir
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "developing-agent-forge",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Goal-driven code development pipelines for coding agents, built on coding-agent-forge.",
5
5
  "repository": {
6
6
  "type": "git",