Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

ai-cmo艾奇莫

Agent Skill

ai-cmo 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,039

周安装

165

GitHub Stars

公开资料未说明

下载量

1,307
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ai-cmo(艾奇莫)
来源仓库:https://github.com/xjouska/ai-cmo
安装命令:
openclaw skills install ai-cmo
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ai-cmo

简介

查找、检索和筛选相关信息,快速定位候选结果。

  • 适合在 OpenClaw 中根据关键词或任务场景定位信息时使用。
  • 通过 clawhub 安装,需确认权限范围和联网行为。
  • 建议结合来源仓库和 README 核验具体用法。
  • 注意维护状态及是否触发文件读写或命令执行。ai-cmo 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
AI-CMO Social Media Promoter
description
Find the best social media promotion spots for any product and generate platform-tailored engagement copy
requires
env

AI-CMO: Social Media Promotion Intelligence

AI-CMO analyzes any product URL or name and finds the best promotion opportunities across Reddit, YouTube, Twitter/X, Quora, Product Hunt, and Hacker News. It returns ranked posts with AI-generated engagement copy tailored to each platform's tone.

This skill calls the AI-CMO REST API to retrieve promotion data. It does not require a local browser — all analysis happens server-side. The agent uses the returned data to help you engage on social media.

Homepage: <https://www.aicmo.site> API Docs: <https://www.aicmo.site/api-docs>

Runtime requirements

  • OS: macOS · Linux · Windows
  • Env: AICMO_API_KEY — your AI-CMO API key (get one at <https://www.aicmo.site> → Settings → API Keys)

When to use

  • You want to find high-value posts/threads to engage with for a product
  • You need AI-generated comments customized per platform
  • You want a CSV of promotion targets for batch processing

When not to use

  • You only need a simple Google search (use a search engine instead)
  • The product has no web presence yet (AI-CMO needs existing content to find)

Prerequisites

  • An AI-CMO account — register at <https://www.aicmo.site>
  • Environment variable: AICMO_API_KEY

Get an API key

  1. Log in to <https://aicmo.site>
  2. Go to Settings → API Keys
  3. Click Create Key and save the key securely
export AICMO_API_KEY="sk-cmo-your-key-here"

Quick start: analyze a product

Analyze a product and get ranked promotion spots. Consumes 1 credit per call.

Note: Analysis takes 2–4 minutes (scraping 6 platforms + AI scoring). Set your HTTP client timeout to at least 300 seconds.
const resp = await fetch("https://www.aicmo.site/api/v1/open/analyze", {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
    "x-api-key": process.env.AICMO_API_KEY!,
  },
  body: JSON.stringify({
    product: "https://your-product.com",
    language: "en",
    max_results: 10,
  }),
});

const result = await resp.json();

for (const spot of result.promotions) {
  console.log(`#${spot.rank} [${spot.platform}] ${spot.title}`);
  console.log(`  URL: ${spot.url}`);
  console.log(`  Comment: ${spot.suggested_comment}`);
  console.log(`  Score: ${spot.composite_score} | Risk: ${spot.risk_level}`);
}

The response contains promotions[] (ranked posts with url, suggested_comment, platform, composite_score, risk_level, etc.) and strategy (action plan). For CSV output, use /analyze/csv instead — same request, returns a downloadable CSV file.

Base URL: https://www.aicmo.site/api/v1/open (always use www.aicmo.site).

CSV columns

ColumnDescription
RankPriority ranking (1 = best)
Platformreddit, youtube, twitter, quora, producthunt, hackernews
URLDirect link to the post/thread
TitlePost title
Suggested CommentAI-generated engagement copy for this specific post
Comment StrategyContext on how to approach the conversation
Why RecommendWhy this post is a good promotion opportunity
Best TimingRecommended engagement window
Risk Levellow, medium, or high
Estimated ExposureApproximate reach
ScoreComposite quality score (0–100)

Engaging with results

After receiving promotion spots, the agent can help you engage by:

  1. Browsing to the post URL
  2. Reading the existing discussion for context
  3. Composing a reply using the suggested_comment as a starting point
  4. Adapting the tone to match the thread's conversation style
Important: Always review the suggested comment before posting. The AI provides a strong starting point, but human judgment ensures the reply feels authentic and adds genuine value to the conversation.

References (deep dive)


中文版 / Chinese Translation


AI-CMO:社媒推广智能分析

AI-CMO 可分析任意产品 URL 或名称,在 Reddit、YouTube、Twitter/X、Quora、Product Hunt 和 Hacker News 上找到最佳推广机会。返回排名后的帖子列表,并为每个帖子生成匹配该平台风格的 AI 互动文案。

本 Skill 调用 AI-CMO REST API 获取推广数据,不需要本地浏览器——所有分析在服务端完成。

何时使用

  • 为产品找到高价值的帖子/讨论串进行互动
  • 获取为每个平台定制的 AI 评论文案
  • 获取 CSV 格式的推广目标清单用于批量处理

何时不使用

  • 只需要简单搜索(请直接用搜索引擎)
  • 产品还没有任何网络信息(AI-CMO 需要已有内容才能分析)

前置条件

  • AI-CMO 账号——在 <https://www.aicmo.site> 注册
  • 环境变量:AICMO_API_KEY(在 设置 → API 密钥 中创建)
代码示例与上方英文部分一致,此处不再重复。

核心接口

接口说明消耗积分
GET /quota查询剩余积分
POST /analyze分析产品,返回 JSON 推广位1 积分
POST /analyze/csv分析产品,返回 CSV 文件1 积分
GET /history分析历史列表
GET /history/{id}/csv导出过往分析为 CSV

使用结果进行互动

Agent 可以帮你:浏览帖子 URL → 阅读上下文 → 以 suggested_comment 为起点撰写回复 → 调整语气匹配对话风格。

发帖前务必审阅。AI 提供的是起点,人工判断确保回复真实自然。

参考文档

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.34%
按下载量换算1,207

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills