5.3kā
by kesslerio
technews ā OpenClaw Skill
technews is an OpenClaw Skills integration for writing workflows. Fetches top stories from TechMeme, summarizes linked articles, and highlights social media reactions. Use when user wants tech news or says /technews.
Skill Snapshot
| name | technews |
| description | Fetches top stories from TechMeme, summarizes linked articles, and highlights social media reactions. Use when user wants tech news or says /technews. OpenClaw Skills integration. |
| owner | kesslerio |
| repository | kesslerio/technews |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @kesslerio/technews |
| last updated | Feb 7, 2026 |
Maintainer

name: technews description: Fetches top stories from TechMeme, summarizes linked articles, and highlights social media reactions. Use when user wants tech news or says /technews. metadata: {"openclaw":{"emoji":"š°"}}
TechNews Skill
Fetches top stories from TechMeme, summarizes linked articles, and highlights social media buzz.
Usage
Command: /technews
Fetches the top 10 stories from TechMeme, provides summaries from the linked articles, and highlights notable social media reactions.
Setup
This skill requires:
- Python 3.9+
requestsandbeautifulsoup4packages- Optional:
tiktokenfor token-aware truncation
Install dependencies:
pip install requests beautifulsoup4
Architecture
The skill works in three stages:
- Scrape TechMeme ā
scripts/techmeme_scraper.pyfetches and parses top stories - Fetch Articles ā
scripts/article_fetcher.pyretrieves article content in parallel - Summarize ā
scripts/summarizer.pygenerates summaries and finds social reactions
Commands
/technews
Fetches and presents top tech news stories.
Output includes:
- Story title and original link
- AI-generated summary
- Social media highlights (Twitter reactions)
- Relevance score based on topic preferences
How It Works
- Scrapes TechMeme's homepage for top stories (by default, top 10)
- For each story, fetches the linked article
- Generates a concise summary (2-3 sentences)
- Checks for notable social media reactions
- Presents results in a clean, readable format
State
<workspace>/memory/technews_history.jsonā cache of recently fetched stories to avoid repeats
Examples
/technewsā Get the latest tech news summary
Future Expansion
This skill is designed to be extended to other sources:
- Hacker News (
/hn) - Reddit (
/reddit) - Other tech news aggregators
The modular architecture allows adding new source handlers without changing core functionality.
TechNews Skill for OpenClaw
A OpenClaw skill that fetches top tech stories from TechMeme, summarizes linked articles, and highlights social media reactions.
Features
- š° Scrapes top stories from TechMeme.com
- š AI-generated summaries of article content
- š¬ Hacker News integration (shows points and comments)
- š„ Extracts notable quotes and "spicy" takes
- ā” Parallel fetching for speed
Installation
# Clone or add to your OpenClaw skills
cd /path/to/openclaw/skills
git clone https://github.com/yourusername/technews-skill.git
# Install dependencies
pip install requests beautifulsoup4
Usage
In OpenClaw, simply type:
/technews
This will fetch the top 10 stories and present them with:
- Story titles and links
- AI-generated summaries
- Hacker News engagement data
- Notable quotes and reactions
Architecture
technews/
āāā SKILL.md # OpenClaw skill definition
āāā README.md # This file
āāā scripts/
ā āāā techmeme_scraper.py # Fetches stories from TechMeme
ā āāā article_fetcher.py # Parallel article fetching
ā āāā social_reactions.py # HN and Twitter integration
ā āāā technews.py # Main orchestrator
Extending
This skill is designed to be extended to other sources:
/hn- Hacker News top stories/reddit- Reddit tech threads/verge- The Verge coverage/wired- WIRED articles
Add new sources by creating additional scraper modules and updating the orchestrator.
Requirements
- Python 3.9+
requestsbeautifulsoup4- OpenClaw (any recent version)
License
MIT
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install technews?
Run openclaw add @kesslerio/technews in your terminal. This installs technews into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/kesslerio/technews. Review commits and README documentation before installing.
