ROCKETRIDE_PIPELINE_RULES

ROCKETRIDE_PIPELINE_RULES is an agent for Claude Code from rocketride-org/rocketride-server. It costs 0 tokens per session (5,844 once invoked), scanned A, original, MIT.

A reference guide for creating RocketRide pipeline files, which define connected processing steps, in the required .pipe format.

In plain words
What is it for?
Use it when building, configuring, connecting, or troubleshooting RocketRide workflows such as chat, document processing, or OCR pipelines.
Why use it?
It prevents invalid pipeline files by documenting required fields, ordering, components, data connections, configuration, environment variables, and validation rules.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

About the project

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.

rocketride-org/rocketride-server · 7,923 stars · on GitHub

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_pipeline_rules
Clone the repo
git clone --depth 1 https://github.com/rocketride-org/rocketride-server

Made for: Claude Code.

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

agentmods badge for ROCKETRIDE_PIPELINE_RULES

README.md
[![agentmods](https://agentmods.dev/badge/agents/rocketride-org/rocketride-server/rocketride_pipeline_rules.svg)](https://agentmods.dev/agents/rocketride-org/rocketride-server/rocketride_pipeline_rules)
Your own site
<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>
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 5,844 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.1 $0.00000 $0.05844
Opus 5 $0.00000 $0.02922
Sonnet 5 $0.00000 $0.01169
Haiku 4.5 $0.00000 $0.00584

Measured 6d ago against content hash 749a811c04e5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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.

docs/agents/ROCKETRIDE_PIPELINE_RULES.md · 796 lines

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

File Naming Convention

  • Extension: .pipe (required)
  • Examples: chat.pipe, document_processor.pipe, ocr_workflow.pipe
  • NOT: .json or .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 input arrays
  • 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_id is read before environment variable substitution occurs
  • The GUID serves as the permanent identity of the pipeline

Read the full file on GitHub · 796 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. 6d ago First seen · 796 lines · 0 tokens per session scan A 749a811c04e5

Subscribe to this mod's changes

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.

Related

Other agents, from other repositories