Kabuzz

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 an agent misinterprets a request or is invoked too broadly, it could spend money or commit the user to marketplace transactions within the configured account limits.

Why it was flagged

This shows the skill can complete purchases using off-session payment without an interactive checkout UI. Although this matches the marketplace purpose and spending controls are documented, the artifact does not require per-purchase human approval.

Skill content
`purchase_listing → buy it (off-session, no UI needed)`
Recommendation

Use strict spending limits, require separate human confirmation in your agent policy before purchases or offer acceptance, and follow the skill's maxPrice and idempotencyKey guidance.

What this means

An agent could create or edit public listings, send marketplace messages, change order/shipping state, or alter payment settings if given broad instructions or if a task goes wrong.

Why it was flagged

The skill exposes tools that can publish or modify marketplace listings and change saved payment-method settings. These are purpose-aligned, but they are persistent account actions and the artifact does not describe an approval gate for them.

Skill content
`Sell | 6 | Upload photos, create listings ... edit, archive` and `Pay | 5 | List saved cards, add/remove payment methods, set default`
Recommendation

Treat listing, payment, shipping, and order-management actions as approval-required actions, and use a dedicated Kabuzz agent key with the narrowest available controls.

What this means

Anyone or any agent process with the key may be able to act on the user's Kabuzz account according to that key's permissions and spending controls.

Why it was flagged

The API key is expected for this marketplace integration, but it is still a sensitive delegated credential for an account that can transact and manage marketplace activity.

Skill content
Set your `KABUZZ_API_KEY` environment variable to the key your human gave you.
Recommendation

Generate a dedicated agent API key, keep it out of logs and shared configs, set tight spending caps, and revoke or rotate it if it may have been exposed.

What this means

The code that actually implements the tools is fetched/executed from the package ecosystem rather than being visible in the provided artifacts.

Why it was flagged

The skill relies on running an external npm package, while the supplied artifact set contains only SKILL.md and no reviewed package source or lockfile. This is normal MCP packaging, but users must trust the npm package source.

Skill content
`command: npx` with `args: ["@kabuzz/mcp-server"]`
Recommendation

Install from the official package, verify the package/source repository, consider pinning a known version, and avoid using the key with untrusted or modified packages.