Frontier Flow is a low-code visual editor for EVE Frontier players who want to design game automation logic without hand-writing smart contract code. Build automation flows on a node canvas, generate deterministic Sui Move output in the browser, validate logic before deployment, and move from concept to contract fast.
For contributors, the repository is set up for fast local iteration with Bun, strict TypeScript, a clear verification pipeline, and project documentation that explains the product, architecture, design system, and contribution workflow.
- About The Project
- Features
- Built With
- Getting Started
- Usage
- Workflow Screenshots
- Roadmap
- Contributing
- License
- Contact
- Acknowledgments
Frontier Flow is designed for players who think visually, iterate quickly, and still need production-ready output. Instead of hand-coding every rule, you build your automation logic by connecting typed nodes that represent events, filters, data accessors, scoring rules, and actions.
The editor is tuned for the EVE Frontier domain and backed by a TypeScript-first frontend, a browser-based compilation pipeline, and deterministic code generation. That means you can:
- sketch contract logic as a flowchart
- validate your graph before wasting time on broken builds
- inspect compile feedback directly in the UI
- generate readable, predictable Move code ready for the next deployment step
The Visual view with a saved contract open, typed connections on the canvas, node categories in the toolbox, and build status in the footer.
- β‘ Build automation flows visually with a drag-and-drop node editor
- π§ Translate EVE Frontier logic into deterministic Sui Move code
- π‘οΈ Catch disconnected nodes, missing inputs, and invalid graphs early
- π Auto-compile on idle with manual build control when you want it
- π― Surface compiler diagnostics back onto the exact canvas nodes involved
- π Move from idea to deployment-ready output in under 10 minutes
- π§ͺ Validate behavior with unit, component, and end-to-end tests
Major project foundations include:
- Bun
- TypeScript
- React 19
- Vite
- Tailwind CSS 4
- React Flow via
@xyflow/react @zktx.io/sui-move-builderfor in-browser Move compilation
π Contributor quick start: if you want to work on the codebase, the shortest path is
bun install,bun run dev, thenbun run verifybefore you open a pull request.
Make sure the following tools are available locally:
- Bun
>= 1.0.0 - TypeScript
5.9+ - Git
You can verify your environment with:
bun --version
tsc --version
git --version- Clone the repository.
- Install dependencies.
- Start the development server.
git clone https://github.com/Scetrov/frontier-flow.git
cd frontier-flow
bun install
bun run devFor a local quality gate before opening a PR:
bun run verifybun run devOpen the local URL printed by Vite, then:
- Stay in the
Visualview and drag a trigger node such asAggressionorProximityonto the canvas. - Add logic, data, and action nodes, then connect their typed sockets.
- Configure any node that needs structured values.
- Wait for auto-compile or click
Build. - Switch to the
Moveview to inspect the generated source and deployment readiness.
bun run testRun the CI-style test suite once:
bun run test:runRun end-to-end tests:
bun run test:e2eRun the opt-in real WASM compiler integration check:
bun run test:real-wasmThis executes a Bun-based integration script that feeds reference graph fixtures directly into the compiler pipeline and asserts that valid bytecode is produced.
Run the focused reference-regression and authorization-readiness checks:
bun run test:run -- src/__tests__/compiler/referenceDagValidation.test.ts
bun run test:e2e -- generated-contracts.spec.ts authorization-readiness.spec.tsbun run build# install dependencies
bun install
# start the local app
bun run dev
# run static checks and tests
bun run lint
bun run typecheck
bun run test:runThe current UI follows a five-stage workflow: compose the graph in Visual, configure node data, review generated output in Move, deploy to the selected target, and confirm the published package metadata.
Start in the Visual view by dragging Frontier nodes from the toolbox onto the canvas, wiring typed sockets, and saving the flow as a named contract snapshot. This is the main authoring stage, where triggers, logic, data extractors, and actions are combined into a deterministic graph.
Open the node editor when a graph element needs structured input. In this example, the List of Ship node lets you select one or more live-world ship entries that feed downstream target matching and priority logic.
Switch to the Move view to inspect the generated source before deployment. The top bar keeps Build and deploy-target controls available while the source panel shows the exact Move module produced from the graph, along with status badges for build output and deployment readiness.
When you deploy, Frontier Flow surfaces each stage of the pipeline in a modal: validation, preparation, signing, submission, and confirmation. Instead of a single opaque loading state, the UI shows which step is active and which steps have already completed.
After the transaction finalizes, the modal switches to a completed state and shows the target environment plus the published package ID. This is the handoff point for follow-up testing, upgrades, or any workflow that needs confirmed deployment metadata.
- π§© Expanded node packs for more EVE Frontier mechanics and strategies
- π¦ Shareable contract templates and starter flow presets
- π Wallet-driven deployment workflow directly from the editor
- π₯ Collaboration-friendly features for team iteration and review
- π Richer compile insights, graph analytics, and optimization hints
- π Better onboarding, documentation, and example contract libraries
See the open issues for active work and proposed improvements.
Contributions are welcome from developers, UI engineers, tool builders, and EVE Frontier players with strong workflow ideas.
To contribute:
- Fork the repository.
- Create a feature branch.
- Make your changes.
- Run the local checks.
- Commit with a clear message.
- Push your branch.
- Open a pull request.
git checkout -b feat/your-improvement
bun run verify
git commit -m "feat: describe your change"
git push origin feat/your-improvementBefore contributing, please review:
Distributed under the MIT License. See LICENSE.md for the full text.
- Website: scetrov.live
- GitHub: github.com/Scetrov
- Project: github.com/Scetrov/frontier-flow
- CCP Games and the EVE Frontier universe for the domain inspiration
- The React and TypeScript ecosystems for a solid frontend foundation
- The
@xyflow/reactmaintainers for the node-based editing engine - The Sui and Move tooling ecosystem for contract compilation workflows
- Bun, Vite, Playwright, and Vitest for keeping local iteration fast
If Frontier Flow helps your workflow, star the repository and share your feedback.




