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/kornia/bubbaloop/bubbaloop-node-authorgit clone --depth 1 https://github.com/kornia/bubbaloopWhat 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.00086 | $0.01685 |
| Opus 5 | $0.00043 | $0.00843 |
| Sonnet 5 | $0.00017 | $0.00337 |
| Haiku 4.5 | $0.00009 | $0.00169 |
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.
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
- Choose role — sensor (publishes data) / actuator (accepts commands) / processor (transforms streams) / gateway (bridges external systems). One node ≈ one role.
- Scaffold —
bubbaloop node init <name> --type rust|pythoncreatesnode.yaml,Cargo.toml/pixi.toml,src/,tests/. - Implement — use
bubbaloop-sdk(Rust) orbubbaloop_node(Python). Both handle Zenoh session, manifest publishing, heartbeat loop, command queryable. You write only business logic. - Validate —
bubbaloop node validate /path/to/noderuns the manifest schema check + topic-name validator. - Register —
bubbaloop node add /path/to/nodeadds to~/.bubbaloop/nodes.json. - Install systemd —
bubbaloop node install <name>creates the systemd unit. Note: thenode_installMCP tool currently only does the registry-add step, not the systemd-install — see alignment-notes gap #11. - Test —
bubbaloop daemon run, thennode_start <name>via MCP, thennode_health, then exercise commands withnode_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
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.
- yesterday First seen · 130 lines · 86 tokens per session scan A f5a033958fcc
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.
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…
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.
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.
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.
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.
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…