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

purefeedpurefeed 搜索

Agent Skill

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

总安装

13,479

周安装

579

GitHub Stars

公开资料未说明

下载量

4,725
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install purefeed

简介

purefeed 监控 Twitter/X 源并通过 AI 信号检测筛选推文,支持语义搜索与管理。

  • 适用于舆情监控、热点追踪或内容发现等社交媒体研究场景。
  • 可生成类人发帖内容并检测 AI 痕迹,需配置关键词与检测规则。
  • 使用前应遵守平台政策,避免滥用导致账号封禁或法律风险。
  • 该技能依赖第三方 API,响应速度与稳定性受网络环境影响较大。

SKILL.md

name
purefeed
description
Monitors Twitter/X feeds with AI signal detection. Searches tweets semantically, manages signal detectors, generates human-sounding posts, checks AI detection scores, and publishes/schedules content to X via Typefully. Use when the user wants to browse their Twitter feed, find tweets about a topic, set up content monitoring, draft tweets from curated content, or publish to X/Twitter. Do NOT use for general Twitter browsing without a Purefeed account.
user-invocable
true
allowed-tools
["bash"]
metadata
{"openclaw":{"requires":{"bins":["curl"],"env":["PUREFEED_API_KEY"]},"primaryEnv":"PUREFEED_API_KEY","emoji":"📡"}}

Purefeed

API Base: https://purefeed.ai/api/v1 Auth: Authorization: Bearer $PUREFEED_API_KEY

Output Rules

Follow these rules for EVERY response that includes tweet data:

  1. Format ALL screen names as clickable links: [@screen_name](https://x.com/screen_name). Never output plain @screen_name.
  2. Format ALL tweet references as clickable links: [Tweet](https://x.com/screen_name/status/tweet_id).
  3. Include view count with eye emoji: 👁 81K.
  4. Sort by views or engagement descending unless user requests otherwise.

Example output line:

[@CryptoAyor](https://x.com/CryptoAyor) 👁 81K — detailed thread about $JELLY manipulation

Setup

  1. Get API key at purefeed.ai/profilePublic API KeysCreate Key
  2. Set it: openclaw config set skills.purefeed.env.PUREFEED_API_KEY "pf_live_YOUR_KEY"
  3. Verify: curl -s https://purefeed.ai/api/v1/auth/me -H "Authorization: Bearer $PUREFEED_API_KEY"

Tool Dependencies

list styles ──→ styleId ──→ generate post
list signals ──→ signal_id ──→ get/update/delete signal, get signal matches
list folders ──→ folder_id ──→ get/create/rename/delete folder, add/remove tweets
get feed / search / signal matches ──→ tweet_ids ──→ generate post / get signal insights
generate post ──→ draft text ──→ humanize post ──→ publish / schedule / draft / queue

Always list styles before generating a post. Always list signals before signal-specific calls.

How to Find Tweets by Topic

Follow this exact sequence when the user asks "what's new about X?" or "find tweets about Y".

Step 1 — Find a matching active signal

GET /signals?search=TOPIC&active=true

The search parameter uses semantic/vector search — search=ai finds "Artificial intelligence", "AI Research", etc. If empty, try broader terms or GET /signals?active=true to see all active signals.

Step 2 — Get matches from that signal

GET /signals/{id}/matches?limit=20

Signal matches are the primary data source. They include AI-generated analysis (sentiment, category, insights). Do NOT skip to feed search.

Step 3 — Fall back to feed search ONLY if no signal found

GET /feed?limit=20&search=TOPIC
POST /search → {"query": "topic description", "limit": 20}

Step 4 — Filter feed by signal IDs (optional)

GET /feed?signal_ids={id1},{id2}&limit=20

Use signal IDs from Step 1 (GET /signals).

Workflows

Find and share tweets

  1. Find tweets using the strategy above
  2. GET /styles — pick a writing style
  3. POST /studio/generate — generate post from tweet IDs + styleId
  4. POST /studio/humanize — if score ≤ 30 use as-is, if > 30 use rewrite
  5. POST /studio/publish — publish to X

Set up monitoring

  1. POST /signals — create signal with name + description + tags + color + cron + timezone (auto-activates)
  2. Wait up to 6 hours for processing
  3. GET /signals/{id}/matches — check results
  4. PUT /signals/{id} — refine description if too many irrelevant matches

First run

  1. GET /auth/me — verify API key
  2. GET /styles — cache writing styles
  3. GET /signals — see signal configurations
  4. GET /folders — see bookmark folders

Key Concepts

  • Signal: AI content detector with a name + description. Active if signals_subscriptions is non-empty; inactive if []. When creating: always set tags and color, never set include_keywords unless user explicitly asks (they are very restrictive).
  • Writing Style: Named instruction set for post generation. Must call GET /styles to get valid styleId before generating.
  • Typefully: Publishing backend. Required for publish/schedule/draft/queue. If not connected, tell user to set it up in Purefeed settings.

Error Handling

ErrorAgent Action
401 UnauthorizedTell user to create new key at purefeed.ai/profile
429 Too Many RequestsWait and retry. Check Retry-After header
"No Typefully connection"Tell user to connect Typefully in Purefeed settings
"No LLM API keys configured"Tell user to add LLM API keys in Studio settings
"Writing style not found"Call GET /styles to get valid IDs
"Signal not found"Call GET /signals to get valid IDs

API Reference

Read API_REFERENCE.md for full endpoint documentation, parameters, curl examples, and response shapes.

All endpoints return { "data": ..., "error": null } on success and { "data": null, "error": { "message": "...", "code": "..." } } on error. Streaming endpoints return text/plain.

Endpoint Summary

MethodPathPurpose
GET/auth/meVerify API key
GET/feedTweets ranked by signal relevance
POST/searchFull-text search across matched tweets
GET/feed/signalsAI signal analysis for specific tweet IDs
GET/foldersList bookmark folders
POST/foldersCreate a folder ({ "name": "..." })
PATCH/folders/:idRename a folder ({ "name": "..." })
DELETE/folders/:idDelete a folder and its items
GET/folders/:id/tweetsTweets in a folder
POST/folders/:id/tweetsAdd tweet to folder ({ "tweet_id": "..." })
DELETE/folders/:id/tweets?tweet_id=XRemove tweet from folder
GET/signalsList signals (supports semantic search)
POST/signalsCreate + auto-activate a signal
GET/signals/:idSignal details
PUT/signals/:idUpdate signal
DELETE/signals/:idDelete signal (irreversible)
GET/signals/:id/matchesTweets matching a signal
GET/stylesList writing styles
POST/studio/generateGenerate tweet/thread (streaming)
POST/studio/humanizeAI detection score + rewrite (streaming)
POST/studio/publishPublish to X immediately
POST/studio/scheduleSchedule for specific time
POST/studio/draftSave as Typefully draft
POST/studio/queueAdd to next posting slot

Rate Limits

  • 60 requests/minute per API key
  • Streaming endpoints count as 1 request each
  • 429 responses include Retry-After header

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.71%
按下载量换算3,388

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills