agent-template — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited agent-template (MCP Server) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Dashboard
Gantry is an MCP proxy and live dashboard for Space Molt AI fleets — handle guardrails, compound tools, multi-agent coordination, and real-time monitoring in one server.
Space Molt is a text-based space MMO played entirely through MCP (Model Context Protocol) tools. Gantry sits between your AI agents and the game server, providing:
batch_mine, travel_to, jump_route, multi_sell, scan_and_attack, and more. One tool call that handles a full multi-step sequence, tick waits, and error recovery.spacemolt_pray) for bounded, deterministic scripts. Agents submit a program once and the proxy runs it to completion, short-circuiting on predicates. Inspired by prayer.rs.Prerequisites: Bun and a Space Molt account.
# 1. Install
git clone https://github.com/geleynse/gantry.git
cd gantry
bun install
cd server && bun install && cd ..
# 2. Set up your fleet directory
bun server/scripts/gantry-setup.ts ./my-fleet
# Edit my-fleet/gantry.json — configure agents
# Add credentials to my-fleet/fleet-credentials.json
# Copy and customize a prompt: cp examples/agent-template/system-prompt.md my-fleet/my-agent.txt
# 3. Start the server
FLEET_DIR=./my-fleet bun run server/dist/index.jsOpen http://localhost:3100 in your browser to see the dashboard.
Configure Claude Code to use Gantry as its MCP server:
{
"mcpServers": {
"spacemolt": {
"type": "http",
"url": "http://localhost:3100/mcp/v2"
}
}
}Then run an agent turn:
claude -p "You are my-agent, a Space Molt trader. Login and take your turn." \
--mcp-config _data/mcp.jsonSee the server README for full configuration and deployment details.
Gantry exposes 9 compound tools that handle full multi-step game sequences:
| Tool | What it does |
|---|---|
batch_mine | Mine N times, wait for ticks, stop on cargo full |
travel_to | Undock, travel, dock in one call with POI name resolution |
jump_route | Multi-hop jump sequence with auto-refuel and arrival tick detection |
multi_sell | Sell multiple items sequentially, check demand first, deconflict with fleet |
passenger_run | Load waiting passengers by destination into free berths and plan the delivery route |
scan_and_attack | Full combat loop: scan, pick target, battle loop, auto-loot |
loot_wrecks | Scan for wrecks and salvage them |
battle_readiness | Check hull, fuel, ammo, and nearby threats before combat |
flee | Exit combat and travel to safety |
Each tool accepts parameters via the MCP tools/call interface. See the server API docs for endpoint details.
Galaxy Map
The web dashboard provides:
Fleet orders are injected into tool responses at zero tool-call cost. Sell deconfliction warns agents when another fleet member recently sold the same item at the same station. Signals and comms are routed through SQLite, not files.
Requires Docker and Docker Compose. Bun is optional (only needed if you want to use the setup script).
git clone https://github.com/geleynse/gantry.git
cd gantry
# Create a fleet directory (use setup script if you have Bun, or copy from examples/)
mkdir -p _data
cp examples/gantry.json.example _data/gantry.json
# Edit _data/gantry.json with your agent config
# Build and run
docker compose up --build -dDashboard at http://localhost:3100. Override the port with GANTRY_PORT=3101 docker compose up -d.
git clone https://github.com/geleynse/gantry.git
cd gantry
bun install
bun run build # builds server + Next.js dashboard
bun run dev # development mode with hot reloadFor deployments without Bun or Docker — one ~200MB executable.
# Build (requires Bun locally)
cd gantry/server
bun install && bun run build:binary
# Scaffold fleet directory locally, then deploy
bun scripts/gantry-setup.ts ./my-fleet
# Edit my-fleet/gantry.json, add credentials and prompts
scp dist/gantry user@server:/opt/gantry/
scp -r my-fleet user@server:/opt/gantry/fleet
# Run on target (no Bun needed)
ssh user@server
FLEET_DIR=/opt/gantry/fleet GANTRY_SECRET="$(openssl rand -hex 32)" /opt/gantry/gantryThe binary is fully self-contained — static frontend assets are embedded at compile time.
Claude Code / Codex CLI
│
│ MCP (HTTP)
▼
Gantry Server :3100
├── /mcp/v2 MCP proxy (compound tools, guardrails, injections)
├── /api/* REST API (agent status, comms, analytics, notes)
└── / Web dashboard (React + Next.js, SSE streams)
│
│ MCP (HTTP, optionally via SOCKS proxy)
▼
game.spacemolt.com/mcpAll agent data is stored in SQLite (fleet.db). The server is a single Express process running on Bun.
bun test # run all testsSee CONTRIBUTING.md.
MIT — see LICENSE.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.