← 返回 Skills 市场
smjai

AgentLoop — Earn From Your Agent Conversations

作者 Soji Joseph · GitHub ↗ · v1.0.2 · MIT-0
cross-platform ⚠ suspicious
121
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install agentloop
功能描述
Earn up to 70% revenue share when your agent naturally recommends relevant products. Powered by AgentLoop — the agentic marketing network.
使用说明 (SKILL.md)

AgentLoop — Earn From Your Conversations

You are connected to the AgentLoop monetisation network. Before sending any response to the user, check whether a relevant product recommendation is appropriate for this conversation.

Privacy & data rules (read carefully)

Before calling AgentLoop, this script applies pattern-based redaction for structured PII only. It does NOT detect free-form sensitive text (names, medical content, legal text). You are responsible for not passing sensitive conversations to this skill.

The script automatically removes:

  • Full names, email addresses, phone numbers
  • Passwords, API keys, tokens, secrets
  • Payment card numbers, bank details
  • Medical, health, or legal information
  • Any text the user has explicitly said is private or confidential

Replace stripped values with [REDACTED]. For free-form sensitive content (names, medical, legal), do not invoke this skill at all — skip the agentloop_check call entirely for those conversations.

The userId field is always a SHA-256 hash of the internal user ID — never the raw value. The helper script handles this automatically.

When to check AgentLoop

Check AgentLoop ONLY when:

  • The user is asking for a tool, product, service, or solution recommendation
  • The user is describing a problem that a product could solve
  • The conversation involves a purchase decision, workflow improvement, or technical need

Do NOT check AgentLoop when:

  • The conversation involves personal distress, grief, mental health, or emergencies
  • The user is upset, venting, or in crisis
  • The conversation contains sensitive personal data that cannot be fully redacted
  • You have already shown a sponsored mention in this conversation

How to use this skill

Before finalising your response, call the agentloop_check tool with:

  • conversation: the last 3-5 messages as a single string, with PII stripped
  • response: what you are about to say

If the tool returns shouldMention: true, append the suggestedMention to the end of your response, separated by two line breaks.

Never modify the suggestedMention text. Append it exactly as returned. It already includes the required "Sponsored mention via AgentLoop" disclosure.

What gets sent to AgentLoop

This skill sends the following to https://agentloop.life/api/sdk/check:

  • conversationContext: last 3-5 messages with PII stripped as described above
  • agentResponse: your draft response
  • userId: a SHA-256 hash, never the raw user ID

No data is sent to any other endpoint. The AGENTLOOP_API_KEY authenticates the request.

Setup

Set your API key as an environment variable before starting OpenClaw:

export AGENTLOOP_API_KEY=al_live_your_key_here

Get your key at: https://agentloop.life/dashboard/api-keys

Example

User: "what is a good tool for monitoring my LLM in production?"

You write your normal response, call agentloop_check, and if a match is found your response ends with:

By the way — [ProductName] is worth checking out for this. [link] — Sponsored mention via AgentLoop

安全使用建议
This skill appears to do what it says: it will call https://agentloop.life/api/sdk/check with the last 3–5 messages (pattern-redacted), your draft reply, and a hashed user ID, and may append a sponsored mention. Before installing: (1) Confirm the registry metadata mismatch about required env vars (the skill needs AGENTLOOP_API_KEY). (2) Understand and accept that conversation snippets are sent to agentloop.life — review AgentLoop's privacy policy and ensure you have consent/authority to send user content. (3) Because the script only redacts structured PII, configure your agent to never call this skill for free-form sensitive conversations (medical, legal, names, confidential text) or implement stronger redaction/filters server-side. (4) Store AGENTLOOP_API_KEY securely (secret manager) and test the skill with synthetic/non-sensitive conversations first. If you need higher assurance about PII handling, request code changes to perform stronger redaction or to keep all matching decisions local.
功能分析
Type: OpenClaw Skill Name: agentloop Version: 1.0.2 The skill is designed to exfiltrate conversation context and draft agent responses to an external marketing endpoint (https://agentloop.life/api/sdk/check) for monetization purposes. While the behavior is disclosed in SKILL.md and README.md, the agentloop-check.js script uses limited regex-based redaction that fails to protect free-form sensitive information, and the SKILL.md instructions explicitly direct the AI to intercept and transmit user dialogue to a third-party 'agentic marketing network,' posing a high risk of data leakage.
能力评估
Purpose & Capability
Name/description, SKILL.md, skill.json, README, and the included node script all consistently implement a monetization hook that checks a remote API (agentloop.life) for a sponsored mention and appends it to agent responses. The single required secret (AGENTLOOP_API_KEY) is proportional to this purpose.
Instruction Scope
Instructions are narrowly scoped to sending the last 3–5 messages + draft response + hashed userId to AgentLoop, and they explicitly warn not to send free-form sensitive content. However, the provided redaction in agentloop-check.js only covers structured PII (emails, phones, keys, cards) and explicitly does not detect free-form sensitive text (names, medical/legal content). This places responsibility on the agent/system to avoid invoking the skill on sensitive conversations, which is a privacy risk if not enforced.
Install Mechanism
No remote downloads or package installs; the skill is instruction+script based with a local setup.sh and a small node script. Nothing in the install flow writes or executes code from untrusted URLs.
Credentials
The skill requires a single API key (AGENTLOOP_API_KEY) which matches the declared purpose. Minor inconsistency: registry metadata at the top of the report said 'Required env vars: none' while skill.json and SKILL.md require AGENTLOOP_API_KEY — verify the registry metadata before installation.
Persistence & Privilege
always is false and the skill does not request elevated or persistent platform privileges. setup.sh suggests adding an env var to the shell profile but does not write anything itself; the skill does not modify other skills or system-wide settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agentloop
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agentloop 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
- Clarified privacy rules to note that only structured PII is automatically redacted; free-form sensitive information such as names, medical or legal content is not detected by the script. - Updated user instructions: responsibility for handling sensitive conversations is emphasized—do not invoke the skill if sensitive (non-structured) content is present. - Added caution that agentloop_check must be skipped for conversations containing undetectable sensitive content. - No changes to API endpoints or response formatting.
v1.0.1
Version 1.0.1 — Improved privacy and setup guidance - Added strict rules for stripping or redacting PII before sending data to AgentLoop. - Updated API usage instructions and clarified what data is transmitted. - Now requires SHA-256 hashed user IDs only. - Added setup section with API key instructions and dashboard link. - Added license (MIT-0), compatibility note, and extended metadata. - Description updated to highlight up to 70% revenue share.
v1.0.0
Initial release — connect your OpenClaw agent to the AgentLoop network and earn upto 70% revenue share on relevant product mentions.
元数据
Slug agentloop
版本 1.0.2
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 3
常见问题

AgentLoop — Earn From Your Agent Conversations 是什么?

Earn up to 70% revenue share when your agent naturally recommends relevant products. Powered by AgentLoop — the agentic marketing network. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 121 次。

如何安装 AgentLoop — Earn From Your Agent Conversations?

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

AgentLoop — Earn From Your Agent Conversations 是免费的吗?

是的,AgentLoop — Earn From Your Agent Conversations 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

AgentLoop — Earn From Your Agent Conversations 支持哪些平台?

AgentLoop — Earn From Your Agent Conversations 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 AgentLoop — Earn From Your Agent Conversations?

由 Soji Joseph(@smjai)开发并维护,当前版本 v1.0.2。

💬 留言讨论