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/rocketride-org/rocketride-server/rocketride_quickstartgit clone --depth 1 https://github.com/rocketride-org/rocketride-serverWhat 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.00000 | $0.02564 |
| Opus 5 | $0.00000 | $0.01282 |
| Sonnet 5 | $0.00000 | $0.00513 |
| Haiku 4.5 | $0.00000 | $0.00256 |
Grade A, and why
ROCKETRIDE_QUICKSTART scanned grade A with 0 findings 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 318 lines — stays where its author put it; the contents beside it link to each section on GitHub.
RocketRide Quick Start - Complete Working Examples
Python: Complete Working Project
Step 1: Set Up the .env File
When you connect to a self-hosted engine (local, docker, service, or on-prem) using the extension's development connection group, the extension auto-populates .env in your workspace with the live server URI and key — preserving any other variables you've added. In local mode the engine listens on a dynamically assigned port, so the extension writes the actual resolved address (not a fixed port). In cloud mode, set ROCKETRIDE_APIKEY yourself (cloud sign-in uses a short-lived OAuth token, which is not a usable SDK key).
# Development-group self-hosted engines: auto-filled on connect (local uses the real dynamic port).
# live engine address (auto-filled)
ROCKETRIDE_URI=http://localhost:54123
# self-hosted default; set your own for cloud
ROCKETRIDE_APIKEY=MYAPIKEY
# Add your custom variables:
ROCKETRIDE_INPUT_PATH=/data/input
ROCKETRIDE_OUTPUT_PATH=/data/output
Note: For self-hosted engines in the development connection group, the extension re-syncs
ROCKETRIDE_URI/ROCKETRIDE_APIKEYon every connect while leaving your other variables untouched. For cloud, provide your own API key. Add any additional custom variables as needed. Because.envcan contain credentials, add it to.gitignoreand never commit it.
Step 2: Install Client
pip install rocketride
Step 3: Create Pipeline (pipeline.pipe)
Pipeline files must use the .pipe extension.
{
"project_id": "85be2a13-ad93-49ed-a1e1-4b0f763ca618",
"source": "input",
"components": [
{
"id": "input",
"provider": "webhook",
"config": {}
},
{
"id": "processor",
"provider": "transform",
"config": {
"input_path": "${ROCKETRIDE_INPUT_PATH}",
"output_path": "${ROCKETRIDE_OUTPUT_PATH}"
},
"input": [{ "lane": "text", "from": "input" }]
},
{
"id": "output",
"provider": "response_text",
"config": {},
"input": [{ "lane": "text", "from": "processor" }]
}
]
}
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 · 318 lines · 0 tokens per session scan A 07b2e3db091d
ROCKETRIDE_QUICKSTART is an agent published in the GitHub repository rocketride-org/rocketride-server (7,634 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,564 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
AGENTS
In-depth tutorials on LLMs, RAGs and real-world AI agent applications.
FREE_MCP_SERVERS
A catalog of real, public MCP servers you can plug straight into the Swarms Agent class — most require no authentication, a few use a free-tier API key. Runnable examples live in this folder.
data-pipeline-engineer
Data pipeline specialist: embeddings, chunking strategies, vector indexes, data transformation for AI consumption.
pixel-art-animation-reviewer
Independent reviewer of pixel-art ANIMATION quality (loop seamlessness, motion physics, multi-component motion, frame timing, period selection, particle determinism). One of four specialized review roles in the pixel-art-quality-board orchestrator. Use when the user asks to "check animation timing", "verify loop…
pixel-art-quality-board
Orchestrator agent that runs 4 specialized pixel-art reviewers in parallel (style + animation + composition + interaction), then synthesizes their verdicts into a single PASS/NEEDSWORK/REJECT decision with prioritized fixes. Use when the user asks to "review my pixel art quality", "score this animation"…
agentic-workflows
GitHub Agentic Workflows (gh-aw) - Create, debug, and upgrade AI-powered workflows with intelligent prompt routing.