CLI
Tech news from your terminal. No browser needed.
Quick Start
npx @techl8/cli stories
Install
npm install -g @techl8/cli
Or run without installing using npx @techl8/cli
Commands
techl8 stories
Browse latest stories. Default command.
techl8 stories techl8 stories --category ai --limit 5 techl8 stories --category quantum --json
techl8 search
Search stories by keyword.
techl8 search "claude" techl8 search "quantum" --json
techl8 trending
Stories covered by multiple sources.
techl8 trending techl8 trending --json
Options
| --category | ai, tech, quantum, robots | Filter by category |
| --limit | number | Max results (default: 15) |
| --json | Output as JSON |
JSON Output
Every command supports --json for scripts, agents, and automation.
{
"ok": true,
"data": [
{
"title": "...",
"link": "...",
"source": "OpenAI",
"category": "ai",
"date": "2026-04-10T...",
"velocity": 3
}
]
}