<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: girish_r</title><link>https://news.ycombinator.com/user?id=girish_r</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 14 Sep 2026 07:56:53 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=girish_r" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by girish_r in "Ask HN: What are you working on? (September 2026)"]]></title><description><![CDATA[
<p>I'm working on SpecPilot (<a href="https://specpilot.dev" rel="nofollow">https://specpilot.dev</a>), a spec-driven development layer that sits in front of Claude Code, Cursor, Copilot and the rest. It deliberately doesn't generate code. It scaffolds a .specs/ folder and hands the actual writing off to whatever agent you already use, so the specs become the thing the agent is held to instead of a prompt you retype every session.<p>Open source, free, no login, nothing to sell. I'm not trying to build a business on this. I just want agents to write better code, and that only happens when they have something firmer than a chat prompt to work against. CLI is here: <a href="https://github.com/girishr/SpecPilot" rel="nofollow">https://github.com/girishr/SpecPilot</a><p>It started as a TypeScript CLI in January. Enough people told me they either didn't want a CLI or didn't know how to use one that I rebuilt the front door as a guided chat: 27 questions, runs fully offline in the browser, outputs the .specs/ tree plus an onboarding prompt for your IDE.<p>Recently shipped an MCP server so the agent can run the questionnaire itself rather than the human doing it, published to the official MCP registry and Smithery. Next is brownfield: point it at an existing repo and backfill specs from the code.
Honest state of things: the Product Hunt launch got 4 votes and around 100 visitors, and I had no event tracking wired up, so I couldn't even tell how many of those generated anything. Fixed since. Usage is small but real, and it's coming through MCP rather than the web app, which I did not expect.<p>The part I keep circling back to is that spec generation is easy to copy. Spec enforcement is where the value is: checking a diff against the spec and failing loudly. Feedback welcome, especially from anyone who tried SDD on an existing codebase and gave up.</p>
]]></description><pubDate>Mon, 14 Sep 2026 02:44:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=49691289</link><dc:creator>girish_r</dc:creator><comments>https://news.ycombinator.com/item?id=49691289</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49691289</guid></item><item><title><![CDATA[Bernie Sanders proposes 20 years in prison for developers pursuing ASI plans]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.tomshardware.com/tech-industry/artificial-intelligence/sanders-proposes-20-year-prison-sentence-for-ai-devs-who-plow-ahead-with-artificial-superintelligence-plans-penalty-on-par-with-illegally-developing-rogue-nuclear-weapons">https://www.tomshardware.com/tech-industry/artificial-intelligence/sanders-proposes-20-year-prison-sentence-for-ai-devs-who-plow-ahead-with-artificial-superintelligence-plans-penalty-on-par-with-illegally-developing-rogue-nuclear-weapons</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49691109">https://news.ycombinator.com/item?id=49691109</a></p>
<p>Points: 15</p>
<p># Comments: 5</p>
]]></description><pubDate>Mon, 14 Sep 2026 02:21:03 +0000</pubDate><link>https://www.tomshardware.com/tech-industry/artificial-intelligence/sanders-proposes-20-year-prison-sentence-for-ai-devs-who-plow-ahead-with-artificial-superintelligence-plans-penalty-on-par-with-illegally-developing-rogue-nuclear-weapons</link><dc:creator>girish_r</dc:creator><comments>https://news.ycombinator.com/item?id=49691109</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49691109</guid></item><item><title><![CDATA[Texts Reveal Kash Patel Ordering Staff to Fight "Ifindretards" Account]]></title><description><![CDATA[
<p>Article URL: <a href="https://newrepublic.com/post/215320/texts-kash-patel-order-staff-mean-social-media-posts-ifindretards">https://newrepublic.com/post/215320/texts-kash-patel-order-staff-mean-social-media-posts-ifindretards</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49681268">https://news.ycombinator.com/item?id=49681268</a></p>
<p>Points: 80</p>
<p># Comments: 3</p>
]]></description><pubDate>Sun, 13 Sep 2026 08:06:42 +0000</pubDate><link>https://newrepublic.com/post/215320/texts-kash-patel-order-staff-mean-social-media-posts-ifindretards</link><dc:creator>girish_r</dc:creator><comments>https://news.ycombinator.com/item?id=49681268</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49681268</guid></item><item><title><![CDATA[New comment by girish_r in "I built a CLI to make spec-driven development usable"]]></title><description><![CDATA[
<p>Some context:<p>I intentionally avoided OpenAPI / heavy spec formats.
The goal was:
- something devs actually write
- easy to diff in PRs
- flexible enough for non-API workflows too<p>If you’ve tried spec-first approaches before and bounced off them,
I’d love to know what didn’t work for you.</p>
]]></description><pubDate>Fri, 23 Jan 2026 07:54:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=46729739</link><dc:creator>girish_r</dc:creator><comments>https://news.ycombinator.com/item?id=46729739</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46729739</guid></item><item><title><![CDATA[I built a CLI to make spec-driven development usable]]></title><description><![CDATA[
<p>Hi HN ,<p>I built SpecPilot to solve a problem I kept running into:
spec-first development sounds great, but most tools are either too heavy or too rigid for day-to-day dev work.<p>SpecPilot is a small, open-source CLI that helps you:
- define specs first (Markdown-based)
- keep them versioned alongside code
- scaffold projects and workflows from those specs<p>I built it for myself and my team, and decided to open-source it.<p>Website: https://specpilot.dev
GitHub: https://github.com/girishr/SpecPilot<p>Would really appreciate feedback on:
- whether this fits into your workflow
- what feels unnecessary
- what’s missing for real-world use<p>Happy to answer any questions.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46729734">https://news.ycombinator.com/item?id=46729734</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Fri, 23 Jan 2026 07:54:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=46729734</link><dc:creator>girish_r</dc:creator><comments>https://news.ycombinator.com/item?id=46729734</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46729734</guid></item><item><title><![CDATA[No more TouchWiz jokes: Samsung's software has caught up to its hardware]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.theverge.com/2017/4/18/15338052/samsung-galaxy-s8-touchwiz-android-software?ref=techpulse.co">https://www.theverge.com/2017/4/18/15338052/samsung-galaxy-s8-touchwiz-android-software?ref=techpulse.co</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=14183506">https://news.ycombinator.com/item?id=14183506</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 24 Apr 2017 11:58:09 +0000</pubDate><link>https://www.theverge.com/2017/4/18/15338052/samsung-galaxy-s8-touchwiz-android-software?ref=techpulse.co</link><dc:creator>girish_r</dc:creator><comments>https://news.ycombinator.com/item?id=14183506</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14183506</guid></item><item><title><![CDATA[How to free GBs of space on an iPhone using the Cleopatra trick]]></title><description><![CDATA[
<p>Article URL: <a href="http://techathlon.com/free-gbs-space-iphone-deleting-photos-apps-files-cleopatra-trick/">http://techathlon.com/free-gbs-space-iphone-deleting-photos-apps-files-cleopatra-trick/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=14182784">https://news.ycombinator.com/item?id=14182784</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 24 Apr 2017 08:45:28 +0000</pubDate><link>http://techathlon.com/free-gbs-space-iphone-deleting-photos-apps-files-cleopatra-trick/</link><dc:creator>girish_r</dc:creator><comments>https://news.ycombinator.com/item?id=14182784</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14182784</guid></item></channel></rss>