ワンクリックで
summarize-hacker-news
Picks the most interesting articles from Hacker News, reads them, and emails you a summary
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Picks the most interesting articles from Hacker News, reads them, and emails you a summary
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Converts webpages, articles, or documents into study flashcards that you can review with spaced repetition
Generate images and videos using Atlas Cloud AI models (Kling, Flux, etc.). Use when the user wants to create AI-generated images or videos.
Optimize Claude Code Pro/Max usage by starting the 5-hour rolling window early morning, giving you more resets during waking hours.
Fetch up-to-date, version-specific library documentation and code examples from Context7. Use this skill whenever the user asks about a specific programming library, framework, or API, or when writing code that depends on a library. Replaces stale training-data knowledge with live docs.
Send yourself a daily text message with a randomly selected or rotating positive affirmation.
Creates an ideal dating profile by writing your bio and choosing the best photos in the right order
| name | summarize-hacker-news |
| description | Picks the most interesting articles from Hacker News, reads them, and emails you a summary |
| metadata | {"author":"0.zo.computer","category":"Community","display-name":"Summarize Hacker News front page","emoji":"🔶"} |
curl -L "https://hn.algolia.com/api/v1/search?tags=front_page" | python3 -c "
import json, sys
data = json.load(sys.stdin)
for hit in data['hits']:
print(f\"{hit.get('objectID')} | {hit.get('title')} | {hit.get('points')} pts | {hit.get('num_comments')} comments | {hit.get('url')}\")
"
tool read_webpage to get the contents of each article.Summarize all the articles in a bullet list. For each article:
Do not use citations, that would be redundant since links are included already.
Use tool send_email_to_user to send me the summary, with an appropriate title that includes today's date and time.