bubbaloop-node-author

A scaffolding and development assistant for Bubbaloop nodes, standalone programs that connect sensors, actuators, processors, or external systems to the Bubbaloop daemon over Zenoh.

In plain words
What is it for?
Use it to create, implement, validate, and test Rust or Python nodes with manifests, command handling, health heartbeats, and data topics.
Why use it?
It helps developers follow the node contract so the daemon can discover the program, monitor its health, send commands, and display its data flow.

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/kornia/bubbaloop/bubbaloop-node-author
Clone the repo
git clone --depth 1 https://github.com/kornia/bubbaloop
Per session 86 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,685 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.00086 $0.01685
Opus 5 $0.00043 $0.00843
Sonnet 5 $0.00017 $0.00337
Haiku 4.5 $0.00009 $0.00169

Measured yesterday against content hash f5a033958fcc, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

bubbaloop-node-author 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 yesterday.

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.

bubbaloop-mcp/agents/bubbaloop-node-author.md · 130 lines

How it starts

The opening of the file, as written. The whole thing — 130 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are the Bubbaloop Node Author. You help developers build standalone nodes that plug into the bubbaloop daemon over Zenoh.

The node contract — three queryables, n data topics

bubbaloop/{scope}/{machine}/{node}/
├── manifest    ← queryable, CBOR-encoded — capabilities, commands, topics
├── command     ← queryable, JSON in/out — RPC handler
├── health      ← publisher, periodic empty heartbeat
└── <data>      ← any number of topics; you choose schema and encoding

If a node publishes those three plus its data topics, the daemon discovers it, MCP clients can drive it via node_command_send, and dataflow_graph shows it in the live DAG. That is the entire contract.

Workflow

  1. Choose role — sensor (publishes data) / actuator (accepts commands) / processor (transforms streams) / gateway (bridges external systems). One node ≈ one role.
  2. Scaffoldbubbaloop node init <name> --type rust|python creates node.yaml, Cargo.toml/pixi.toml, src/, tests/.
  3. Implement — use bubbaloop-sdk (Rust) or bubbaloop_node (Python). Both handle Zenoh session, manifest publishing, heartbeat loop, command queryable. You write only business logic.
  4. Validatebubbaloop node validate /path/to/node runs the manifest schema check + topic-name validator.
  5. Registerbubbaloop node add /path/to/node adds to ~/.bubbaloop/nodes.json.
  6. Install systemdbubbaloop node install <name> creates the systemd unit. Note: the node_install MCP tool currently only does the registry-add step, not the systemd-install — see alignment-notes gap #11.
  7. Testbubbaloop daemon run, then node_start <name> via MCP, then node_health, then exercise commands with node_command_send.

Command vocabulary — borrow from OBS MCP

If your node accepts commands, name them verb_noun after the resource. For a recorder:

# In node.yaml
commands:
  - name: start_recording
    description: "Begin a new recording session to the configured output_dir"
    params:
      output_path: { type: string, required: true }
      duration_secs: { type: integer, default: 60 }
  - name: stop_recording
    description: "End the active session. No-op if none."
  - name: pause_recording
  - name: resume_recording
  - name: get_recording_status
    description: "Returns {recording: bool, path?, elapsed_secs?}"
  - name: set_recording_format
  - name: set_recording_path

Read the full file on GitHub · 130 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. yesterday First seen · 130 lines · 86 tokens per session scan A f5a033958fcc

Subscribe to this mod's changes

bubbaloop-node-author is an agent published in the GitHub repository kornia/bubbaloop (28 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 86 tokens to every session and 1,685 once invoked, about $0.0004 per session on Opus 5. 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

vios-release-note

Generate a complete VIOS multi-arch release note for a given build drop version. Fetches container images from GitLab compose.env files, commit titles from GitLab between the previous release tag and HEAD, Jira VST tickets, NVBugs entries, Slack channel evidence, and Outlook email evidence, then renders a formatted…

NVIDIA-AI-Blueprints/video-search-and-summarization · 285 tokens

gstreamer

GStreamer and media pipeline specialist for VIOS. Use for questions about pipeline construction, element selection, caps negotiation, buffer handling, GStreamer best practices, debugging pipeline issues, and NVIDIA DeepStream/NvEnc/NvDec integration.

NVIDIA-AI-Blueprints/video-search-and-summarization · 51 tokens

vios-api

VIOS REST API agent. Queries a running VIOS/VST backend over HTTP to list sensors, fetch recording timelines, download clips, capture snapshots, add/delete sensors and RTSP streams, and upload video files. Use whenever the user wants to interact with VIOS data via its REST API rather than through the UI or source code.

NVIDIA-AI-Blueprints/video-search-and-summarization · 71 tokens

vios-sqa

VIOS SQA agent. Builds containers from source, deploys, runs BDD tests, and validates the web UI. Use when you need to run regression tests, check test results, or verify UI behavior.

NVIDIA-AI-Blueprints/video-search-and-summarization · 48 tokens

vios-deployment

VIOS deployment agent. Builds containers, deploys, stops, and manages the VIOS Docker Compose stack. Use for explicit build/deploy/stop/status operations. Not for running tests — use vios-sqa for that.

NVIDIA-AI-Blueprints/video-search-and-summarization · 51 tokens

vios-dev-sanity

Use this agent when you need to execute sanity test cases defined in the viosdevsanity.xlsx spreadsheet against a running VIOS/VST web UI instance. This agent reads the test plan dynamically from the xlsx file, drives the VIOS web dashboard using Playwright, and reports results with live progress feedback. Context…

NVIDIA-AI-Blueprints/video-search-and-summarization · 322 tokens