ai-news-oracle

Fetch real-time AI news briefings powered by SkillBoss API Hub (Hacker News, TechCrunch, The Verge). Uses SkillBoss search and chat capabilities for news aggregation and summarization.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "ai-news-oracle" with this command: npx skills add modestyrichards/modesty-ai-news-oracle

📖 Complete setup guide: https://skillboss.co/skill.md

AI News Oracle Skill

"The fastest way for autonomous agents to stay updated on AI trends without browsing the web."

This skill connects your agent to the AI News Oracle, powered by SkillBoss API Hub. It monitors top AI news sources (Hacker News, TechCrunch, The Verge), summarizes them using SkillBoss's chat capability, and delivers a concise, hallucination-free briefing JSON.

Features

  • Real-time Monitoring: Aggregates news from trusted tech sources via SkillBoss search API.
  • AI-Powered Summary: Uses SkillBoss API Hub's chat capability to generate consistent, agent-friendly summaries.
  • Unified API: Single SKILLBOSS_API_KEY for all capabilities via https://api.skillboss.co/v1/pilot.

Tools

ai_news_briefing

Fetches the latest AI news briefing. Returns a structured summary with timestamps and source links.

Parameters:

  • (None) - Just call the tool to get the latest briefing.

Example Output:

AI News Briefing (2026-02-10 06:46:22)

- Open source AI is the path forward (Meta)
- Anthropic closes in on $20B round
- ChatGPT rolls out ads in free tier

Source: AI News Oracle via SkillBoss API Hub

Installation

Using OpenClaw CLI:

openclaw install skill https://github.com/swimmingkiim/openclaw-skill-ai-news-oracle

Usage

import requests, os

SKILLBOSS_API_KEY = os.environ["SKILLBOSS_API_KEY"]
API_BASE = "https://api.skillboss.co/v1"

def pilot(body: dict) -> dict:
    r = requests.post(
        f"{API_BASE}/pilot",
        headers={"Authorization": f"Bearer {SKILLBOSS_API_KEY}", "Content-Type": "application/json"},
        json=body,
        timeout=60,
    )
    return r.json()

# Step 1: Search for latest AI news
search_result = pilot({
    "type": "search",
    "inputs": {"query": "latest AI news today"},
    "prefer": "balanced"
})
news_raw = search_result["result"]

# Step 2: Summarize with LLM via SkillBoss chat
summary_result = pilot({
    "type": "chat",
    "inputs": {
        "messages": [
            {"role": "system", "content": "You are an AI news summarizer. Return a concise bullet-point briefing."},
            {"role": "user", "content": f"Summarize these AI news results:\n{news_raw}"}
        ]
    },
    "prefer": "balanced"
})
briefing = summary_result["result"]["choices"][0]["message"]["content"]
print(briefing)

Environment Variables

VariableDescription
SKILLBOSS_API_KEYSkillBoss API Hub authentication key

Links

  • API Hub: https://api.skillboss.co/v1/pilot
  • Developer: swimmingkiim

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

AI Tech Intelligence Briefing

Automatically curates and summarizes daily top AI and tech news worldwide, delivering concise, time-zone aware briefings for quick updates.

Registry SourceRecently Updated
3412Profile unavailable
General

AI行业早报

每天定时推送AI行业最新重大新闻、技术进展、趋势分析及当日黄历和毛选语录早报。

Registry SourceRecently Updated
750Profile unavailable
General

Eir Daily Content Curator

Daily AI news curation — learns interests from your profile, searches the web, delivers structured summaries and daily briefs. Use when: 'set up daily news',...

Registry SourceRecently Updated
2273Profile unavailable
General

Morning Brief · 每日AI早报

每日AI早报。抓取多路信源(HuggingFace Blog、人人都是产品经理、blogwatcher订阅、36氪/知乎/Reddit/Twitter工具网关),LLM智能筛选最有价值的10条,推送到Telegram。内置OpenRouter榜单快照。使用场景:每天定时生成个性化AI资讯早报,过滤低信噪比内容,突...

Registry SourceRecently Updated
1020Profile unavailable