| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Loopforge is an independent, local game-development agent. It works inside a normal game repository, turns ideas into playable experiments, gathers technical and human evidence, and helps make explicit keep, kill, or refactor decisions.
The Loopforge Agent is the product control plane. The desktop Workbench is its primary user interface. The CLI and versioned Skills remain available as internal execution, automation, and debugging capabilities; users should not have to start the Agent or orchestrate those capabilities manually.
The Workbench opens a game repository as a project through the native folder picker. Selecting a project starts or reconnects its Loopforge Agent automatically and loads constrained project context without exposing provider credentials, environment variables, or access tokens.
The interface is organized around the project rather than the Agent process:
Project state and evidence stay in the game repository. Chat history is not the only record of what happened.
User
|
v
Workbench (Tauri + React)
|-- opens projects and presents tools, evidence, and chat
|-- owns only the Loopforge Agent sidecar lifecycle
v
Loopforge Agent
|-- owns project context, planning, sessions, and tool selection
|-- invokes internal Skills and deterministic operations
v
Loopforge core + CLI adapter ----> game repository + .loopforge state
|
`----> Kura generic model/session/runtime capabilities
The boundaries are deliberate:
The release application embeds the Loopforge Agent and its pinned Kura sidecar. The Workbench talks to the Loopforge Agent contract; it does not call Kura or spawn workflow commands directly.
loopforge/
├── apps/
│ ├── agent/ # independent Loopforge Agent
│ └── workbench/ # Tauri + React desktop application
│ └── vendor/kura/ # pinned generic runtime submodule
├── cli/ # deterministic core and headless adapter
├── contracts/ # Loopforge-owned versioned schemas
├── skills/ # internal Agent workflow capabilities
├── tests/ # Agent, CLI, and Skill tests
├── docs/ # product, architecture, and decisions
└── dev.sh # root development launcher
Prerequisites:
Start the complete native development environment from the repository root:
git clone https://github.com/dopejs/loopforge.git
cd loopforge
./dev.shOn the first run, the launcher initializes the pinned Kura submodule, installs Workbench dependencies, and builds missing Agent and Kura sidecars. Later runs reuse those sidecars and start the native Tauri app with Vite hot module replacement.
Frontend React and CSS changes update without rebuilding release packages. Rust or native configuration changes restart the Tauri development process. Rebuild sidecars only when their code changes:
./dev.sh --rebuild-agent
./dev.sh --rebuild-kura
./dev.sh --rebuild-sidecarsFor browser-only interface work:
cd apps/workbench
pnpm devBuild the release desktop application and its embedded sidecars with:
git submodule update --init --recursive
cd apps/workbench
pnpm install --frozen-lockfile
pnpm build:desktopThe Python package is useful for developing deterministic operations, running headless automation, and diagnosing project state. It is not required to use a bundled Workbench release.
uv sync --locked
uv run loopforge --help
uv run loopforge inspect --format json
uv run loopforge doctor --format json
uv run python -m unittest discover -s tests -vThe package also contains the official Loopforge Skills. Developers testing Skill installation can use an isolated destination:
uv run loopforge setup --skills-root /tmp/loopforge-skillsThe package has not been published to PyPI. Do not assume uv tool install loopforge refers to this repository.
Loopforge organizes game development around a repeatable learning loop:
game idea -> falsifiable hypothesis -> smallest playable experiment
-> technical checks -> human playtest -> keep / kill / refactor
-> justified investment in design, art, and a vertical slice
Its current internal workflow capabilities cover routing, gameplay prototyping, Godot 4 implementation, game design, and art direction. The deterministic core records hash-chained events, stage transitions, build and test evidence, playtest records, and recovery state under .loopforge.
Technical correctness, visual quality, playtest observations, and evidence of fun remain separate claims. Creative, playtest, scope, and release-sensitive decisions stay with a human reviewer.
Loopforge is in alpha. The independent Agent, Workbench shell, deterministic core, CLI adapter, workflow contracts, and repository Skills are implemented and tested. The current engine workflow focuses on Godot 4. Mode-specific Workbench tools, broader engine adapters, hosted collaboration, and release production automation are still under development.
Copyright 2026 Loopforge contributors. Licensed under the Apache License 2.0.
| Back | FazBrowse Home | New Git URL |