Собирает дайджест AI & Tech трендов за день с shir-man.com и генерирует красивый HTML-отчёт с вкладками. Используй когда пользователь просит: дайджест, тренды, новости AI, что нового в tech, shirman, shir-man, ежедневный обзор технологий, tech digest, trend report — даже если не упоминает shir-man напрямую.
$npx -y skills add jojoprison/shirman-digest --skill shirman-digestInstalls into the current project.
Run `npx skills use "https://github.com/jojoprison/shirman-digest" --skill "jojoprison/shirman-digest"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.
Use the skills in "https://github.com/jojoprison/shirman-digest" that are relevant to the current task. Run `npx skills add "https://github.com/jojoprison/shirman-digest"` and select the relevant skills, then follow their instructions.
| 1 | # shirman-digest |
| 2 | |
| 3 | > Claude Code plugin for automated AI & Tech trends digest from [shir-man.com](https://shir-man.com/homepage/) |
| 4 | |
| 5 | [](https://claude.ai) |
| 6 | [](LICENSE) |
| 7 | [](https://shir-man.com/homepage/) |
| 8 | [](https://t.me/denissexy) |
| 9 | [](https://t.me/denis_news_feed) |
| 10 | |
| 11 | **[English](#what-it-does)** | **[Русский](#что-делает)** |
| 12 | |
| 13 | --- |
| 14 | |
| 15 | ## What It Does |
| 16 | |
| 17 | Automatically collects a daily AI & Tech trends digest from [shir-man.com](https://shir-man.com/homepage/) and generates a beautiful HTML report. |
| 18 | |
| 19 | **4 tabs, zero duplicates:** |
| 20 | |
| 21 | | Tab | Content | |
| 22 | |-----|---------| |
| 23 | | **GitHub Trending** | Fastest-growing repositories | |
| 24 | | **Hacker News** | Top discussions and articles | |
| 25 | | **Lobsters** | Expert-curated technical content | |
| 26 | | **AI Agents** | New tools and frameworks | |
| 27 | |
| 28 | Each article appears in **exactly one tab**. Priority: AI Agents > GitHub Trending > Hacker News > Lobsters. |
| 29 | |
| 30 | ### Three-Question Filter |
| 31 | |
| 32 | Every item passes a quality gate before inclusion: |
| 33 | |
| 34 | | Question | Passes if... | |
| 35 | |----------|-------------| |
| 36 | | **Novelty** — is this actually new? | New project, fresh release, original approach | |
| 37 | | **Credibility** — backed by production usage? | GitHub stars, production users, benchmarks | |
| 38 | | **Applicability** — solves a real problem? | Applicable to your workflows or stack | |
| 39 | |
| 40 | Items scoring 0/3 are excluded. This filters ~80% of noise. |
| 41 | |
| 42 | ## Architecture |
| 43 | |
| 44 | ``` |
| 45 | ┌─────────────┐ ┌──────────────┐ ┌──────────────┐ ┌─────────────┐ |
| 46 | │ PinchTab │────▶│ URL Resolve │────▶│ WebFetch │────▶│ HTML Report │ |
| 47 | │ (SPA nav) │ │ (parallel) │ │ (articles) │ │ (4 tabs) │ |
| 48 | └─────────────┘ └──────────────┘ └──────────────┘ └─────────────┘ |
| 49 | │ │ │ │ |
| 50 | snapshot HN Algolia parallel dark/light |
| 51 | + clicks + WebSearch fetch x8 theme toggle |
| 52 | ``` |
| 53 | |
| 54 | ## Installation |
| 55 | |
| 56 | ### Option 1: Plugin Marketplace (recommended) |
| 57 | |
| 58 | ```bash |
| 59 | # Add marketplace |
| 60 | claude plugin marketplace add jojoprison/shirman-digest |
| 61 | |
| 62 | # Install plugin |
| 63 | claude plugin install shirman-digest@shirman-digest |
| 64 | ``` |
| 65 | |
| 66 | ### Option 2: Manual (skill only) |
| 67 | |
| 68 | ```bash |
| 69 | mkdir -p ~/.claude/skills/shirman-digest |
| 70 | curl -sL https://raw.githubusercontent.com/jojoprison/shirman-digest/main/plugins/shirman-digest/skills/shirman-digest/SKILL.md \ |
| 71 | -o ~/.claude/skills/shirman-digest/SKILL.md |
| 72 | ``` |
| 73 | |
| 74 | ## Usage |
| 75 | |
| 76 | In Claude Code: |
| 77 | |
| 78 | ``` |
| 79 | /shirman-digest |
| 80 | ``` |
| 81 | |
| 82 | The generated report includes: |
| 83 | - Dark/light theme toggle (persisted in localStorage) |
| 84 | - Clickable links to all original articles |
| 85 | - 4 deduplicated category tabs |
| 86 | - Color-coded source badges (GitHub=green, HN=orange, Lobsters=red, AI=purple) |
| 87 | - "Key takeaway" blocks for important articles |
| 88 | |
| 89 | ## Requirements |
| 90 | |
| 91 | - [Claude Code](https://claude.ai/claude-code) with MCP support |
| 92 | - **PinchTab MCP** — for SPA navigation |
| 93 | |
| 94 | ## Plugin Structure |
| 95 | |
| 96 | ``` |
| 97 | shirman-digest/ |
| 98 | ├── .claude-plugin/ |
| 99 | │ └── marketplace.json # Marketplace manifest |
| 100 | ├── plugins/ |
| 101 | │ └── shirman-digest/ |
| 102 | │ ├── .claude-plugin/ |
| 103 | │ │ └── plugin.json # Plugin manifest |
| 104 | │ └── skills/ |
| 105 | │ └── shirman-digest/ |
| 106 | │ └── SKILL.md # Skill instructions |
| 107 | ├── SKILL.md # Standalone (for manual install) |
| 108 | ├── CHANGELOG.md # English changelog |
| 109 | ├── CHANGELOG.ru.md # Russian changelog |
| 110 | ├── README.md |
| 111 | └── LICENSE |
| 112 | ``` |
| 113 | |
| 114 | ## Links |
| 115 | |
| 116 | - [shir-man.com](https://shir-man.com/homepage/) — data source |
| 117 | - [@denissexy](https://t.me/denissexy) — Telegram channel (author) |
| 118 | - [@denis_news_feed](https://t.me/denis_news_feed) — Telegram news feed |
| 119 | |
| 120 | --- |
| 121 | |
| 122 | # Русский |
| 123 | |
| 124 | ## Что делает |
| 125 | |
| 126 | Автоматически собирает дайджест AI & Tech трендов за день с [shir-man.com](https://shir-man.com/homepage/) и генерирует HTML-отчёт. |
| 127 | |
| 128 | **4 вкладки, ноль дублей:** |
| 129 | |
| 130 | | Вкладка | Контент | |
| 131 | |---------|---------| |
| 132 | | **GitHub Trending** | Самые быстрорастущие репозитории | |
| 133 | | **Hacker News** | Лучшие обсуждения и статьи | |
| 134 | | **Lobsters** | Экспертный технический контент | |
| 135 | | **AI Agents** | Новые инструменты и фреймворки | |
| 136 | |
| 137 | Каждая статья появляется **ровно в одной вкладке**. Приоритет: AI Agents > GitHub Trending > Hacker News > Lobsters. |
| 138 | |
| 139 | ### Трёхвопросный фильтр |
| 140 | |
| 141 | Каждый элемент проходит проверку кач |