← 返回 Skills 市场
amernet

Amernet AI SaaS

作者 Amernet · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
599
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install amernet-ai-saas
功能描述
Connect your AI SaaS intelligent agent to any messaging channel via OpenClaw (WhatsApp, Telegram, Slack, Discord, iMessage, and more)
使用说明 (SKILL.md)

AI SaaS Chatbot

This skill forwards user messages to an AI SaaS chatbot and returns its response. It maintains conversation context per user by using their channel and user identifier as a session key.

Required Configuration

These environment variables must be set in your ~/.openclaw/openclaw.json under skills.entries.amernet-ai-saas.env:

Variable Description
AI_SAAS_API_KEY Your API key from the portal (Settings → API Keys). Needs all permission.
AI_SAAS_CHATBOT_ID The chatbot ID to route all messages to (copy from the Chatbots page).
AI_SAAS_BASE_URL Base URL of your AI SaaS instance. Default: https://saas.salesbay.ai

Message Routing

When the user sends ANY message through any connected channel:

  1. Identify the current channel name (e.g. whatsapp, telegram, slack, discord) and the user's identifier on that channel (phone number, user ID, or username).

  2. Construct a sender_id combining both: \x3Cchannel>:\x3Cuser_identifier>

    • WhatsApp example: whatsapp:+15551234567
    • Telegram example: telegram:123456789
    • Slack example: slack:U012AB3CD
    • Discord example: discord:123456789012345678
  3. Send a POST request to the chatbot API:

POST ${AI_SAAS_BASE_URL}/api/v1/chatbots/${AI_SAAS_CHATBOT_ID}/chat
Authorization: Bearer ${AI_SAAS_API_KEY}
Content-Type: application/json

{
  "sender_id": "\x3Cconstructed sender_id>",
  "message": "\x3Cuser message text>"
}
  1. Parse data.responses from the JSON response. Return each item's text field as a separate message to the user. If multiple responses exist, send them in order.

  2. If the API returns an error or is unreachable, reply: "Sorry, the AI assistant is temporarily unavailable. Please try again in a moment."

Conversation Reset

If the user explicitly says "reset", "start over", "clear chat", or "/reset":

DELETE ${AI_SAAS_BASE_URL}/api/v1/chatbots/${AI_SAAS_CHATBOT_ID}/conversations/\x3Csender_id>
Authorization: Bearer ${AI_SAAS_API_KEY}

Then confirm: "Conversation cleared. How can I help you?"

Status Check

If the user says "/status" or "/ping":

GET ${AI_SAAS_BASE_URL}/api/v1/chatbots/${AI_SAAS_CHATBOT_ID}
Authorization: Bearer ${AI_SAAS_API_KEY}

Report the chatbot name and whether it is active.

