AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Rondoflow Canvas Node

skill-rondoflow-rondoflow-rondoflow-canvas-node · by rondoflow

Add, modify, or debug a canvas node type in RondoFlow (agent, skill, policy, resource, mcp, condition, structurer, db-save, http-request, duckduckgo-search, template, email, output, note). Use when changing node behavior or how a node participates in a workflow run — especially to avoid the interactive-vs-scheduled execution drift.

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add skill-rondoflow-rondoflow-rondoflow-canvas-node

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-rondoflow-rondoflow-rondoflow-canvas-node)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Rondoflow Canvas Node? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

RondoFlow Canvas Nodes

A workflow is a React Flow graph that gets compiled into an ordered/branched list of execution steps. The critical thing to know: there are two independent compilers, and a node that only one of them understands works in one run path and is silently dropped in the other.

The two run paths (keep them in sync!)

| Path | Compiler | Trigger | |------|----------|---------| | Interactive (user clicks Run in the canvas) | packages/ui/src/lib/chain-utils.ts | browser → socket | | Headless / scheduled (Scheduler, cron, API) | packages/server/src/engine/canvas-chain.ts | server-side |

Both turn { nodes, edges } into steps for chain-executor.ts, but they are separate codebases that must agree. They have already drifted:

  • chain-utils.ts (UI) treats `'agent' | 'structurer' | 'db-save' | 'http-request' |

'duckduckgo-search' as executable steps (see its StepNodeType union, ~L10 and the nodeType` mapping ~L249-266).

  • canvas-chain.ts (server) only recognizes 'agent' | 'structurer' | 'db-save'

(the executable filter ~L118). http-request and duckduckgo-search are NOT compiled server-side, so they run interactively but vanish from scheduled runs.

> ⚠️ Whenever you add or change an executable node type, edit BOTH chain-utils.ts and > canvas-chain.ts. If you only touch one, the node will work in one run path and silently > no-op in the other. This is the single most common bug class for nodes.

Where each piece lives

packages/shared/src/canvas.ts                       # node/edge/data TYPES (shared contract)
packages/ui/src/components/canvas/nodes/*.tsx        # React Flow node components (visuals + editing)
packages/ui/src/components/canvas/canvas-palette.tsx # drag-to-canvas palette entry
packages/ui/src/lib/chain-utils.ts                   # UI compiler: graph → steps (interactive)
packages/server/src/engine/canvas-chain.ts           # server compiler: graph → steps (headless)
packages/server/src/engine/chain-executor.ts         # DAG runner (parallel branches), both paths
packages/server/src/engine/-runner.ts          # per-kind execution (agent-runner, http-request-runner, duckduckgo-search-runner, ...)

Node kinds seen in the UI today: agent, skill, policy, resource, mcp, start, condition, structurer, db-save, http-request, duckduckgo-search, template-text, email, output, sticky-note.

Node roles

  • Executable stepsagent (spawns Claude Code CLI) and the transform nodes

(structurer, db-save, http-request, duckduckgo-search) produce output and pass it downstream. These are what both compilers must list.

  • Attachment nodesskill, policy, resource, mcp configure a connected agent

rather than executing themselves.

  • Control flowcondition routes on an agent's last output line; it compiles to grouped

exclusive edges so the run path branches instead of linearising the DAG.

  • Sinksoutput (captures result) and email (sends combined output via SMTP, only when

data.enabled).

  • Annotationsticky-note (no execution).

Checklist: adding a new executable node type

  1. Type — add the node-data shape + kind to packages/shared/src/canvas.ts.
  2. Component — create packages/ui/src/components/canvas/nodes/-node.tsx; register it

in the React Flow nodeTypes map and add it to canvas-palette.tsx.

  1. UI compiler — handle the kind in chain-utils.ts (StepNodeType + the nodeType/config

mapping).

  1. Server compiler — handle the kind in canvas-chain.ts (executable filter + step mapping).

Mirror step 3 exactly.

  1. Runner — add packages/server/src/engine/-runner.ts and dispatch to it from

chain-executor.ts.

  1. i18n — any visible label goes through the canvas namespace in all three locales

(see the rondoflow-i18n skill).

  1. Tests — extend chain-executor.test.ts / chain-utils.test.ts.

Verify

cd packages/server && npx vitest run src/engine/__tests__/chain-executor.test.ts
cd packages/ui && npx vitest run src/lib/__tests__/chain-utils.test.ts

Sanity check for drift — the executable node kinds should match between the two compilers:

grep -nE "structurer|db-save|http-request|duckduckgo-search" \
  packages/ui/src/lib/chain-utils.ts \
  packages/server/src/engine/canvas-chain.ts

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.