academic-army 0.5.0 → 0.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.
|
@@ -14,9 +14,9 @@ export declare const developingSkillArgsOptions: {
|
|
|
14
14
|
readonly multiple: true;
|
|
15
15
|
readonly description: "Goal document path; repeat to concatenate multiple goals in order";
|
|
16
16
|
};
|
|
17
|
-
readonly "
|
|
17
|
+
readonly "archive-root": {
|
|
18
18
|
readonly type: "string";
|
|
19
|
-
readonly description: "Archive folder for per-iteration reports";
|
|
19
|
+
readonly description: "Archive root folder for per-iteration reports";
|
|
20
20
|
};
|
|
21
21
|
readonly "max-iterations": {
|
|
22
22
|
readonly type: "string";
|
|
@@ -67,9 +67,9 @@ export declare const developingSkillPipeline: import("coding-agent-forge").Pipel
|
|
|
67
67
|
readonly multiple: true;
|
|
68
68
|
readonly description: "Goal document path; repeat to concatenate multiple goals in order";
|
|
69
69
|
};
|
|
70
|
-
readonly "
|
|
70
|
+
readonly "archive-root": {
|
|
71
71
|
readonly type: "string";
|
|
72
|
-
readonly description: "Archive folder for per-iteration reports";
|
|
72
|
+
readonly description: "Archive root folder for per-iteration reports";
|
|
73
73
|
};
|
|
74
74
|
readonly "max-iterations": {
|
|
75
75
|
readonly type: "string";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "academic-army",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "Agent workflows and skills for AcademicArmy.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
11
|
"engines": {
|
|
12
|
-
"node": ">=
|
|
12
|
+
"node": ">=22.13"
|
|
13
13
|
},
|
|
14
14
|
"exports": {
|
|
15
15
|
"./evolve-skill": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"coding-agent-forge": ">=1.5.0",
|
|
49
|
-
"developing-agent-forge": ">=2.
|
|
49
|
+
"developing-agent-forge": ">=2.10.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@eslint/js": "^10.0.1",
|
package/runs/develop-skill.sh
CHANGED
|
@@ -5,7 +5,7 @@ npm run developing-skill -- \
|
|
|
5
5
|
--config "agent-forge.yaml" \
|
|
6
6
|
--config "secret.yaml" \
|
|
7
7
|
--target-path "workspace/codebase" \
|
|
8
|
-
--
|
|
8
|
+
--archive-root "workspace/archives" \
|
|
9
9
|
--project-progress-memory-path "workspace/memory/project-progress" \
|
|
10
10
|
--code-design-memory-path "workspace/memory/code-design" \
|
|
11
11
|
--coding-style-skill-path "skills/academic-army-coding-style" \
|
|
@@ -16,4 +16,5 @@ npm run developing-skill -- \
|
|
|
16
16
|
--goal-path "workspace/plan/goal.md" \
|
|
17
17
|
--max-iterations "100" \
|
|
18
18
|
--max-task-devloop-iterations "10" \
|
|
19
|
-
--max-memory-rounds "3"
|
|
19
|
+
--max-memory-rounds "3" \
|
|
20
|
+
--memory-clean-interval "0"
|
package/runs/develop.sh
CHANGED
|
@@ -5,7 +5,7 @@ npm run developing -- \
|
|
|
5
5
|
--config "agent-forge.yaml" \
|
|
6
6
|
--config "secret.yaml" \
|
|
7
7
|
--target-path "workspace/codebase" \
|
|
8
|
-
--
|
|
8
|
+
--archive-root "workspace/archives" \
|
|
9
9
|
--project-progress-memory-path "workspace/memory/project-progress" \
|
|
10
10
|
--code-design-memory-path "workspace/memory/code-design" \
|
|
11
11
|
--goal-path "workspace/plan/paper_blueprint.md" \
|
|
@@ -14,4 +14,5 @@ npm run developing -- \
|
|
|
14
14
|
--goal-path "workspace/plan/goal.md" \
|
|
15
15
|
--max-iterations "100" \
|
|
16
16
|
--max-task-devloop-iterations "10" \
|
|
17
|
-
--max-memory-rounds "3"
|
|
17
|
+
--max-memory-rounds "3" \
|
|
18
|
+
--memory-clean-interval "0"
|