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

skill-feed技能提要

Agent Skill

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

总安装

19,731

周安装

814

GitHub Stars

公开资料未说明

下载量

6,447
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skill-feed

简介

skill-feed 是 ClawHub 的场景驱动技能推荐引擎,用于检测失败或卡住的工作流程并返回排名技能推荐。

  • 适合在 OpenClaw 中需要根据关键词、任务场景快速定位候选技能时使用。
  • 通过分析当前任务瓶颈构建搜索查询,返回匹配的技能列表供选择安装。
  • 安装前需确认权限范围和维护状态,注意可能触发联网和文件读写操作。
  • 建议结合原始 README 核验具体用法,确保符合实际工作流需求。

SKILL.md

name
skill-feed
description
Scenario-driven skill recommendation engine for ClawHub. Detects failed or stuck workflows, builds targeted search queries, and returns ranked skill recommendations with immediate recovery steps and fallback paths. Use when users say they want to do something but are blocked (errors, retries, timeout, missing outputs, unclear implementation path), or when you need recommendations adapted for Claude Code, ChatGPT, and Gemini execution styles.

SkillFeed

Automatically match the best skills to unblock a failed or stuck workflow.

Trigger Conditions (auto)

Run this skill when any of these signals appears:

  1. Command/API failure (non-zero exit, HTTP 4xx/5xx)
  2. Retry threshold exceeded (default >=2 retries)
  3. Expected output missing (for example no tweet id after post task)
  4. Execution timeout exceeded
  5. User explicitly asks for tool/skill recommendation
  6. User describes a goal but has no clear implementation path

Do not trigger for normal delay/noise or when the user already has a working solution.

Workflow

  1. Capture failure context (sanitize before any external use)

- task name - platform (X/Twitter, Telegram, GitHub, etc.) - error message/code (generic type only — see sanitization rules below) - latest action log summary (stripped of secrets)

  1. Classify failure type

- auth/permission - rate limit/quota - network/timeout - invalid params/payload - unknown

  1. Build layered search queries (broad -> scenario -> failure)

- Q1 broad capability query - Q2 scenario-specific query - Q3 failure-specific query with error tokens - Sanitize all queries before searching — see Data Sanitization section

  1. Search ClawHub

- Use https://clawhub.ai/skills?focus=search - Always perform a live search; use references/top-skills-*.md only as offline fallback - Prefer sorting by stars / recently updated when comparing candidates

  1. Rank candidates

- match to goal (highest weight) - match to failure type - setup cost and risk - maintenance signals

  1. Return recovery plan

- Top 1 primary skill - 2 alternatives - 3-5 concrete next actions - fallback path if primary fails

  1. Anti-noise guardrails

- Avoid repeating the same recommendation for the same error within a single conversation - Avoid auto-running high-risk external actions without user confirmation

Query Construction Rules

Generate queries from context tokens:

  • Goal tokens: post, schedule, auto reply, daily report
  • Platform tokens: x, twitter, tweet, telegram, github
  • Failure tokens: 401, 403, 429, timeout, invalid token, permission denied

Example for failed tweet post:

  • Q1: tweet automation
  • Q2: x twitter schedule post cron
  • Q3: twitter post failed 401 invalid token rate limit

Data Sanitization

All failure context MUST be sanitized before it is included in any external search query or output. This prevents accidental leakage of secrets, credentials, and private data.

Strip before searching

  • API keys, tokens, passwords, secrets (e.g. sk-..., ghp_..., Bearer ...)
  • Personally identifiable information (emails, usernames, IPs, hostnames)
  • Internal URLs, file paths containing usernames or org names
  • Request/response bodies and headers containing auth data
  • Environment variable values (keep only the variable name)

Keep in queries (safe tokens)

  • Generic error codes: 401, 403, 429, 500, timeout
  • Generic error types: invalid token, rate limit, permission denied
  • Platform names: twitter, github, telegram
  • Action verbs: post, publish, schedule, fetch

Rules

  1. Never embed raw log lines in a search query — extract only the error type/code.
  2. If unsure whether a token is sensitive, omit it.
  3. Queries should read like generic capability descriptions, not contain project-specific data.

Example — BAD query: twitter post failed Bearer sk-abc123 user@company.com 401 Example — GOOD query: twitter post failed 401 invalid token

Provider Adaptation (Claude Code / ChatGPT / Gemini)

Format the recovery plan for the current provider by default. Only include multi-provider runbooks when the user explicitly requests cross-platform output.

  1. Keep core logic provider-neutral

- Use the same goal, failure classification, query generation, and ranking flow.

  1. Detect current provider and use the matching execution style

- Claude Code: terminal-first, exact command sequences, minimal commentary. - ChatGPT: compact checklist bullets, short "why" before steps. - Gemini: explicit sections, assumptions, deterministic validation criteria.

  1. Normalize outputs

- Keep identical recommendation order across providers. - Only vary phrasing and action formatting.

Output Format

  • Goal: <what user wants>
  • Failure signal: <what failed>
  • Primary recommendation: <skill> (/slug) — <why>
  • Alternatives:

- <skill> (/slug) — <tradeoff> - <skill> (/slug) — <tradeoff>

  • Immediate actions (3-5 steps)
  • Success check:

- expected output present - no critical error in latest run

  • Fallback if still failing
  • Execution notes: <steps formatted for current provider>

References

  • Search and ranking recipes: references/discovery-workflow.md
  • Scenario keyword map: references/query-templates.md
  • Claude Code / ChatGPT / Gemini adaptation: references/provider-adaptation.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.07%
按下载量换算5,420

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills