← 返回 Skills 市场
flyptkarsh

HiEnergy Advertiser Intelligence Affiliate Copilot

作者 Patrick Karsh · GitHub ↗ · v2.2.1 · MIT-0
cross-platform ✓ 安全检测通过
601
总下载
1
收藏
1
当前安装
18
版本数
在 OpenClaw 中安装
/install hienergy-advertiser-intelligence-affiliate-copilot
功能描述
Official Hi Energy AI skill for finding and managing affiliate marketing programs, affiliate deals/offers, commissions, transactions, and partner contacts in...
使用说明 (SKILL.md)

Hi Energy AI

Use this skill to find and manage affiliate marketing programs and affiliate deals, plus related advertisers, transactions, and partner contacts from HiEnergy data.

Access model (important)

  • HiEnergy issues API keys per user.
  • Your API key gives access to the same data you can see in the HiEnergy web app.
  • Pro users can see additional fields/data, especially around advertiser status and contacts.

Security + credentials

  • Primary credential: HIENERGY_API_KEY
  • Accepted alias: HI_ENERGY_API_KEY
  • Required env var: HIENERGY_API_KEY (or HI_ENERGY_API_KEY)
  • Runtime host: https://app.hienergy.ai only
  • Homepage: https://www.hienergy.ai
  • Source: https://github.com/HiEnergyAgency/open_claw_skill

Setup

export HIENERGY_API_KEY="\x3Cyour_api_key>"
# optional alias
export HI_ENERGY_API_KEY="$HIENERGY_API_KEY"
pip install -r requirements.txt

Tip: copy .env.example to .env for local development, then export from it in your shell.

Quick usage

from scripts.hienergy_skill import HiEnergySkill

skill = HiEnergySkill()
advertisers = skill.get_advertisers(search="fitness", limit=10)
programs = skill.get_affiliate_programs(search="supplements", limit=10)
contacts = skill.get_contacts(search="john", limit=10)
answer = skill.answer_question("Research top affiliate programs for supplements")

Power prompts (copy/paste)

  • "Find top affiliate programs for [vertical] with commission >= 10%."
  • "Show active affiliate deals for [brand/category] and rank by payout potential."
  • "Find partner contacts for [advertiser] and summarize next outreach filters."

Intent routing

  • Advertiser search by name → get_advertisers
  • Advertiser search by domain/url → get_advertisers_by_domain
  • Advertiser detail/profile → get_advertiser_details
  • Affiliate program lookup → get_affiliate_programs
  • Affiliate program ranking/research → research_affiliate_programs
  • Deals/offers → find_deals (supports active, exclusive, country filters)
  • Transactions/reporting → get_transactions (supports date range, advertiser, network, currency filters + sorting)
  • Contacts → get_contacts
  • Status changes (approvals/rejections) → get_status_changes (supports from/to status, advertiser filters)
  • Publisher details → get_publisher
  • Publisher update → update_publisher (admin/publisher)
  • Contact create/replace → create_contact, replace_contact (admin/publisher)
  • Agency/client management → get_agencies (supports agency_id filter if applicable)
  • Tag/Category search → search_tags
  • Advertisers by Tag → get_tag_advertisers (supports sort by sales/commissions)
  • Contact discovery (API search only) → get_contacts (filters by name/email/advertiser_id that already exist in HiEnergy)

Response rules

  • Start every query with an immediate acknowledgment line in plain language, e.g. Looking for cbd programs in affiliate programs... before returning results.
  • Include a short Tips: line in responses to teach users what they can search (advertisers, programs, deals/offers, transactions, contacts + useful filters).
  • For program research, normalize commission formats (percent, percent range, flat CPA) and clearly label commission type in results.
  • Keep summaries concise and data-grounded.
  • Use tight filters before broad scans (search, category, advertiser_id, limit).
  • For advertiser list responses, offer deeper detail; if user says yes, call get_advertiser_details.
  • If no matches, suggest adjacent search terms.
  • Prefer this response shape for consistency:
    • Summary:
    • Top Results:
    • Next Filter:

Reliability rules

  • Treat API failures as recoverable and explain clearly.
  • Handle 429 rate limits with a friendly retry hint.
  • Use safe mode defaults for chat (limit=20) and increase only when requested.
  • Never invent programs, deals, contacts, or metrics.

ClawHub discoverability tags

Use these tags when publishing to improve search ranking: affiliate-marketing,affiliate-network,affiliate-program-management,affiliate-program-discovery,affiliate-program-search,affiliate-deal-discovery,affiliate-deals,deals-feed,deal-feed,offer-feed,offers,deal-management,partner-marketing,commission-analysis,advertiser-intelligence,advertiser-search,advertiser-discovery,brand-search,brand-intelligence,publisher-contacts,transactions,performance-marketing,impact,rakuten,cj,awin,shareasale,partnerize,webgains,tradedoubler,admitad,avantlink,flexoffers,skimlinks,sovrn,pepperjam,optimise,linkconnector,tune,everflow,refersion,hienergy,hi-energy-ai

Resources

  • scripts/hienergy_skill.py — API client and Q&A helper
  • scripts/create_contact.py — CLI for creating contacts (admin only)
  • references/endpoints.md — endpoint map and usage hints
