academic-army 0.4.0 → 0.5.0
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/README.md +21 -21
- package/README.zh-CN.md +21 -21
- package/academic_army_mcp_tools/__init__.py +1 -0
- package/{mcp-server → academic_army_mcp_tools}/__main__.py +12 -10
- package/agent-forge.yaml +3 -7
- package/dist/developing-skill/agents/prompts.d.ts +2 -0
- package/dist/developing-skill/agents/prompts.d.ts.map +1 -0
- package/dist/developing-skill/agents/prompts.js +7 -0
- package/dist/developing-skill/agents/prompts.js.map +1 -0
- package/dist/developing-skill/agents/trajectory-optimizer.d.ts.map +1 -1
- package/dist/developing-skill/agents/trajectory-optimizer.js +20 -14
- package/dist/developing-skill/agents/trajectory-optimizer.js.map +1 -1
- package/dist/developing-skill/pipeline.d.ts +4 -2
- package/dist/developing-skill/pipeline.d.ts.map +1 -1
- package/dist/evolve-skill/agents/evaluator.d.ts.map +1 -1
- package/dist/evolve-skill/agents/evaluator.js +15 -7
- package/dist/evolve-skill/agents/evaluator.js.map +1 -1
- package/dist/evolve-skill/agents/modifier.d.ts.map +1 -1
- package/dist/evolve-skill/agents/modifier.js +8 -5
- package/dist/evolve-skill/agents/modifier.js.map +1 -1
- package/dist/evolve-skill/agents/prompts.d.ts +2 -0
- package/dist/evolve-skill/agents/prompts.d.ts.map +1 -0
- package/dist/evolve-skill/agents/prompts.js +7 -0
- package/dist/evolve-skill/agents/prompts.js.map +1 -0
- package/dist/evolve-skill/agents/runner.d.ts.map +1 -1
- package/dist/evolve-skill/agents/runner.js +9 -2
- package/dist/evolve-skill/agents/runner.js.map +1 -1
- package/install_mcp.py +1 -4
- package/metaskills/academic-army-coding-plan/ENVOLVETASK.md +1 -1
- package/metaskills/academic-army-experiment-plan/ENVOLVETASK.md +1 -1
- package/package.json +5 -7
- package/pyproject.toml +21 -0
- package/runs/develop-skill.sh +7 -4
- package/runs/develop.sh +7 -4
- package/skills/academic-army-coding-style/SKILL.md +2526 -2127
- package/mcp-server/requirements.txt +0 -4
- /package/{mcp-server → academic_army_mcp_tools}/deepresearch/__init__.py +0 -0
- /package/{mcp-server → academic_army_mcp_tools}/deepresearch/tools.py +0 -0
- /package/{mcp-server → academic_army_mcp_tools}/writing_master/__init__.py +0 -0
- /package/{mcp-server → academic_army_mcp_tools}/writing_master/tools.py +0 -0
package/pyproject.toml
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "academic-army-mcp-tools"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "MCP tools for AcademicArmy workflows."
|
|
9
|
+
requires-python = ">=3.11"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"mcp[cli]>=1.27.1",
|
|
12
|
+
"openai>=2.38.0",
|
|
13
|
+
"python-dotenv>=1.2.2",
|
|
14
|
+
"tomlkit>=0.13.3",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[project.scripts]
|
|
18
|
+
academic-army-mcp-tools = "academic_army_mcp_tools.__main__:main"
|
|
19
|
+
|
|
20
|
+
[tool.setuptools.packages.find]
|
|
21
|
+
include = ["academic_army_mcp_tools*"]
|
package/runs/develop-skill.sh
CHANGED
|
@@ -5,12 +5,15 @@ npm run developing-skill -- \
|
|
|
5
5
|
--config "agent-forge.yaml" \
|
|
6
6
|
--config "secret.yaml" \
|
|
7
7
|
--target-path "workspace/codebase" \
|
|
8
|
-
--achive-dir "workspace/
|
|
9
|
-
--project-progress-memory-path "workspace/
|
|
10
|
-
--code-design-memory-path "workspace/
|
|
8
|
+
--achive-dir "workspace/archives" \
|
|
9
|
+
--project-progress-memory-path "workspace/memory/project-progress" \
|
|
10
|
+
--code-design-memory-path "workspace/memory/code-design" \
|
|
11
11
|
--coding-style-skill-path "skills/academic-army-coding-style" \
|
|
12
12
|
--metaskill-path "metaskills/academic-army-coding-style/METASKILL.md" \
|
|
13
|
-
--goal-path "workspace/
|
|
13
|
+
--goal-path "workspace/plan/paper_blueprint.md" \
|
|
14
|
+
--goal-path "workspace/plan/experiment_plan.md" \
|
|
15
|
+
--goal-path "workspace/plan/coding_plan.md" \
|
|
16
|
+
--goal-path "workspace/plan/goal.md" \
|
|
14
17
|
--max-iterations "100" \
|
|
15
18
|
--max-task-devloop-iterations "10" \
|
|
16
19
|
--max-memory-rounds "3"
|
package/runs/develop.sh
CHANGED
|
@@ -5,10 +5,13 @@ npm run developing -- \
|
|
|
5
5
|
--config "agent-forge.yaml" \
|
|
6
6
|
--config "secret.yaml" \
|
|
7
7
|
--target-path "workspace/codebase" \
|
|
8
|
-
--achive-dir "workspace/
|
|
9
|
-
--project-progress-memory-path "workspace/
|
|
10
|
-
--code-design-memory-path "workspace/
|
|
11
|
-
--goal-path "workspace/
|
|
8
|
+
--achive-dir "workspace/archives" \
|
|
9
|
+
--project-progress-memory-path "workspace/memory/project-progress" \
|
|
10
|
+
--code-design-memory-path "workspace/memory/code-design" \
|
|
11
|
+
--goal-path "workspace/plan/paper_blueprint.md" \
|
|
12
|
+
--goal-path "workspace/plan/experiment_plan.md" \
|
|
13
|
+
--goal-path "workspace/plan/coding_plan.md" \
|
|
14
|
+
--goal-path "workspace/plan/goal.md" \
|
|
12
15
|
--max-iterations "100" \
|
|
13
16
|
--max-task-devloop-iterations "10" \
|
|
14
17
|
--max-memory-rounds "3"
|