Tandoor Recipe CLI

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill is coherent for Tandoor management, but it can mutate or administer your Tandoor account and relies on an external npm CLI that is not included or pinned by default.

Review this skill before installing. If you use it, prefer a read-only or minimally scoped Tandoor token, avoid admin/space-owner credentials unless you need household management, pin and verify the npm package, and confirm every write, delete, bulk, or administrative action before allowing the agent to run it.

Findings (3)

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

An agent using this skill could add, change, or delete recipes, meal plans, shopping-list entries, and related Tandoor data if the user approves those actions.

Why it was flagged

The skill intentionally exposes commands that can change or delete Tandoor data. This is disclosed and gated by approval, so it is a purpose-aligned risk note rather than malicious behavior.

Skill content
**Write operations** (add, update, import) modify data... **Destructive operations** (delete, clear, household management) require explicit user approval before execution
Recommendation

Use read-only commands without concern, but require clear confirmation for any write, bulk, delete, or --force operation.

What this means

If given an admin or space-owner token, the agent may be able to manage users, households, and invite links, not just recipe content.

Why it was flagged

Household/user/invite administration requires higher privilege and is broader than the published description of managing recipes, meal plans, and shopping lists.

Skill content
**Administrative operations** (household management, user assignment, invite creation) require privileged credentials and explicit approval
Recommendation

Grant only a read-only or standard user token unless household administration is explicitly needed, and use a separate short-lived admin token for those tasks.

What this means

A changed or compromised npm package version could receive your Tandoor token and perform actions allowed by that token.

Why it was flagged

The executable CLI is not included in the reviewed artifacts, and the setup examples run an external npm package without a pinned version by default. That package would handle the user's Tandoor credentials and mutation authority.

Skill content
npm install -g tandoor-cli ... npx tandoor-cli <command> ... `npx` downloads and runs the CLI on demand
Recommendation

Verify the npm package and repository before use, install a pinned version that matches the skill, and avoid unpinned npx execution with privileged credentials.