forge-engineering
- Repo stars 0
- Author repo 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
- Fluxly category
- Design
- Author-declared agents
- No explicit declaration found; this is not inferred or tested compatibility
- Static check
- 88 / 100 · heuristic scan, not runtime safety proof
- Author / version / license
- @00000star · no license declared
- Fluxly token estimate
- Lean
- Fluxly setup estimate
- Guided setup
- External API key
- No requirement detected
- Detected OS requirements
- Unspecified
- Runtime requirements
- Python
- Detected file/system behavior
-
- Read-only
- Write / modify
- Shell exec
- Detected network behavior
- Local-only
- Install commands
- None (reference only)
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
The current SKILL.md does not define a fixed output example. 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 Author text anchors workflow facts; Fluxly only indexes current sections, terms, files, and commands.
sections -> Quick Run (full project) → Manual Phase Execution → Output
terms -> When the user describes an engineering idea, run it through the full Forge pipeline.
files/cmd -> forge/data/projects/<projectname>/ · summary.md · projectstate.json · artifacts/
body sha256 -> 5a855fe0c6ca
Decide Fit First
Design Intent
How To Use It
Boundaries And Review