安全使用建议
This skill appears to be a straightforward HiEnergy API client and only asks for your HiEnergy API key. Before installing: 1) Verify the source repo (SKILL.md points to a GitHub URL) if you need stronger assurance. 2) Use a least-privilege API key (avoid giving admin-level keys unless you need create/update features). 3) Be cautious running the provided debug scripts — they print API responses which can include sensitive data. 4) Rotate the API key if you ever accidentally expose it. If you want higher assurance, inspect the full scripts/release helper yourself or fetch the skill directly from the vendor's public GitHub repository linked in the metadata.
功能分析
Type: OpenClaw Skill Name: hienergy-advertiser-intelligence-affiliate-copilot Version: 2.2.1 The skill bundle is a comprehensive integration for the HiEnergy AI affiliate marketing platform. The core logic in `scripts/hienergy_skill.py` is well-implemented, featuring input validation to prevent path traversal and SSRF by restricting API calls to the official `https://app.hienergy.ai` domain. While the bundle contains numerous development leftovers and debug scripts (e.g., `scripts/find_sleep_number_bob_loblaws.py`), these files only demonstrate API usage and contain no malicious logic, data exfiltration, or unauthorized execution. The `SKILL.md` instructions are strictly functional and do not contain prompt-injection attacks against the AI agent.
能力评估
Purpose & Capability
Name/description map to code and SKILL.md: client methods call HiEnergy endpoints under https://app.hienergy.ai. The only required secret is HIENERGY_API_KEY which is appropriate for the stated API functionality.
Instruction Scope
SKILL.md restricts runtime host to app.hienergy.ai and documents API usage and response formatting. Several included debug scripts print API responses for local debugging (which can surface sensitive data if run). The SKILL.md does not instruct reading unrelated system files or other environment secrets.
Install Mechanism
No install spec; requirements.txt only lists requests. There are no remote downloads or archive extracts. The lack of a formal install spec despite bundled code is odd but not dangerous.
Credentials
Only HIENERGY_API_KEY (with alias HI_ENERGY_API_KEY) is required. Some client functions (create/replace contact, update_publisher) imply admin-level API permissions — that's expected but users should not provide a highly privileged key to untrusted agents.
Persistence & Privilege
Skill is not always-enabled and does not request elevated platform persistence or modify other skills. It runs as a normal, user-invocable skill.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install hienergy-advertiser-intelligence-affiliate-copilot
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /hienergy-advertiser-intelligence-affiliate-copilot 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2.2.1
Align SKILL docs with actual capabilities and sanitize debug utilities (relative sys.path + no API key logging).
v2.2.0
Adds status-change + agency + tag endpoints, richer deal/transaction filters, and new debug harnesses for the HiEnergy API.
v2.1.2
Improve ClawHub listing metadata and README positioning
v2.1.1
Version bump for latest MCP release
v2.1.0
Add MCP transport, docs, and JSON-RPC tests
v2.0.0
Added Deals, Status Changes, Agencies, Tags, Contact Discovery endpoints.
v1.3.0
Added Deals, Status Changes, Agencies, Tags, Contact Discovery endpoints.
v1.2.0
Added new endpoints for Publisher, Contacts, and Status Changes, plus improved intent routing.
v1.1.0
Added search tips, immediate intent preface, and normalized commission parsing/explanations.
v1.0.9
Expand tags for affiliate marketing, advertiser search, and deals feed discovery.
v1.0.8
Rename skill display name to Hi Energy AI.
v1.0.7
Add expanded affiliate network tags for ClawHub discoverability.
v1.0.6
Release 1.0.6: metadata coherence fixes, security hardening, improved SKILL readability, safer defaults, and ClawHub discoverability updates.
v1.0.5
Metadata/security hardening, readability improvements, safe defaults, and better ClawHub discoverability.
v1.0.3
Fix registry metadata coherence: declare homepage + primary/required API key env in SKILL frontmatter for security scan alignment.
v1.0.2
Security metadata and CI hardening: explicit credential/env/source metadata, lint+test workflow, Bandit + pip-audit checks, and safer request validation.
v1.0.1
Metadata and publish flow fixes.
v1.0.0
Initial public release by HiEnergy Agency. Adds advertiser intelligence, affiliate research, contacts, deals, and transaction workflows.
元数据
Slug hienergy-advertiser-intelligence-affiliate-copilot
版本 2.2.1
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 18
常见问题

HiEnergy Advertiser Intelligence Affiliate Copilot 是什么?

Official Hi Energy AI skill for finding and managing affiliate marketing programs, affiliate deals/offers, commissions, transactions, and partner contacts in... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 601 次。

如何安装 HiEnergy Advertiser Intelligence Affiliate Copilot?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install hienergy-advertiser-intelligence-affiliate-copilot」即可一键安装,无需额外配置。

HiEnergy Advertiser Intelligence Affiliate Copilot 是免费的吗?

是的,HiEnergy Advertiser Intelligence Affiliate Copilot 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

HiEnergy Advertiser Intelligence Affiliate Copilot 支持哪些平台?

HiEnergy Advertiser Intelligence Affiliate Copilot 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 HiEnergy Advertiser Intelligence Affiliate Copilot?

由 Patrick Karsh(@flyptkarsh)开发并维护,当前版本 v2.2.1。

💬 留言讨论