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

x-growth-operatorx 增长算子

Agent Skill

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

总安装

12,876

周安装

526

GitHub Stars

公开资料未说明

下载量

4,166
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install x-growth-operator

简介

规划和执行基于任务的 X 增长运营策略。

  • 监控 KOL 动态并检测新兴话题热点。
  • 支持内容转短和跨平台分发逻辑。x-growth-operator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过场景化指令触发响应式操作流程。
  • 依赖关键词库和账号白名单配置。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
x-growth-operator
description
Plan and execute mission-driven X growth operations / 任务驱动的 X 增长运营规划与执行。Use when the user wants to monitor KOL posts, detect emerging discussions, turn briefs or uploaded docs into a growth mission, draft replies or posts, rank opportunities, and execute approved actions with a local audit trail.
version
1.0.4
metadata
openclaw
requires
env
bins
config
primaryEnv
X_API_KEY
install
package
commander
package
dotenv
package
https-proxy-agent
package
socks-proxy-agent

X Growth Operator / X 增长运营助手

Use this skill when the user wants a review-first workflow for X operations rather than a generic writing assistant.

Purpose

Turn a user brief into an X growth mission, infer what the account should watch, find relevant opportunities, draft actions, and execute approved posts with an audit trail.

Security & Runtime Declaration

  • This skill can perform real authenticated X actions only in x-api mode and only after explicit approval.
  • Required environment variables for real X execution:

- X_API_KEY - X_API_SECRET - X_ACCESS_TOKEN - X_ACCESS_TOKEN_SECRET

  • Optional environment variable:

- DESEARCH_API_KEY (needed only for live Desearch search/import)

  • Install step required before real execution:

- cd scripts && npm install

  • Network targets used by this skill:

- https://api.twitter.com - https://api.x.com

  • Local persistence paths:

- data/ - scripts/.env

Trigger Conditions

Use this skill when the user asks to:

  • operate or grow an X account
  • monitor KOLs, keywords, or emerging discussions
  • react to breaking events on X
  • draft replies, quote posts, or original posts for X
  • create or update a mission from a brand brief or uploaded document
  • test an autonomous-but-reviewed X growth workflow in OpenClaw

Workflow

Run these steps in order unless the user explicitly asks for one step only.

  1. Build or refresh the mission:
python3 scripts/ingest_goal.py \
  --doc examples/brand_brief.md \
  --mission data/mission.json

You may also pass --prompt instead of --doc.

The brief can be structured with explicit sections or written as freeform natural language. The parser should infer goals, audience, topics, constraints, CTA, and risk tolerance from either format.

  1. Gather opportunities:
python3 scripts/watch_x.py \
  --mission data/mission.json \
  --input examples/opportunities.json \
  --output data/opportunities_scored.json

Import live opportunities with Desearch:

python3 scripts/import_desearch.py \
  x "your query here" \
  --count 10 \
  --output data/opportunities_from_desearch.json

Or run live search all the way to an action plan:

python3 scripts/live_search_and_plan.py \
  --mission data/mission.json \
  --count 10

If --query is omitted, derive the search query from mission topics, keywords, and audience.

If the operator is manually surfing X and taking notes, convert those notes first:

python3 scripts/import_surf_notes.py \
  --notes examples/surf_notes.md \
  --output data/opportunities_from_notes.json
  1. Draft a recommended action:
python3 scripts/propose_action.py \
  --mission data/mission.json \
  --opportunities data/opportunities_scored.json \
  --opportunity-id YOUR_OPPORTUNITY_ID \
  --output data/action.json
  1. Execute only after explicit user approval:
python3 scripts/execute_action.py \
  --mission data/mission.json \
  --action data/action.json \
  --log data/execution_log.jsonl

For reply and quote_post, execution should run the preflight gate first. It inspects the target tweet's reply settings and blocks likely permission failures before posting.

For real X execution, first install Node dependencies and configure X OAuth credentials, then run:

python3 scripts/check_env.py --mode execution
python3 scripts/execute_action.py \
  --mission data/mission.json \
  --action data/action.json \
  --log data/execution_log.jsonl \
  --approved \
  --mode x-api
  1. Build a ranked action plan from the current opportunity set:
python3 scripts/plan_actions.py \
  --mission data/mission.json \
  --opportunities data/opportunities_scored.json \
  --output data/action_plan.json
  1. Learn from feedback and refresh memory:
python3 scripts/review_feedback.py \
  --mission data/mission.json \
  --feedback examples/feedback.json \
  --memory data/memory.json \
  --output data/feedback_report.json
  1. Run the whole cycle in one command when testing:
python3 scripts/run_cycle.py \
  --doc examples/brand_brief.md \
  --opportunities examples/opportunities.json \
  --feedback examples/feedback.json

Rules

  • Default to review mode. Do not execute posts or replies until the user clearly approves the final action.
  • For reply and quote_post, honor the interaction preflight result unless the user explicitly chooses to bypass it.
  • If the user provides a document, parse it into mission fields first instead of drafting content immediately.
  • Treat the mission as the source of truth for content direction. Do not assume the account is about OpenClaw, agents, or developer tools unless the user brief says so.
  • If no live X source is available, operate on imported JSON opportunities and keep the workflow moving.
  • Prefer replies and quote posts over net-new posts when the opportunity is time-sensitive.
  • Downrank or reroute interaction ideas when thread structure or reply settings suggest a likely permission failure.
  • Reject actions that conflict with mission constraints, banned topics, or risk thresholds.
  • When confidence is low, recommend observe instead of forcing an action.
  • Persist what worked. Use data/memory.json to carry forward successful angles, source accounts, and action types.
  • Treat auto execution as future work. This skill is review-first.
  • Real X execution requires X_API_KEY, X_API_SECRET, X_ACCESS_TOKEN, and X_ACCESS_TOKEN_SECRET.

Resources

  • examples/brand_brief.md: sample source document for mission ingestion
  • examples/freeform_brief.md: sample freeform brief for mission ingestion
  • examples/opportunities.json: sample X opportunities for local testing
  • examples/feedback.json: sample outcome data for memory updates
  • examples/surf_notes.md: sample manual browser-surf notes
  • examples/desearch_query.txt: sample live search query
  • references/mission-schema.md: field meanings and scoring rules
  • scripts/.env.example: example execution environment file

Outputs

  • data/mission.json: structured mission for later turns
  • data/opportunities_scored.json: ranked opportunities with reasons
  • data/action_plan.json: ranked next actions for the current cycle
  • data/action.json: one reviewed action proposal
  • data/execution_log.jsonl: append-only execution history
  • data/memory.json: persistent learned patterns and historical outcomes

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.17%
按下载量换算4,090

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills