Forge 方案规划
- 作者仓库星标 0
- 作者仓库 AGI_engineering_forge
Forge Engineering Pipeline
When the user describes an engineering idea, run it through the full Forge pipeline.
Quick Run (full project)
cd /workspace && python run.py "USER'S IDEA HERE"
This launches the autonomous cognitive loop: Architect decomposes → Agents execute → Verifier checks → Architect replans on failure → Iterate until complete.
Manual Phase Execution
For step-by-step control, use the bridge to run individual tools:
# Structural analysis
python3 /workspace/bridge.py structural_analysis 'F=1000; L=2.0; E=200e9; I=moment_of_inertia_rect(0.05, 0.1); print(f"deflection={beam_deflection_simply_supported(F,L,E,I)*1000:.4f}mm")'
# Symbolic math
python3 /workspace/bridge.py sympy_math 'x=symbols("x"); print(integrate(x**2, x))'
# Circuit analysis
python3 /workspace/bridge.py circuit_analysis 'print(f"Vout={voltage_divider(12, 10e3, 20e3):.2f}V")'
# Generate CAD
python3 /workspace/bridge.py openscad 'cube([10,20,30]);'
# Run any Python computation
python3 /workspace/bridge.py python_executor 'import numpy as np; print(np.linalg.det([[1,2],[3,4]]))'
Output
All project artifacts are saved to forge/data/projects/<project_name>/:
summary.md— engineering summaryproject_state.json— task graph and statusartifacts/— code, CAD files, schematics, plots
- 流狐分类
- 设计与多媒体
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @00000star · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- Python
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- Shell 执行
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 This launches the autonomous cognitive loop: Architect decomposes → Agents execute → Verifier checks → Architect replans on failure → Iterate until complete.
For step-by-step control, use the bridge to run individual tools:
All project artifacts are saved to forge/data/projects/<projectname>/: summary.md — engineering summary projectstate.json — task graph and status
# Forge Engineering Pipeline
When the user describes an engineering idea, run it through the full Forge pipeline.
## Quick Run (full project)
```bash
cd /workspace && python run.py "USER'S IDEA HERE"
```
This launches the autonomous cognitive loop: Architect decomposes → Agents execute → Verifier checks → Architect replans on failure → Iterate until complete.
## Manual Phase Execution
For step-by-step control, use the bridge to run individual tools:
```bash
# Structural analysis
python3 /workspace/bridge.py structural_analysis 'F=1000; L=2.0; E=200e9; I=moment_of_inertia_rect(0.05, 0.1); print(f"deflection={beam_deflection_simply_supported(F,L,E,I)*1000:.4f}mm")'
# Symbolic math
python3 /workspace/bridge.py sympy_math 'x=symbols("x"); print(integrate(x**2, x))'
# Circuit analysis
python3 /workspace/bridge.py circuit_analysis 'print(f"Vout={voltage_divider(12, 10e3, 20e3):.2f}V")'
# Generate CAD
python3 /workspace/bridge.py openscad 'cube([10,20,30]);'
# Run any Python computation
python3 /workspace/bridge.py python_executor 'import numpy as np; print(np.linalg.det([[1,2],[3,4]]))'
```
## Output
All project artifacts are saved to `forge/data/projects/<project_name>/`:
- `summary.md` — engineering summary
- `project_state.json` — task graph and status
- `artifacts/` — code, CAD files, schematics, plots 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Quick Run (full project) → Manual Phase Execution → Output
要点 -> When the user describes an engineering idea, run it through the full Forge pipeline.
文件/命令 -> forge/data/projects/<projectname>/ · summary.md · projectstate.json · artifacts/
内容 SHA-256 -> 5a855fe0c6ca
方法与流程
适用与边界
原文中的明确线索
forge/data/projects/<projectname>/、summary.md、projectstate.json、artifacts/