ROCKETRIDE_QUICKSTART

A RocketRide setup guide with complete Python examples for connecting an application to a self-hosted or cloud engine.

In plain words
What is it for?
Use it when configuring RocketRide locally, with Docker or another self-hosted service, or in the cloud.
Why use it?
It explains how connection details are placed in the .env file and how to preserve your other environment settings.

Agent

Install

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.

agentmods
npx agentmods add agents/rocketride-org/rocketride-server/rocketride_quickstart
Clone the repo
git clone --depth 1 https://github.com/rocketride-org/rocketride-server
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,564 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce 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

Measured 2d ago against content hash 07b2e3db091d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

docs/agents/ROCKETRIDE_QUICKSTART.md · 318 lines

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_APIKEY on every connect while leaving your other variables untouched. For cloud, provide your own API key. Add any additional custom variables as needed. Because .env can contain credentials, add it to .gitignore and 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" }]
		}
	]
}

Read the full file on GitHub · 318 lines

Changes

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.

  1. 2d ago First seen · 318 lines · 0 tokens per session scan A 07b2e3db091d

Subscribe to this mod's changes

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.

Related

Other agents, from other repositories