Bring Recipes

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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.

What this means

If installed and used, the CLI would rely on the user's Bring login details, so the user should trust the code and avoid exposing these environment variables.

Why it was flagged

The skill instructs users to provide Bring account credentials via environment variables. This is expected for accessing Bring personal recipe data, but it is sensitive authority and is not reflected in the registry's declared credentials.

Skill content
export BRING_EMAIL="your@email.com"
export BRING_PASSWORD="yourpassword"
Recommendation

Use a dedicated or least-sensitive account if possible, avoid saving the password in shared shell profiles, and verify the actual CLI code/dependencies before entering credentials.

What this means

A user following the instructions may install and run code that is not included in the reviewed artifact set.

Why it was flagged

The instructions direct a user to install Node dependencies for a CLI, and the same file references node-bring-api v2.0.2+. This is normal for a CLI skill, but the submitted artifacts include only SKILL.md, so the actual package contents are not visible here.

Skill content
cd skills/bring-recipes
npm install
Recommendation

Before running npm install or node index.js, inspect the package files and dependency versions from the actual installed source.