academic-army 0.3.12 → 0.3.14
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/agent-forge.yaml
CHANGED
|
@@ -110,6 +110,12 @@ threads:
|
|
|
110
110
|
- Edit(./**)
|
|
111
111
|
- Write(./**)
|
|
112
112
|
- NotebookEdit(./**)
|
|
113
|
+
memory-cleaner:
|
|
114
|
+
runtime: deepseek-v4-pro
|
|
115
|
+
options:
|
|
116
|
+
cwd: *memoryWorkingDir
|
|
117
|
+
permissionMode: dontAsk
|
|
118
|
+
allowedTools: *cwdReadWriteBashAllowedTools
|
|
113
119
|
|
|
114
120
|
agents:
|
|
115
121
|
skill-runner:
|
|
@@ -140,3 +146,7 @@ agents:
|
|
|
140
146
|
memory-modifier: *memoryAgentConfig
|
|
141
147
|
memory-create-planner: *memoryAgentConfig
|
|
142
148
|
memory-creator: *memoryAgentConfig
|
|
149
|
+
memory-cleaner:
|
|
150
|
+
thread: memory-cleaner
|
|
151
|
+
constants:
|
|
152
|
+
workingDir: *memoryWorkingDir
|
|
@@ -42,7 +42,7 @@ export declare const developingSkillArgsOptions: {
|
|
|
42
42
|
};
|
|
43
43
|
readonly "memory-clean-interval": {
|
|
44
44
|
readonly type: "string";
|
|
45
|
-
readonly default: "
|
|
45
|
+
readonly default: "1";
|
|
46
46
|
readonly description: "Project iterations between memory clean runs; 0 disables automatic clean";
|
|
47
47
|
};
|
|
48
48
|
readonly "coding-style-skill-path": {
|
|
@@ -94,7 +94,7 @@ export declare const developingSkillPipeline: import("coding-agent-forge").Pipel
|
|
|
94
94
|
};
|
|
95
95
|
readonly "memory-clean-interval": {
|
|
96
96
|
readonly type: "string";
|
|
97
|
-
readonly default: "
|
|
97
|
+
readonly default: "1";
|
|
98
98
|
readonly description: "Project iterations between memory clean runs; 0 disables automatic clean";
|
|
99
99
|
};
|
|
100
100
|
readonly "coding-style-skill-path": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "academic-army",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.14",
|
|
4
4
|
"description": "Agent workflows and skills for AcademicArmy.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"coding-agent-forge": ">=1.3.5",
|
|
51
|
-
"developing-agent-forge": ">=2.8.
|
|
51
|
+
"developing-agent-forge": ">=2.8.3"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@eslint/js": "^10.0.1",
|