Clawflows
Analysis
Clawflows is a disclosed workflow runner, but it deserves review because it can install and run external automations that chain other skills and potentially perform high-impact actions.
Findings (4)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
"Search, install, and run multi-skill automations ... with logic, conditions, and data flow between steps"; standard capabilities include "calendar | Read/write events" and "email | Send/receive email".
The skill's core function is to execute workflows that chain other tools/capabilities, including ones that can mutate user data or send messages.
`npm i -g clawflows`; `clawflows install youtube-competitor-tracker` downloads to `./automations/youtube-competitor-tracker.yaml`.
The skill depends on an external npm package and external registry-provided automation definitions. That is purpose-aligned, but it makes package and workflow provenance important.
`capture: videos` followed by `method: upsert` with `data: "${videos}"`.The example shows outputs from one step being reused by later steps, including a database write. This is normal for workflows, but bad or unexpected upstream data can propagate.
`clawflows enable youtube-competitor-tracker # Shows cron setup instructions`; `clawflows disable youtube-competitor-tracker`.
The skill documents a scheduling path that can make automations recur through cron, although it is presented as user-directed and includes a disable command.
