From f56b2354be8469dae2be32093fa619eb6bf13cff Mon Sep 17 00:00:00 2001 From: beare <945412026@qq.com> Date: Fri, 1 May 2026 22:07:33 +0800 Subject: [PATCH] chore: update version number to 1.0.4 and add score parameter to SKILL.md - Incremented version number in SKILL.md from 1.0.3 to 1.0.4. - Added a new `score` parameter to the news search documentation, allowing users to filter results based on minimum AI score. --- openclaw-skill/opennews/SKILL.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/openclaw-skill/opennews/SKILL.md b/openclaw-skill/opennews/SKILL.md index a976b80..62bfc14 100644 --- a/openclaw-skill/opennews/SKILL.md +++ b/openclaw-skill/opennews/SKILL.md @@ -21,7 +21,7 @@ metadata: - darwin - linux - win32 - version: 1.0.3 + version: 1.0.4 --- # OpenNews Crypto News Skill @@ -119,6 +119,7 @@ curl -s -X POST "https://ai.6551.io/open/news_search" \ | `coins` | string[] | no | Filter by coin symbols (e.g. `["BTC","ETH"]`) | | `engineTypes`| map[string][]string | no | Filter by engine and news types | | `hasCoin` | boolean | no | Only return news with associated coins | +| `score` | integer | no | Filter by minimum AI score (0-100) | Important: You need to understand the user's query intent and perform word segmentation, then combine them using OR/AND to form search keywords, supporting both Chinese and English. @@ -165,7 +166,7 @@ curl -s -X POST "https://ai.6551.io/open/news_search" \ curl -s -X POST "https://ai.6551.io/open/news_search" \ -H "Authorization: Bearer $OPENNEWS_TOKEN" \ -H "Content-Type: application/json" \ - -d '{"limit": 50, "page": 1}' | jq '[.data[] | select(.aiRating.score >= 80)]' + -d '{"score": 80, "limit": 50, "page": 1}' ``` ---