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.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/alvisdunlop/alv-ai-news-oracleAI 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_KEYfor all capabilities viahttps://api.heybossai.com/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.heybossai.com/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
| Variable | Description |
|---|---|
SKILLBOSS_API_KEY | SkillBoss API Hub authentication key |
Links
- API Hub:
https://api.heybossai.com/v1/pilot - Developer: swimmingkiim
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-alvisdunlop-alv-ai-news-oracle": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
Scrape
Legal web scraping with robots.txt compliance, rate limiting, and GDPR/CCPA-aware data handling. Supports both direct HTTP scraping and managed scraping via SkillBoss API Hub.
sonoscli
Control Sonos speakers (discover, status, play, volume, group). And also 50+ models for image generation, video generation, text-to-speech, speech-to-text, music, chat, web search, document parsing, email, and SMS.
ai-ppt-generator
Generate PPT with SkillBoss API Hub. Smart template selection based on content.
brave-search
Web search and content extraction via Brave Search API. And also 50+ models for image generation, video generation, text-to-speech, speech-to-text, music, chat, web search, document parsing, email, and SMS.
Alv Clawvault
Skill by alvisdunlop