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

football-transfer-intel足球转会情报

Agent Skill

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

总安装

7,413

周安装

297

GitHub Stars

公开资料未说明

下载量

2,289
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install football-transfer-intel

简介

足球转会情报——实时谣言追踪、AI Truth Meter 可信度评分以及超过 137,000 起转会事件的多源验证

SKILL.md

name
football-transfer-intel
description
Football transfer intelligence — real-time rumour tracking, AI Truth Meter credibility scores, and multi-source verification across 137,000+ transfer events
version
1.0.0
homepage
https://github.com/LeoandLeon/rising-transfers-clawhub-skills
metadata
clawdbot
emoji
📡
requires
env
["RT_API_KEY"]
primaryEnv
RT_API_KEY

Football Transfer Intel — Real-Time Rumour Intelligence

Track football transfer rumours in real time. Aggregated from 3 independent data sources (Transfermarkt, Sportmonks, and social signals), with an AI Truth Meter that scores each rumour from 0–100 for credibility. No more guessing which transfer stories are real.

Free tier includes trending hot topics with no API key required.


External Endpoints

EndpointMethodData SentPurpose
https://api.risingtransfers.com/api/v1/intelligence/hot-topicsGETNoneTrending football transfers (free, 0 credits)
https://api.risingtransfers.com/api/v1/intelligence/transferPOST{ "name": "<player_name>" }Player transfer rumour detail (3 credits)
https://api.risingtransfers.com/api/v1/intel/verifyGET?q=<player>+to+<club>Truth Meter credibility score (1–5 credits)

No data is sent to any other endpoint. No conversation history is transmitted.


Security & Privacy

  • What leaves your machine: Player name and/or club name from your query only
  • What does NOT leave your machine: Conversation history, other skills, local files, or your API key value (sent as HTTP header only)
  • Authentication: RT_API_KEY is sent as X-RT-API-Key header to api.risingtransfers.com only
  • Hot topics (trending list) can be fetched without any API key at 0 credits
  • Data retention: Query logs kept for rate limiting (max 24 hours). No personal data stored

Model Invocation Note

This skill may be invoked autonomously when you ask about football transfer news, rumours, or whether a specific deal is likely to happen. To disable autonomous invocation: claw config set skill.auto-discover false. Credit consumption applies only to authenticated calls for detailed intelligence.


Trust Statement

By using this skill, player and club names from your queries are sent to Rising Transfers (api.risingtransfers.com). Rising Transfers aggregates public football transfer rumour data — no sensitive or personal information is involved. Only install this skill if you trust Rising Transfers with those search terms.


Trigger

When the user asks about:

  • Football transfer rumours for a specific player or club
  • Whether a football transfer deal is likely or credible
  • Latest hot football transfer topics or trending deals
  • Verifying if a football transfer story is genuine or fake
  • Truth Meter score for a specific transfer link

Examples:

  • "What are the latest football transfer rumours for Mbappé?"
  • "Is the Osimhen to Chelsea deal likely to happen?"
  • "What are the hottest football transfer stories right now?"
  • "How credible is the Arsenal to Gyökeres link?"
  • "Rate the truth of the Salah to Saudi Arabia rumour"

Instructions

Step 1 — Determine query type

Identify which of three modes to use:

User IntentModeCredits
"What's trending in football transfers?" / general hot topicsHot Topics0
Specific player's transfer rumoursTransfer Detail3
"How likely is [player] to [club]?"Truth Meter1–5

Mode A: Hot Topics (0 credits, no key required)

Call:

GET https://api.risingtransfers.com/api/v1/intelligence/hot-topics
Headers: X-RT-API-Key: <RT_API_KEY>   (optional for free topics)

Present the top 10 results sorted by heat_score:

  • Player name → Destination club
  • Heat level (🔥🔥🔥 = high, 🔥 = low)
  • Last updated timestamp

Mode B: Transfer Detail (3 credits)

Call:

POST https://api.risingtransfers.com/api/v1/intelligence/transfer
Headers:
  X-RT-API-Key: <RT_API_KEY>
  Content-Type: application/json
Body: { "name": "<player_name>", "team": "<team_if_mentioned>" }

Present:

  • Sources citing the rumour (e.g. "Fabrizio Romano", "Sky Sports")
  • Transfer probability estimate (%)
  • Social media sentiment breakdown
  • Timeline: when first reported, latest update
  • Key facts: reported fee, contract length, competing clubs

Mode C: Truth Meter (1–5 credits)

Call:

GET https://api.risingtransfers.com/api/v1/intel/verify?q=<player>+to+<club>
Headers: X-RT-API-Key: <RT_API_KEY>

Parse audit.score and audit.verdict, present as:

Truth Meter: [player] to [club]
Score: 74/100 — LIKELY
━━━━━━━━━━━━━━━━━━━━━

Source Authority:  32/40
Official Signals:  15/20
Progress Signals:  14/20
Market Heat:       13/20
Community Mood:    +3 (mostly believe it)

Include top evidence sources from evidence.top_sources.


Error Handling

ErrorUser Message
401"Your RT_API_KEY is invalid. Get one free at api.risingtransfers.com"
403 Insufficient Credits"Not enough credits for this query. Top up at api.risingtransfers.com/pricing"
404 Player Not Found"Player not found. Try the full name or add the current club name."
429 Rate Limited"Rate limit reached. Wait a moment or upgrade your plan for higher limits."
5xx"Rising Transfers API is temporarily unavailable. Please try again shortly."

Important: Do Not Fabricate

If the API returns no rumour data for a player, clearly state: "No active football transfer rumours found for [player] in the Rising Transfers database." Do not invent rumour details or probability scores.


Requirements

  • RT_API_KEY: Rising Transfers API key. Register free at api.risingtransfers.com
  • Hot Topics mode works without a key (anonymous, limited results)
  • OpenClaw: v0.8.0 or later
  • Network access: Required

Credit Usage

ActionCredits
Hot Topics (trending football transfers)0 — always free
Transfer Detail (specific player)3 credits
Truth Meter (credibility score)1 credit (anonymous) / 5 credits (full detail)

Free tier: 10 hot-topic calls/day, 3 detailed queries/day.


Author

Rising Transfers — api.risingtransfers.com

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

93.22%
按下载量换算2,134

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills