RocketRide is an open-source AI development environment and data-pipeline runtime that lets developers compose, debug, observe, and deploy model-based workflows from an IDE or terminal. Its C++ engine runs portable pipelines with extensible nodes for language models, vector databases, document processing, and agent orchestration on the user's infrastructure. The catalogue entries relate to operating and developing with RocketRide's workflows, SDKs, and tooling.
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_pipeline_rulesgit clone --depth 1 https://github.com/rocketride-org/rocketride-serverWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/rocketride-org/rocketride-server/rocketride_pipeline_rules)<a href="https://agentmods.dev/agents/rocketride-org/rocketride-server/rocketride_pipeline_rules"><img src="https://agentmods.dev/badge/agents/rocketride-org/rocketride-server/rocketride_pipeline_rules.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.05844 |
| Opus 5 | $0.00000 | $0.02922 |
| Sonnet 5 | $0.00000 | $0.01169 |
| Haiku 4.5 | $0.00000 | $0.00584 |
Grade A, and why
ROCKETRIDE_PIPELINE_RULES 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 6d 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 — 796 lines — stays where its author put it; the contents beside it link to each section on GitHub.
RocketRide Pipeline Building Rules & Guide
Complete reference for building RocketRide pipelines across any project.
Table of Contents
- Pipeline File Format
- Core Structure
- Components
- Data Lanes
- Configuration Profiles
- Environment Variables
- Connection Rules
- Best Practices
- Common Patterns
- Troubleshooting
- Validation Checklist
Pipeline File Format
File Naming Convention
- Extension:
.pipe(required) - Examples:
chat.pipe,document_processor.pipe,ocr_workflow.pipe - NOT:
.jsonor.pipeline.json
File Structure
{
"components": [
{
"id": "unique_component_id",
"provider": "component_type",
"config": {},
"ui": {},
"input": []
}
],
"project_id": "85be2a13-ad93-49ed-a1e1-4b0f763ca618",
"viewport": { "x": 0, "y": 0, "zoom": 1 },
"version": 1
}
Field ordering matters: components must come first. The project_id, viewport, and version fields go at the bottom. The source field is optional: the VS Code extension manages it automatically.
Core Structure
Required Fields
components (array, required, must be first)
- Array of component objects
- Each component must have a unique
id - Components are connected via
inputarrays - Must be the first field in the JSON object
project_id (string, required, goes at the bottom)
- MUST be a unique GUID for each pipeline file
- Format: Standard UUID/GUID (e.g.,
85be2a13-ad93-49ed-a1e1-4b0f763ca618) - Variable substitution NOT supported - must be a literal GUID
- Placement: Put at the bottom of the JSON, after
components
Why This Requirement:
- Each pipeline must be uniquely identifiable by the RocketRide engine
- The
project_idis read before environment variable substitution occurs - The GUID serves as the permanent identity of the pipeline
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.
- 6d ago First seen · 796 lines · 0 tokens per session scan A 749a811c04e5
ROCKETRIDE_PIPELINE_RULES is an agent published in the GitHub repository rocketride-org/rocketride-server (7,923 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 5,844 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
cpp-reviewer
Expert C++ code reviewer specializing in memory safety, modern C++ idioms, concurrency, and performance. Use for all C++ code changes. MUST BE USED for C++ projects.
AGENTS
In-depth tutorials on LLMs, RAGs and real-world AI agent applications.
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…
Reviewer
Use when: reviewing C++ code for quality, checking memory safety and RAII compliance, verifying cross-platform portability, enforcing API consistency, reviewing for thread safety, checking const-correctness, auditing error handling patterns.
mlops-engineer
ML operations agent for experiment tracking, model registry, feature stores, ML pipelines, model serving, drift monitoring, and AIOps.
cpp-pro
Write idiomatic C++ code with modern features, RAII, smart pointers, and STL algorithms. Handles templates, move semantics, and performance optimization. Use PROACTIVELY for C++ refactoring, memory safety, or complex C++ patterns.