Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

icosmos shop

v0.0.1

Shopify 店铺运营/诊断技能:从 Supabase 拉取店铺域名与 token,做装修/产品/结账/指标异常检测,并支持发布引流博文(唯一写操作)。

0· 209·0 current·0 all-time
by王新勇(Tacey Wong)@taceywong·duplicate of @taceywong/icosmos

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for taceywong/icosmos-shop.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "icosmos shop" (taceywong/icosmos-shop) from ClawHub.
Skill page: https://clawhub.ai/taceywong/icosmos-shop
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install icosmos-shop

ClawHub CLI

Package manager switcher

npx clawhub@latest install icosmos-shop
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Suspicious
medium confidence
!
Purpose & Capability
The SKILL.md describes a Shopify diagnostic tool (read-only plus a single blog-publish write action), which is coherent with the skill name. However the doc also says it pulls shop domains and API tokens from Supabase and requires ICOSMOS_USER_EMAIL / ICOSMOS_USER_PASSWORD to 'sync' tokens to a local cache — none of these required credentials or the Supabase endpoint/key are declared in the registry metadata. The need for a user password to read a Supabase-stored token is unexplained and disproportionate without more context.
!
Instruction Scope
Instructions direct the agent to fetch tokens from Supabase, run a locally-present CLI named 'icosmos-shopify', and write tokens to a local cache. There is no guidance about the Supabase connection (URL/keys), where the local cache is stored, or how long tokens persist. While the diagnostic steps themselves are within the stated purpose, the instructions include reading and persisting sensitive secrets (shop tokens) without specifying protections or provenance, and they assume the presence of a local binary that was not provided.
!
Install Mechanism
This is instruction-only and has no install spec, yet the SKILL.md repeatedly references a local CLI ('./icosmos-shopify' or current-dir binary). The registry metadata lists no required binaries. That mismatch is a red flag: the skill will not work unless an external binary is supplied, and there is no secure or reviewed install mechanism or provenance for that binary described.
!
Credentials
Registry metadata declared no required env vars, but SKILL.md requires ICOSMOS_USER_EMAIL and ICOSMOS_USER_PASSWORD (to be saved into system env) and optionally SHOPIFY_API_VERSION. It also implies access to Supabase-held tokens but does not declare or justify Supabase credentials. Requesting a user password stored as an env var and pulling API tokens from an external DB without declaring required secrets is disproportionate and inconsistent.
Persistence & Privilege
The skill does not request 'always: true' and is user-invocable (normal). However SKILL.md instructs syncing tokens to a local cache (persistence) which increases long-term privilege: cached tokens could be reused by the agent later. The document claims log redaction and requires an explicit '--confirm' for publish actions, which are mitigating controls if honestly implemented — but their implementation is not provided here.
What to consider before installing
Do not install or enable this skill yet. Ask the publisher for: (1) source code or an install package and a verifiable origin for the 'icosmos-shopify' binary; (2) exact Supabase connection details (URL, required credentials) and why ICOSMOS_USER_EMAIL/ICOSMOS_USER_PASSWORD are needed; (3) where and how tokens are cached on disk and how long they persist; (4) proof that log redaction and the '--confirm' publish guard are actually enforced. If you must test it, run it in an isolated environment (ephemeral VM/container), avoid setting global env vars for passwords, and provide minimally-scoped Shopify tokens (least privilege). If you cannot get clear answers and source/install provenance, treat the skill as untrusted.

Like a lobster shell, security has layers — review code before you run it.

latestvk97e78rv7v0bn4ewt3ktkb8p2s832t2p
209downloads
0stars
1versions
Updated 2h ago
v0.0.1
MIT-0

icosmos-shopify

面向 OpenClaw 触发的 Shopify 运营能力集合:以只读诊断为主,帮助定位转化/营销/商品问题;唯一写操作是发布 Shopify Blog 文章(需要明确 --confirm)。

触发

  • 适用场景关键词:店铺审计、装修优化、产品优化、结账/checkout 测试、转化下降、营销效果差、发布博客/引流文章。
  • 触发后执行顺序
    1. setup once:用 ICOSMOS_USER_EMAIL / ICOSMOS_USER_PASSWORD 同步店铺与 token 到本地缓存
    2. content/*:拉原始数据(更全面、更可追溯)
    3. audit/* / test checkout:给诊断与验证
    4. blog publish:仅当明确需要发布时执行(必须 --confirm

快速参考

诉求命令
Setup Once:从 Supabase 同步店铺/token 到本地icosmos-shopify setup once
列出店铺icosmos-shopify stores list
获取店铺基础信息(原始数据)icosmos-shopify content shop --store xxx.myshopify.com
获取产品列表(原始数据,分页)icosmos-shopify content products list --store xxx.myshopify.com --first 20 --after <cursor>
获取订单列表(原始数据,时间窗)icosmos-shopify content orders list --store xxx.myshopify.com --start <RFC3339> --end <RFC3339>
获取博客列表/文章(原始数据)icosmos-shopify content blogs list --store xxx.myshopify.com / icosmos-shopify content blogs articles list --store xxx.myshopify.com --blog-id 123
装修检查单(只读)icosmos-shopify audit theme --store xxx.myshopify.com
产品质量诊断(只读)icosmos-shopify audit products --store xxx.myshopify.com --limit 50
结账链路测试(只读)icosmos-shopify test checkout --store xxx.myshopify.com
经营指标与异常线索(只读)icosmos-shopify audit metrics --store xxx.myshopify.com --days 7
发布引流博文(写操作)icosmos-shopify blog publish --store xxx.myshopify.com --blog-id 123 --title ... --body-file article.html --confirm

输出协议(给 OpenClaw 更稳定)

  • 默认推荐 --format jsoncontent/* 默认就是 json),统一结构:
    • store_domain / api_version / meta / data
  • 分页信息
    • GraphQL:meta.page_info.has_next_page/end_cursor
    • REST:meta.page_info.next_link(来自 Link: rel="next"

依赖与配置

  • Setup Onece:

    • ICOSMOS_USER_EMAIL
    • ICOSMOS_USER_PASSWORD

    两个字段需要保存到系统环境变量

    所需命令行工具为当前目录下的icosmos-shopify

Shopify

  • SHOPIFY_API_VERSION(默认 2026-01

安全边界(重要)

  • 默认只读:装修/产品/指标/结账测试均不对 Shopify 做写入。
  • 唯一写操作:发布博客:必须提供 --confirm;否则即使参数齐全也只会 dry-run。
  • 日志脱敏:店铺 token 只显示前后 4 位(abcd...wxyz)。
  • 敏感字段处理:订单 email 等敏感字段默认不输出(或置空),避免在群聊/日志泄露。

常见问题与排障

  • 401/403:Admin token scopes 不足或 token 过期;确认 Shopify Custom App 的 Admin API access token 与权限。
  • 429 Too Many Requests:已做退避重试;如果频繁触发,降低并发/减少拉取字段/缩小时间范围。
  • Storefront 430 Security Rejection:请求可能被判定为异常;需要检查请求来源、token 是否正确,必要时增加更真实的请求头策略(后续增强)。

参考文档

Comments

Loading comments...