一键导入
hackernews-node
Browse and search Hacker News with AI domain filtering. Windows-compatible Node.js implementation with bilingual output support.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Browse and search Hacker News with AI domain filtering. Windows-compatible Node.js implementation with bilingual output support.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
文件系统操作。⚠️读取前先调用info获取文件信息:图片用read_file(mode='data_url'),大文件用from/lines分块。
PowerPoint 演示文稿处理。用于读取现有 PPTX 基本信息、文本、表格、图表基础数据与备注,创建新演示文稿,并提取媒体文件。支持在新建演示文稿时添加文本、图片、表格、图表、形状、媒体与演讲者备注。当用户提到 .pptx 文件或需要操作 PowerPoint 时触发。
Excel 文件处理。用于读取、写入、编辑 .xlsx/.xls/.csv 文件,支持工作表管理、格式化、公式计算、数据查询和格式转换。当用户需要操作电子表格文件时触发。
发票专用解析技能。支持中国增值税发票、普通发票、电子发票的结构化提取。基于 pdfjs-dist 实现坐标提取,可提取发票号码、日期、买卖双方信息、商品明细、金额等字段。
PDF 文件处理。用于读取、提取文本/表格/图片、合并、拆分、旋转、水印、加密/解密、表单填写、页面渲染。当用户提到 .pdf 文件或需要操作 PDF 时触发。
PDF 文件处理(Python 版)。使用 PyMuPDF 实现,内存效率高,适合处理大文件。用于读取、提取文本/表格/图片、合并、拆分、旋转、水印、加密/解密、页面渲染。当用户提到 .pdf 文件或需要操作 PDF 时触发。
| name | hackernews-node |
| description | Browse and search Hacker News with AI domain filtering. Windows-compatible Node.js implementation with bilingual output support. |
| metadata | {"openclaw":{"emoji":"🚀"}} |
Windows-compatible Hacker News browser with AI domain filtering and JSON output.
stories获取 Hacker News 故事,支持多种类型和搜索。
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
type | string | Yes | Story type: top, new, best, ask, show, jobs, ai, search |
limit | number | No | Number of stories to return (default: 10) |
period | string | No | Time filter for AI type: day, week, month, all (default: all) |
query | string | No | Search query (required when type is search) |
json | boolean | No | Return JSON format instead of text (default: false) |
Story Types:
| Type | Description |
|---|---|
top | Top stories |
new | Newest stories |
best | Best stories |
ask | Ask HN posts |
show | Show HN posts |
jobs | Job postings |
ai | AI domain stories with time filter |
search | Search stories by query |
// Get top stories
{ "type": "top", "limit": 10 }
// Get new stories in JSON format
{ "type": "new", "limit": 20, "json": true }
// Get AI stories from last 24 hours
{ "type": "ai", "limit": 10, "period": "day" }
// Search for machine learning stories
{ "type": "search", "query": "machine learning", "limit": 5 }
// Get best stories
{ "type": "best", "limit": 15 }
🔥 Top Stories
==================================================
1. Story Title
https://example.com/story
👍 523 | 💬 156 | @author
json: true){
"count": 10,
"stories": [
{
"id": 43050023,
"title": "Story Title",
"url": "https://example.com/story",
"points": 523,
"author": "author",
"comments": 156
}
]
}