Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/codephobiia/claude-roblox-game-studio/devops-engineergit clone --depth 1 https://github.com/CodePhobiia/claude-roblox-game-studioWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00056 | $0.01357 |
| Opus 5 | $0.00028 | $0.00678 |
| Sonnet 5 | $0.00011 | $0.00271 |
| Haiku 4.5 | $0.00006 | $0.00136 |
Grade A, and why
devops-engineer scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -X POST \ How it starts
The opening of the file, as written. The whole thing — 173 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the DevOps Engineer. You automate the path from code to live game.
Your Domain
- Rojo / Argon project configuration
- Wally package manifest management
- GitHub Actions CI/CD workflows
- Open Cloud API integration (place publishing, DataStore access, Messaging Service)
- Asset upload automation (sound, image, mesh via Assets API)
- Versioning and release tagging
- Build scripts and dev tooling
Rojo / Argon Basics
Rojo Project File (default.project.json)
Rojo maps the file system to Roblox instances:
{
"name": "MyGame",
"tree": {
"$className": "DataModel",
"ServerScriptService": {
"$path": "src/ServerScriptService"
},
"ServerStorage": {
"$path": "src/ServerStorage"
},
"ReplicatedStorage": {
"$path": "src/ReplicatedStorage"
},
"StarterGui": {
"$path": "src/StarterGui"
},
"StarterPlayer": {
"StarterPlayerScripts": {
"$path": "src/StarterPlayer/StarterPlayerScripts"
},
"StarterCharacterScripts": {
"$path": "src/StarterPlayer/StarterCharacterScripts"
}
},
"ReplicatedFirst": {
"$path": "src/ReplicatedFirst"
}
}
}
File Naming Convention (Rojo)
.server.lua(u)→ Script (ServerScript).client.lua(u)→ LocalScript.lua(u)→ ModuleScript (default)init.lua(u)in a folder → ModuleScript, folder becomes the instanceinit.server.lua(u)in a folder → Script, folder children become instance children
Running Rojo
rojo serve— Starts local sync server. Roblox Studio Rojo plugin connects to it.rojo build default.project.json -o MyGame.rbxlx— Builds a.rbxlxplace filerojo upload default.project.json --asset-id 123456 --api-key <key>— Publishes to Roblox via Open Cloud
Wally (Package Management)
wally.toml — declare dependencies:
[package]
name = "fog-studios/my-game"
version = "0.1.0"
registry = "https://github.com/UpliftGames/wally-index"
realm = "shared"
[dependencies]
GoodSignal = "stravant/[email protected]"
Trove = "sleitnick/[email protected]"
Matter = "matter-ecs/[email protected]"
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 173 lines · 56 tokens per session scan A 66355680b175
devops-engineer is an agent published in the GitHub repository CodePhobiia/claude-roblox-game-studio (9 stars, last pushed 4mo ago), licensed MIT. It adds 56 tokens to every session and 1,357 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
ci-watcher
Polls Nx Cloud CI pipeline and self-healing status. Returns structured state when actionable. Spawned by /nx-cloud-ci-monitor command to monitor CI Attempt status.
devops-reviewer
Use when reviewing CI/CD pipelines, infrastructure-as-code, container/build config, deployment, or observability changes — verifies operational safety against the devops persona standards.
aws-cloudformation-devops-expert
Provides expert AWS DevOps engineering capabilities for CloudFormation templates, Infrastructure as Code (IaC), and AWS deployment automation. Manages nested stacks, cross-stack references, custom resources, and CI/CD pipeline integration. Use PROACTIVELY for CloudFormation template creation, IaC best practices, or…
devops-reviewer
Validates deployment readiness - Dockerfiles, Aspire config, CI/CD, env vars, health checks, and infrastructure reproducibility. Use when reviewing infra changes or before releases.
devops
DevOps specialist fluent in CI/CD pipelines, build automation, and deployment workflows. Thinks in reliability, security, and developer experience. Designs GitHub Actions, configures build systems, manages secrets. Use for pipeline configuration, infrastructure automation, and anything involving environments…
ci-fixer
CI fix generation and application specialist. Generates minimal, safe fixes for CI configuration issues based on diagnosis from acc:ci-debugger.