一键导入
process-news-digest
End-to-end workflow to process daily news digest: ensures journal, cleans links, tags, and organizes them.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
End-to-end workflow to process daily news digest: ensures journal, cleans links, tags, and organizes them.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Appends relevant hashtags to journal entries based on content analysis. Intended for LLM execution.
Organizes tagged links from a source file into the daily journal structure.
Removes timestamps and decodes URLs in the specified markdown file.
Checks if the daily journal file exists for a given date. If not, creates it using the 'Daily framework' template.
Removes extraneous information (source, author, etc.) from link titles using LLM intelligence.
Empties the content of a specified file. Use with caution.
| name | process_news_digest |
| description | End-to-end workflow to process daily news digest: ensures journal, cleans links, tags, and organizes them. |
This is the main skill that chains all other skills to perform the full nightly news digest workflow.
Ensure Daily Journal Exists
ensure_daily_journal python script.journals/YYYY_MM_DD.md exists and has the template.python3 .agent/skills/ensure_daily_journal/ensure_journal.py (defaults to today)Clean Temp Links (Formatting)
clean_temp_links script on pages/TempLinks.md.**HH:MM**, decode URLs.python3 .agent/skills/clean_temp_links/clean_links.py "../notes/pages/TempLinks.md"Clean Link Titles
clean_link_titles LLM skill on ../notes/pages/TempLinks.md. | TechNews and prefixes intelligently.Add Hashtags
add_hashtags LLM skill on ../notes/pages/TempLinks.md.Organize to Journal
organize_links_to_journal LLM skill.../notes/pages/TempLinks.mdjournals/YYYY_MM_DD.mdClear Temp Links
clear_file script on ../notes/pages/TempLinks.md.TempLinks.md.python3 .agent/skills/clear_file/clear_file.py "../notes/pages/TempLinks.md"Run this skill to execute the entire pipeline.