Skip to content

Commit 1e8256d

Browse files
SwiftWing21claude
andcommitted
chore: complete Factorio removal from public repo + CI fix
Team audit (3 pods) — full Factorio cleanup: - Remove all Factorio references from dashboard, SSE, nav, supervisor, worker, mode_blueprint, process_manager, providers (-1375 lines code) - Remove factorio_blueprint.py, 5 factorio skills, _factorio.html template - Remove 4 idle curricula, 17 design docs, 2 test files - Remove factorio entry from launcher modules manifest - Clean fleet.toml: reset last_mode, remove factorio module flag - Add pytest-asyncio to CI deps - Gitignore all factorio-related file patterns Factorio module available via Module Hub (fleet/factorio/module.json + fleet/factorio/package.py for distribution packaging). 46 files changed, -19,785 lines Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 7b3dee4 commit 1e8256d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+17
-19785
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
pip install flask psutil
3535
pip install paho-mqtt playwright
3636
pip install fastmcp tomli
37-
pip install pytest
37+
pip install pytest pytest-asyncio
3838
3939
- name: Install uv
4040
uses: astral-sh/setup-uv@v4

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,14 @@ BigEd/research/
148148

149149
# ── Factorio module (distributed via Module Hub, not in public repo) ──────
150150
fleet/factorio/
151+
fleet/factorio_blueprint.py
152+
fleet/skills/factorio_*.py
153+
fleet/idle_curricula/factorio_*.toml
154+
fleet/templates/components/_factorio.html
155+
fleet/tests/factorio/
151156
tests/factorio/
157+
docs/superpowers/plans/*factorio*
158+
docs/superpowers/specs/*factorio*
152159
# ── Fleet runtime state ──────────────────────────────────────────────────
153160
fleet/hw_state.json
154161
fleet/tmp*.json

BigEd/launcher/modules/manifest.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
{"name": "outputs", "file": "mod_outputs.py", "version": "0.23", "default_enabled": true, "deprecated": false, "author": "BigEd Core", "description": "Task output viewer, export controls, result history and formatting", "license": "Apache-2.0", "min_biged_version": "0.050.00b"},
99
{"name": "intelligence", "file": "mod_intelligence.py", "version": "0.051", "default_enabled": true, "deprecated": false, "author": "BigEd Core", "description": "System transparency, model controls, prompt queue, evaluation display", "license": "Apache-2.0", "min_biged_version": "0.050.00b"},
1010
{"name": "owner_core", "file": "mod_owner_core.py", "version": "0.47", "default_enabled": false, "deprecated": false, "author": "BigEd Core", "description": "Owner administration panel, system configuration, fleet governance", "license": "Apache-2.0", "min_biged_version": "0.050.00b"},
11-
{"name": "manual_mode", "file": "mod_manual_mode.py", "version": "0.052", "default_enabled": true, "deprecated": false, "author": "BigEd Core", "description": "Operator-controlled audit queue with per-prompt model/token config, scheduler, and results viewer", "license": "Apache-2.0", "min_biged_version": "0.052.00b"},
12-
{"name": "factorio", "file": "mod_factorio.py", "version": "0.1.0", "default_enabled": false, "deprecated": false, "author": "BigEd Core", "description": "Factorio sandbox — train AI agents to play Factorio through 4-phase curriculum with RCON bridge", "license": "Apache-2.0", "min_biged_version": "0.400.00b", "category": "training"}
11+
{"name": "manual_mode", "file": "mod_manual_mode.py", "version": "0.052", "default_enabled": true, "deprecated": false, "author": "BigEd Core", "description": "Operator-controlled audit queue with per-prompt model/token config, scheduler, and results viewer", "license": "Apache-2.0", "min_biged_version": "0.052.00b"}
1312
]
1413
}

0 commit comments

Comments
 (0)