Buck Mason Stylist Skill
Analysis
This is a coherent shopping skill, but it warrants review because optional flows can use email/account tokens and Stripe Link to make purchases while storing or sending sensitive profile and photo data.
Findings (5)
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.
Customer says "just buy it for me, no browser"... Agent runs: `link-cli spend-request create --request-approval --amount <total_cents>`... Phase 2 charge
The skill documents a fully agent-driven purchase path that can charge the user through Stripe Link after approval.
"optional_clis": [{"name": "stripe/link-cli", "install": "npm i -g @stripe/link-cli", "purpose": "MPP fully-agent-driven checkout"}]The optional payment path relies on a globally installed npm CLI, which is user-directed and purpose-aligned but should be installed from a trusted source.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
the agent runs the email + magic-link flow (`POST /api/verify_order_or_email` email sent `POST /api/login_via_token` returns a JWT). **This requires the agent to have a tool that reads the customer's email**
This optional workflow grants the agent mailbox access to retrieve a login link and then an authenticated account token, which can expose order history and account/profile data.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
The customer should keep three plain-text files under their agent's persistent memory or workspace... `profile.md` | sizes per category, fit prefs, color prefs, contact/shipping, home zip, optional reference photo URL
The skill intentionally stores personal sizing, address/contact, wardrobe, event, and photo-reference data in persistent agent-accessible files.
This skill produces... imagery using OpenAI's image API... **Identity anchor photos** (23) | `profile.md` `reference_photos` | Yes
The try-on workflow sends user identity/reference photos through an external image-generation provider, which is expected for the feature but sensitive.
