Hacker news digest
Generate a Japanese digest for yesterday's Hacker News stories scoring over 100 points, matching the `main.py` workflow without `google-generativeai` or `GEMINI_API_KEY`. Use this skill when users ask for a daily HN digest, want top Hacker News posts translated and summarized in Japanese, or want the Gemini-based workflow replaced with a skill.From its SKILL.md
npx -y skills add tsubasaogawa/hacker-news-digestAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
3.0 KB, 669 tokens by cl100k_base, as published. Nobody here has run it
Hacker News digest in Japanese
Use this skill to reproduce the current main.py behavior in a reusable way, but rely on the model's own language abilities instead of Gemini.
Default scope
Unless the user explicitly asks for something else, keep the behavior fixed to match main.py:
- Time window: yesterday in UTC, from
00:00:00to the next00:00:00 - Source:
https://hn.algolia.com/api/v1/search_by_date - Filters:
tags=story,points>100 - Page size:
hitsPerPage=100 - Output: a Markdown table in Japanese
Do not ask for GEMINI_API_KEY. Do not use google-generativeai.
Workflow
- Read
scripts/fetch_hn_stories.pyto confirm the exact fetch logic. - Prefer running
uv run python skills/hacker-news-digest-ja/scripts/fetch_hn_stories.pyfrom the repository root. - If
uvis unavailable, fall back topython3 skills/hacker-news-digest-ja/scripts/fetch_hn_stories.py. - If shell execution cannot reach the network, reproduce the script's exact URL and filters with the available web-fetching tool instead of changing the behavior.
- Use the fetched stories as the source of truth. Preserve the order returned by the API.
- For each story:
- Keep
original_titleexactly as provided. - Write a natural Japanese translation for
japanese_title. - Write a one-sentence Japanese summary for
summary.
- Keep
- Produce the final answer as a Markdown table and nothing else unless the user asks for extra commentary.
Output format
Use this exact header:
| タイトル (原文) | タイトル (日本語訳) | 概要 |
| :--- | :--- | :--- |
Then output one row per story in this shape:
| [Original title](url) | 日本語訳 | 1 文の要約 |
Formatting rules:
- Escape any literal
|inside cell text as|. - If a story URL is missing, use
#as the link target. - Keep the original title in the link text exactly as fetched.
- Keep the summary to one Japanese sentence.
- Do not prepend or append prose around the table unless the user explicitly asks for commentary.
Quality bar
- Prefer concise, natural Japanese over word-for-word translation.
- Make summaries informative enough that the user can skim the table and understand why the post mattered.
- Do not invent details that are not supported by the title or obvious public context.
- If the fetch step fails, report the error clearly instead of fabricating a digest.
Typical trigger examples
- "昨日の Hacker News の人気記事を日本語で一覧にして"
- "
main.pyを Gemini なしで使える skill にしたい" - "HN の 100 点超え記事を訳して 1 行ずつ要約して"
What ships with it: 4 files
7.3 KB alongside SKILL.md, 1 of them executable
scripts/
- fetch_hn_stories.pyruns2.0 KB
- .gitignore109 B
- .python-version5 B
- README.md5.2 KB