Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

x-tag-responderx 标签响应器

Agent Skill

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

总安装

2,305

周安装

98

GitHub Stars

公开资料未说明

下载量

808
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install x-tag-responder

简介

x-tag-responder 用于检测他人线程中对 AI 的标记行为,并生成恰当回应方案。

  • 适用于维护 AI 人设、优化人机交互体验或提升社交回应质量的任务。
  • 可获取完整对话上下文,推断用户意图并制定符合语境的回复建议。
  • 安装命令为 openclaw skills install x-tag-responder,需接入 X API 获取实时通知流。
  • 使用前应评估响应延迟与内容审核机制,确保输出符合平台规范与伦理要求。

SKILL.md

name
x-tag-responder
description
Detects when a human tags their AI familiar in someone else's X/Twitter thread, fetches full conversation context, infers intent, and crafts an appropriate reply. Handles X API reply-chain restrictions gracefully.
metadata

X Tag Responder — Skill Reference

This skill activates when your human tags you (their AI familiar) in someone else's X/Twitter thread. It fetches the full conversation, infers their intent, drafts a fitting reply, and handles X API reply-chain restrictions.


Prerequisites

  • xurl CLI installed at /home/linuxbrew/.linuxbrew/bin/xurl (or on PATH as xurl)
  • Config at ~/.xurl with valid OAuth1 or OAuth2 credentials
  • Never read, print, or expose ~/.xurl contents to the LLM context

Trigger Patterns

This skill is relevant when the user says things like:

  • "I tagged you in a tweet / thread"
  • "Check out this tweet I tagged you in"
  • "Weigh in on this" (with a tweet URL or ID)
  • "Reply to this for me" (with context)
  • They paste a tweet URL or ID and imply the agent should respond

Step-by-Step Workflow

Step 1 — Identify the Tagged Tweet

Extract the tweet ID or URL from the user's message. It will look like:

  • https://x.com/username/status/1234567890
  • https://twitter.com/username/status/1234567890
  • A bare numeric ID like 1234567890

If unclear, ask the user: *"What's the tweet URL or ID you tagged me in?"*


Step 2 — Fetch the Tagged Tweet

Read the tweet the human tagged you in:

xurl read TWEET_ID

This returns full tweet data including: text, author_id, conversation_id, in_reply_to_user_id, referenced_tweets.

Note the conversation_id — it identifies the root of the thread.


Step 3 — Fetch Thread / Conversation Context

Pull the broader conversation using the conversation_id from Step 2:

xurl search "conversation_id:CONVERSATION_ID" -n 20

This retrieves recent tweets in the thread. Sort mentally by id (ascending = chronological).

Build a mental model of:

  • Who started the thread and what they said
  • What the thread is about (topic, tone, stance)
  • Where the tagged tweet sits in the conversation
  • What the human's tagged tweet says (their cue to you)

Step 4 — Infer Human Intent

Read what the human wrote when they tagged you. Infer one of these intents:

Cue in tag tweetLikely intent
"What do you think?" / "Thoughts?"Weigh in with a take
"Reply to this" / "Handle this"Draft a reply on their behalf
"Is this true?" / "Fact-check"Research and report back (don't post)
"lol check this out"Just read/acknowledge, probably no reply needed
No cue text — just a tagAsk the human what they want
"@agent check the math"Analyze/verify, reply if appropriate

When uncertain, default to: draft a reply and ask the human to approve before posting.


Step 5 — Draft the Reply

Craft a reply that:

  • Matches the tone of the thread (technical → precise; casual → relaxed; debate → grounded)
  • Stays concise (X has a 280-char limit; aim under 240 to leave room for context)
  • Speaks as the agent or for the human — whichever the intent implies
  • Does not start with "I" (Twitter convention + feels robotic)
  • Does not use hollow filler like "Great point!" unless it's sarcastic and earned

Present the draft to the human for review before posting:

*"Here's a draft reply. Should I post it?* [DRAFT TEXT]"

Step 6 — Post the Reply (with Human Approval)

Once the human approves:

xurl reply TWEET_ID "Your reply text here"

Where TWEET_ID is the ID of the specific tweet you are replying to (usually the tweet the human tagged you in, or the thread root if instructed).


⚠️ X API Reply-Chain Restriction

The X API only allows you to reply to a tweet if your account is mentioned somewhere in the reply chain.

This means:

  • If the thread is between two other users and you are not already in it, xurl reply will fail with a 403 or silently not thread correctly.
  • The tagged tweet (where your human mentioned you) creates your entry point — you CAN reply to that tweet.
  • You cannot reply to arbitrary tweets in the thread that don't mention you.

Handling the Restriction

If reply succeeds: Report back with the posted tweet URL.

If reply fails (403 / authorization error / "not allowed"):

Report back clearly:

"I can't reply directly to that tweet — I'm not in the reply chain. Here's what I'd say though: [DRAFT TEXT] Options: 1. Tag me directly in the specific tweet you want me to reply to — that adds me to the chain. 2. You post the reply yourself and I'll write it for you. 3. I can quote-tweet instead (no chain restriction): just confirm."

Offering a quote-tweet fallback:

xurl quote TWEET_ID "Your reply text here"

Quote-tweets bypass the reply-chain restriction entirely.


Error Reference

ErrorMeaningFix
403 ForbiddenNot in reply chainReport + suggest re-tag or quote-tweet
401 UnauthorizedAuth expiredRun xurl auth status; re-auth if needed
429 Too Many RequestsRate limitedWait ~15 min and retry
Tweet not foundDeleted or privateTell the human the tweet is inaccessible

Full Example Session

Human says:

"I tagged you in this tweet — weigh in: https://x.com/someuser/status/9876543210"

Agent workflow:

# 1. Read the tagged tweet
xurl read 9876543210
# → Note: conversation_id=1111111111, text="@quirk what do you think of this?", author=human

# 2. Fetch thread context
xurl search "conversation_id:1111111111" -n 20
# → Read thread: original author debating AI regulation, 5 replies

# 3. Infer intent: "What do you think?" → weigh in

# 4. Draft reply (280 chars max):
# "Regulation works best when it's targeted at outcomes, not methods.
#  Banning specific architectures is a game of whack-a-mole — 
#  but liability frameworks? That actually scales. 🧵"

# 5. Present to human for approval

# 6. Post if approved:
xurl reply 9876543210 "Regulation works best when it's targeted at outcomes, not methods. Banning specific architectures is whack-a-mole — but liability frameworks scale. 🧵"

Tips

  • Read before you write. Always fetch the full thread before drafting. Context is everything on X.
  • Match the register. A shitpost thread and a policy debate are not the same. Sound like you belong.
  • Short > long. Twitter threads reward punchy. If you need more space, thread it.
  • Always confirm before posting. Unless the human explicitly says "just post it," show the draft first.
  • Quote-tweet is always available. When in doubt, quote-tweet bypasses all chain restrictions.

Security Notes

  • Never print or expose ~/.xurl — it contains API keys and tokens.
  • Never use --verbose / -v in agent sessions — can expose auth headers.
  • Always confirm with the human before posting publicly on their behalf.
  • Credentials are handled by xurl internally; do not pass tokens as CLI flags in agent context.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.32%
按下载量换算738

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills