<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Camille Roux</title>
    <description>The latest articles on DEV Community by Camille Roux (@camillerouxdev).</description>
    <link>https://dev.to/camillerouxdev</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1747781%2F642081a8-f9b8-4978-8cd7-74c7cf9af592.jpeg</url>
      <title>DEV Community: Camille Roux</title>
      <link>https://dev.to/camillerouxdev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/camillerouxdev"/>
    <language>en</language>
    <item>
      <title>I built a /digest skill for Claude Code. No more HN rabbit holes.</title>
      <dc:creator>Camille Roux</dc:creator>
      <pubDate>Mon, 13 Apr 2026 12:26:05 +0000</pubDate>
      <link>https://dev.to/camillerouxdev/i-built-a-digest-skill-for-claude-code-no-more-hn-rabbit-holes-did</link>
      <guid>https://dev.to/camillerouxdev/i-built-a-digest-skill-for-claude-code-no-more-hn-rabbit-holes-did</guid>
      <description>&lt;p&gt;I have a bad habit: I check Hacker News constantly. Not because I need to — just because it's there.&lt;/p&gt;

&lt;p&gt;So I built &lt;code&gt;/digest&lt;/code&gt;: a Claude Code skill that fetches the best dev articles from HN and Lobste.rs, deduplicates them, and drops a clean daily recap directly in my terminal.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbqczmbay9uofvadhbfka.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbqczmbay9uofvadhbfka.gif" alt=" " width="600" height="442"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  What it looks like
&lt;/h1&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;  # Tech Digest -- April 11 to April 13, 2026
&lt;span class="gt"&gt;  &amp;gt; 21 articles from 2 sources over the last 3 days&lt;/span&gt;

  ## Sunday, April 13
&lt;span class="p"&gt;
  -&lt;/span&gt; &lt;span class="gs"&gt;**Programming used to be free**&lt;/span&gt; -- &lt;span class="sb"&gt;`culture`&lt;/span&gt; -- &lt;span class="ge"&gt;*Lobste.rs*&lt;/span&gt;
&lt;span class="p"&gt;  -&lt;/span&gt; &lt;span class="gs"&gt;**Exploiting the most prominent AI agent benchmarks**&lt;/span&gt; -- &lt;span class="sb"&gt;`ai`&lt;/span&gt; -- &lt;span class="ge"&gt;*Hacker News*&lt;/span&gt;
&lt;span class="p"&gt;  -&lt;/span&gt; &lt;span class="gs"&gt;**All elementary functions from a single binary operator**&lt;/span&gt; -- &lt;span class="sb"&gt;`math`&lt;/span&gt; -- &lt;span class="ge"&gt;*Lobste.rs*&lt;/span&gt;

  ## Saturday, April 12
&lt;span class="p"&gt;
  -&lt;/span&gt; &lt;span class="gs"&gt;**An undocumented bug in the Apollo 11 guidance computer**&lt;/span&gt; -- &lt;span class="sb"&gt;`testing`&lt;/span&gt; -- &lt;span class="ge"&gt;*Lobste.rs*&lt;/span&gt;
&lt;span class="p"&gt;  -&lt;/span&gt; &lt;span class="gs"&gt;**CPU-Z and HWMonitor compromised**&lt;/span&gt; -- &lt;span class="sb"&gt;`security`&lt;/span&gt; -- &lt;span class="ge"&gt;*Hacker News*&lt;/span&gt;
  ...
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h1&gt;
  
  
  How it works
&lt;/h1&gt;

&lt;p&gt;The skill is a small Python script (fetch_feeds.py) that:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Reads a sources.yml config file&lt;/li&gt;
&lt;li&gt;Fetches all feeds in parallel (threads)&lt;/li&gt;
&lt;li&gt;Parses XML, filters by date, deduplicates by URL&lt;/li&gt;
&lt;li&gt;Keeps the top N articles per day by score&lt;/li&gt;
&lt;li&gt;Outputs TSV — Claude formats it as markdown&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Zero external dependencies. Pure stdlib.&lt;/p&gt;

&lt;p&gt;When you type &lt;code&gt;/digest&lt;/code&gt;, Claude Code reads the skill definition, runs the script, and formats the output. The number of days is configurable:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight console"&gt;&lt;code&gt;&lt;span class="gp"&gt;  /digest      #&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;last 3 days &lt;span class="o"&gt;(&lt;/span&gt;default&lt;span class="o"&gt;)&lt;/span&gt;
&lt;span class="gp"&gt;  /digest 7    #&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;last 7 days
&lt;span class="gp"&gt;  /digest 14   #&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;last 14 days
&lt;span class="go"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;GitHub: &lt;a href="https://github.com/camilleroux/tech-digest" rel="noopener noreferrer"&gt;https://github.com/camilleroux/tech-digest&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feedback and PRs welcome — especially new sources.&lt;/p&gt;

</description>
      <category>claude</category>
      <category>productivity</category>
      <category>opensource</category>
      <category>digest</category>
    </item>
  </channel>
</rss>
