← Back to Skills Marketplace
linhai806806-cell

品牌分析师(Zeelin付费版)

by linhai806806-cell · GitHub ↗ · v1.0.2 · MIT-0
cross-platform ⚠ suspicious
92
Downloads
0
Stars
0
Active Installs
3
Versions
Install in OpenClaw
/install brand-analyzer-zeelin
Description
品牌分析 Skill(零配置版)。用户仅需提供 Zeelin App-Key 和品牌名,调用服务端封装接口生成品牌底座;计费在服务端完成(成功扣50额度,失败不扣费)。
README (SKILL.md)

隐私与透明度

  • 服务提供方:Brand Analyzer API
  • 计费平台:智灵 Skill 平台(https://skills.zeelin.cn)
  • 数据处理:用户输入的品牌名/查询文本(可选附件)会发送到服务端生成品牌底座
  • 敏感信息:网关密钥、计费逻辑、skill_id 均在服务端,不在本 Skill 包中分发

使用时机

当用户需要:

  • 品牌底座、品牌分析、品牌定位梳理
  • 竞品格局、用户画像、品牌调性总结
  • 从品牌名快速产出结构化品牌报告

不适合:图片生成、代码生成、视频制作、纯数据爬虫任务。


计费规则

  • 每次成功生成品牌底座扣 50 额度
  • 失败不扣费
  • 用户需在智灵平台创建并充值 App-Key

第一步(强制):索取用户 App-Key

在任何生成动作前,先向用户索取 App-Key:

开始前需要先验证你的智灵账户额度。请提供你的 App-Key。

如果用户未提供 App-Key,停止后续流程。


第二步:调用品牌分析接口(服务端封装)

固定接口地址(发布前必须替换为你的稳定正式域名)

https://following-hull-easy-interactions.trycloudflare.com

2-A. 常规请求(品牌名必填)

POST https://following-hull-easy-interactions.trycloudflare.com/v1/brand-analyzer/generate

Headers:

  • App-Key: \x3C用户App-Key>

Body (multipart/form-data):

  • brand_name (必填)
  • query (选填)

2-B. 附件策略(可用则传,失败降级)

  • 若客户端支持附件上传:额外传 file
  • 若上传失败或客户端不支持:自动降级为仅 brand_name + query 并告知用户“已降级执行”

第三步:处理返回

成功

当返回 code=200

  • 输出 data.markdown 作为主结果
  • 补充提示:本次生成成功,消耗 50 额度,剩余额度 data.remain_calls

失败

code!=200

  • 直接使用 message 给用户可执行提示
  • 常见场景:
    • 402:余额不足,提示前往智灵充值
    • 404:App-Key 无效,提示检查 Key
    • 500:服务异常,提示稍后重试

安全边界

  • 本 Skill 不包含核心业务逻辑与计费实现。
  • 所有扣费链路均在服务端执行:detail -> business -> cost(50)
  • 不在 Skill 包内暴露网关 key、内部提示词、skill_id。
Usage Guidance
Do not provide your Zeelin App-Key to this skill until you verify the backend. Specific things to check before using/installing: 1) Confirm the API host: ask the publisher for an official, stable HTTPS domain (preferably under zeelin.cn or another vendor-controlled domain) and compare it against Zeelin's official docs. The SKILL.md currently contains a placeholder Cloudflare Workers URL — that is a red flag. 2) Ask the author why the placeholder was not replaced and request a verifiable service owner and privacy/billing terms. 3) If you must test, create a scoped/test App-Key with minimal permissions/funds and no sensitive data, and revoke it afterward. 4) Avoid uploading sensitive attachments through this skill until the backend is confirmed trusted. 5) Prefer integrations that use documented, official endpoints (and preferably OAuth or per-integration credentials rather than uploading your main API key to an opaque host). If the publisher cannot provide a clear, official backend domain and billing guarantee, treat the skill as untrusted.
Capability Analysis
Type: OpenClaw Skill Name: brand-analyzer-zeelin Version: 1.0.2 The skill bundle instructs the AI agent to collect a user's 'App-Key' (a credential) and transmit it to a temporary Cloudflare tunnel URL (following-hull-easy-interactions.trycloudflare.com) instead of an official service domain. While SKILL.md and deploy_notes.md claim this is for the 'Zeelin' brand analysis platform (zeelin.cn), the use of an anonymous tunnel for credential collection is a high-risk indicator for potential phishing or credential harvesting. The deployment notes suggest the URL should be replaced before publication, but its presence in a versioned bundle is highly irregular.
Capability Assessment
Purpose & Capability
The declared purpose (brand analysis via Zeelin App-Key) is plausible for asking the user to provide an App-Key and calling a backend API. However the SKILL.md references a Cloudflare-workers domain (following-hull-easy-interactions.trycloudflare.com) rather than the claimed Zeelin billing host (skills.zeelin.cn) — the skill even says the API host must be replaced before publishing but the published SKILL.md still contains the placeholder. This discrepancy is unexpected for a published Zeelin-branded integration.
Instruction Scope
Instructions require the agent to prompt the user for their App-Key and then send that key plus brand data (and optionally attachments) to the specified external endpoint. Sending user credentials (App-Key) to an external host is expected for a third-party integration only if the endpoint is the official service; here the endpoint is an opaque trycloudflare.com host. The instructions do not constrain what the backend may do with the App-Key (beyond a prose claim that billing happens server-side).
Install Mechanism
This is an instruction-only skill with no install steps or code to write to disk, which is the lowest-risk install model.
Credentials
Although the skill requests no environment variables or local credentials, it explicitly instructs the agent to collect the user's Zeelin App-Key and transmit it to the specified host. Requiring the user's App-Key is reasonable for an API-backed service, but the lack of an official/verified endpoint and the use of a trycloudflare.com domain makes this request disproportionate without further verification.
Persistence & Privilege
The skill is not always-enabled and does not request elevated agent privileges or modification of other skills. Autonomous invocation is allowed (platform default) but does not combine here with other high privileges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install brand-analyzer-zeelin
  3. After installation, invoke the skill by name or use /brand-analyzer-zeelin
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.2
No major updates—documentation and wording adjustments only. - Removed详细的“App-Key”校验接口描述,简化第一步说明。 - 优化生成成功后的用户提示语(补充“本次生成成功”)。 - 无功能或接口变动,仅文案精简与改善。
v1.0.1
Version 1.1.0 summary: Migrated to a more secure, transparent, and user-friendly brand analysis workflow; simplified client logic. - Removed scripts/remote_api_client.py; all brand analysis logic now relies on remote server APIs. - Now requires users to enter a Zeelin App-Key before any action; key is verified server-side. - Updated and expanded documentation: clarified privacy, security, billing, and step-by-step usage. - Described explicit error handling and attachment (file) upload downgrade logic. - Added tags, version, author, and license metadata for improved discoverability and compliance.
v1.0.0
Protected package release: - Switched to client-only skill package for ClawHub distribution. - Removed local core business logic from published files. - Added remote API caller script (`scripts/remote_api_client.py`) to invoke hosted endpoint only. - Kept Zeelin billing flow (detail -> generate -> cost=50) on server side only. - Removed sensitive/local config artifacts from publish package. - Updated SKILL documentation with required runtime variables and usage examples.
Metadata
Slug brand-analyzer-zeelin
Version 1.0.2
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 3
Frequently Asked Questions

What is 品牌分析师(Zeelin付费版)?

品牌分析 Skill(零配置版)。用户仅需提供 Zeelin App-Key 和品牌名,调用服务端封装接口生成品牌底座;计费在服务端完成(成功扣50额度,失败不扣费)。 It is an AI Agent Skill for Claude Code / OpenClaw, with 92 downloads so far.

How do I install 品牌分析师(Zeelin付费版)?

Run "/install brand-analyzer-zeelin" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 品牌分析师(Zeelin付费版) free?

Yes, 品牌分析师(Zeelin付费版) is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 品牌分析师(Zeelin付费版) support?

品牌分析师(Zeelin付费版) is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 品牌分析师(Zeelin付费版)?

It is built and maintained by linhai806806-cell (@linhai806806-cell); the current version is v1.0.2.

💬 Comments