← Back to Skills Marketplace
flyptkarsh

HiEnergy Advertiser Intelligence Affiliate Copilot

by Patrick Karsh · GitHub ↗ · v2.2.1 · MIT-0
cross-platform ✓ Security Clean
601
Downloads
1
Stars
1
Active Installs
18
Versions
Install in OpenClaw
/install hienergy-advertiser-intelligence-affiliate-copilot
Description
Official Hi Energy AI skill for finding and managing affiliate marketing programs, affiliate deals/offers, commissions, transactions, and partner contacts in...
README (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
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install hienergy-advertiser-intelligence-affiliate-copilot
  3. After installation, invoke the skill by name or use /hienergy-advertiser-intelligence-affiliate-copilot
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug hienergy-advertiser-intelligence-affiliate-copilot
Version 2.2.1
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 18
Frequently Asked Questions

What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 601 downloads so far.

How do I install HiEnergy Advertiser Intelligence Affiliate Copilot?

Run "/install hienergy-advertiser-intelligence-affiliate-copilot" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is HiEnergy Advertiser Intelligence Affiliate Copilot free?

Yes, HiEnergy Advertiser Intelligence Affiliate Copilot is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does HiEnergy Advertiser Intelligence Affiliate Copilot support?

HiEnergy Advertiser Intelligence Affiliate Copilot is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created HiEnergy Advertiser Intelligence Affiliate Copilot?

It is built and maintained by Patrick Karsh (@flyptkarsh); the current version is v2.2.1.

💬 Comments