安全使用建议
This skill implements what it claims, but check these points before installing: - Privacy: the skill forwards ANY message from connected channels to a third-party SaaS (saas.salesbay.ai by default). Do you and your users consent to those messages being sent off-site? Avoid installing in environments that handle sensitive data unless you’ve verified the SaaS provider’s privacy/security posture. - API key scope: SKILL.md asks for a key with 'all' permissions. Confirm whether a narrower scope is possible and use the least-privilege key. Understand that the key allows the skill to send messages and clear conversations. - Metadata inconsistencies: the platform metadata shown at the top claims no required env vars, while package.json and SKILL.md require API key and chatbot ID. Also README uses a different skill entry name ('ai-saas' vs 'amernet-ai-saas'). Resolve these naming/metadata mismatches to avoid misconfiguration and accidental credential exposure. - Configuration path: follow the SKILL.md guidance to store envs in ~/.openclaw/openclaw.json under the correct skill entry name — ensure you use the same slug the platform expects. - Test safely: try this in a non-production workspace with a limited-scope API key and a test chatbot to confirm behavior before rolling out. If you want, I can list exact configuration lines to add or suggest a minimal-permission request to ask the SaaS provider.
功能分析
Type: OpenClaw Skill Name: amernet-ai-saas Version: 1.0.0 The skill is designed to forward user messages to an external AI SaaS chatbot at `https://saas.salesbay.ai` using a configured API key and chatbot ID. All instructions in `SKILL.md` and `README.md` align with this stated purpose, detailing specific API calls for chat, conversation reset, and status checks. While the `AI_SAAS_API_KEY` requires 'all' permissions, this is explicitly documented as necessary for the skill's operation. There is no evidence of malicious intent, unauthorized data exfiltration, persistence mechanisms, or prompt injection attempts against the OpenClaw agent itself. The skill's behavior is transparent and directly supports its described functionality.
能力评估
Purpose & Capability
Functionality described (forward messages from channels to an AI SaaS chatbot, maintain per-user sessions, reset/status endpoints) aligns with the skill name and description. Required credentials (API key and chatbot ID) are appropriate for that purpose. However, the registry metadata at the top of the report claims no required env vars or primary credential while package.json and SKILL.md both declare required env vars (AI_SAAS_API_KEY, AI_SAAS_CHATBOT_ID, AI_SAAS_BASE_URL). This packaging metadata mismatch is inconsistent and may cause misconfiguration or surprise.
Instruction Scope
SKILL.md instructs the agent to forward ANY user message from connected channels to the external AI SaaS and to store API credentials in ~/.openclaw/openclaw.json. Forwarding all messages by default has privacy implications (sensitive user content will be sent to a third party). The instructions otherwise remain scoped to the described task (POST/DELETE/GET to the SaaS API). There are also small naming inconsistencies between SKILL.md, README, and README examples (e.g., skill entry named 'amernet-ai-saas' vs README showing 'ai-saas') that could lead to misconfiguration.
Install Mechanism
This is an instruction-only skill with no install spec and no code files to write to disk, which is the lowest-risk install mechanism. There are no external downloads or package installs specified.
Credentials
The skill requires an API key and chatbot ID on the AI SaaS — expected and proportional for this integration. However, SKILL.md instructs creating an API key with 'all' permissions; that scope may be broader than technically necessary (depends on SaaS API design). The skill will send all user messages to the external service and can clear conversations via DELETE, so the API key could enable reading/writing conversation data. Also, the registry metadata incorrectly listed no required env vars while package.json and SKILL.md list them, an inconsistency that should be resolved before trusting configuration.
Persistence & Privilege
The skill does not request 'always: true' and does not claim elevated platform privileges. It instructs the user to add env entries to their OpenClaw config (normal for skills). Autonomous invocation is allowed (disable-model-invocation: false), which is the platform default; combined with the fact the skill forwards all messages to an external service, this increases blast radius but is not an unusual configuration for a messaging integration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install amernet-ai-saas
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /amernet-ai-saas 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
amernet-ai-saas v1.0.0 — Initial release - Connects your AI SaaS intelligent agent to any messaging channel supported by OpenClaw (WhatsApp, Telegram, Slack, Discord, iMessage, and more) - Forwards messages from users to a selected AI SaaS chatbot and returns responses, maintaining separate sessions per user and channel - Supports conversation reset via keywords or commands, and replies with confirmation - Provides chatbot status information in response to "/status" or "/ping" - Returns a friendly error if the AI service is unavailable
元数据
Slug amernet-ai-saas
版本 1.0.0
许可证
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Amernet AI SaaS 是什么?

Connect your AI SaaS intelligent agent to any messaging channel via OpenClaw (WhatsApp, Telegram, Slack, Discord, iMessage, and more). 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 599 次。

如何安装 Amernet AI SaaS?

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

Amernet AI SaaS 是免费的吗?

是的,Amernet AI SaaS 完全免费(开源免费),可自由下载、安装和使用。

Amernet AI SaaS 支持哪些平台?

Amernet AI SaaS 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Amernet AI SaaS?

由 Amernet(@amernet)开发并维护,当前版本 v1.0.0。

💬 留言讨论