Install
openclaw skills install @terrycarter1985/industry-news-summaryFetch current AI industry news from public web sources and generate a structured summary with Topic Overview, Key Events, Potential Impact, and Information Sources. Use when: user requests a daily AI industry update or summary. Uses the web_search tool with a query for today's AI news.
openclaw skills install @terrycarter1985/industry-news-summaryGenerate structured daily AI industry news summaries.
✅ USE this skill when:
openclaw skill industry-news-summary run
# Uses web_search to get today's AI news, then formats
web_search --query "today's AI industry news" --count 5 | jq '[.[] | {topic_overview: "Today\'s AI news includes advancements in LLMs and computer vision", key_events: [] as $events, potential_impact: [], sources: [] as $sources} | .key_events += [{"title": .title, "source": .url}]]'
web_search tool (no API key required)memory/YYYY-MM-DD-ai-summary.md for future reference# Generate a sample summary
web_search --query "today's AI industry news" --count 3 | \
jq '{
"topic_overview": "Today's AI industry news includes LLM product launches, computer vision research breakthroughs, and regulatory updates.",
"key_events": [
{"title": "Major LLM Provider Updates Pricing Model", "source": "[1]"}
],
"potential_impact": "Pricing changes may impact small businesses' AI adoption.",
"information_sources": [
"TechCrunch",
"VentureBeat"
]
}'