<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: insin</title><link>https://news.ycombinator.com/user?id=insin</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 13 Jun 2026 10:40:53 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=insin" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by insin in "MCP is dead?"]]></title><description><![CDATA[
<p>> Let's say you have a jq MCP. How do you pass data in and out to/from it without the data also being processed as tokens?<p>Provide a meta-tool which handles piping data in and out of any other tool, and make specific tools which can read/write data sources directly, bypassing context. Or you could go full code mode, but I'm not sure it's worth the lift unless you have Cloudflare numbers of APIs which would need tools.<p>I work on an internal model/vendor-independent chat app where the agent runs in the browser - every chat gets its own virtual origin private filesystem (OPFS) [1] directory where user attachments get written to and tools can read from/write to, and users can also provide read/write access to a real directory with window.showDirectoryPicker() [2] (both use the same API, so tools can route to/from either).<p>It can push and pull MBs of data through tools, e.g. pulling huge spreadsheets directly from SharePoint in 50,000 row chunks using a tool which calls the Excel Services REST API, passing those all into a code execution tool to join them together and process them, which generates an Excel output file using SheetJS, none of which goes into context.<p>People used to drag their multi-MB documents in and complain either it didn't work or the agent couldn't do anything useful with it. Now it just works.<p>[1] <a href="https://developer.mozilla.org/en-US/docs/Web/API/File_System_API/Origin_private_file_system" rel="nofollow">https://developer.mozilla.org/en-US/docs/Web/API/File_System...</a><p>[2] <a href="https://developer.mozilla.org/en-US/docs/Web/API/Window/showDirectoryPicker" rel="nofollow">https://developer.mozilla.org/en-US/docs/Web/API/Window/show...</a></p>
]]></description><pubDate>Sun, 31 May 2026 04:52:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=48343133</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=48343133</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48343133</guid></item><item><title><![CDATA[New comment by insin in "Hacker News front page as a site"]]></title><description><![CDATA[
<p>Nice try at trying to get me to read the friendly articles ;)</p>
]]></description><pubDate>Mon, 25 May 2026 23:23:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=48273040</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=48273040</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48273040</guid></item><item><title><![CDATA[New comment by insin in "Project Glasswing: An Initial Update"]]></title><description><![CDATA[
<p>Watching it like a hawk and stopping/redirecting, or immediately reviewing and doing the same is the only way, really.</p>
]]></description><pubDate>Sat, 23 May 2026 00:04:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=48243089</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=48243089</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48243089</guid></item><item><title><![CDATA[New comment by insin in "I believe there are entire companies right now under AI psychosis"]]></title><description><![CDATA[
<p>HN needs to start sticking an ?mx=1 on the end</p>
]]></description><pubDate>Sat, 16 May 2026 02:34:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=48156304</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=48156304</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48156304</guid></item><item><title><![CDATA[New comment by insin in "Rewrite Bun in Rust has been merged"]]></title><description><![CDATA[
<p>Congratulations to the Anthropic marketing team on their acqui-hire.</p>
]]></description><pubDate>Fri, 15 May 2026 09:55:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=48146637</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=48146637</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48146637</guid></item><item><title><![CDATA[New comment by insin in "Claude for Small Business"]]></title><description><![CDATA[
<p>I don't think it needs to specifically be a coding agent for the average user, creating apps for whatever they want to do, just something that can use code and has appropriate access for what they're already asking it to do (instead of the model bullshitting to them that it can do it, annoying them), and some way to make it repeatable when needed, like skills.<p>I'm currently doing something like this in the internal model-independent LLM chat app I work on at a F100, specifically targeted at our everyday users. <input type="file" webkitdirectory> lets the user give the model read and write access to a local folder (and OPFS lets us reuse the same fs tools we give the model for files manually attached to the chat, or for files tools want to create if they haven't granted folder access).<p>Every time we used to release a new version it was "still can't handle the 6MB Excel file I drop into it" when that was being extracted to CSV and added to context - now it can poke about in the big Excel file directly with SheetJS to pull the sheets/headers and inspect the shape of the data, and use locally sandboxed code execution to write code against either extracted data or the spreadsheet itself via SheetJS for pivot tables and such (all locally - none of which need go into the context).<p>The base models are good enough at tool calling (I really mean Claude, though, the GPTs just go on a tear calling tools with no context for the user) they're already decent at automating stuff for the user without a dedicated harness (our default system prompt is still "You are a helpful AI assistant", lol). Add tools for Graph API stuff, and now it can pull the nightly batch file from a support inbox, unzip the spreadsheet within, diff it against yesterday's and generate an import file for new users and draft an email to welcome them, something that used to be a daily support task (which I'd already automated most of - but now you don't need a dev for this kind of thing). Or go find the big 450,000+ row spreadsheet that's being automated somewhere on SharePoint, pull it down in 150,000 row chunks (Graph Excel REST API limit) and write code to go figure out whatever the user is asking.<p>Having implemented and used it, I like this setup so much it kinda ruined Claude.ai and ChatGPT.com for me, so I've hooked up similar access for them using a browser extension to add the folder picker input, with the extension talking to a local server to tell it which folder to give access to, and Claude/ChatGPT talking to the same server over MCP via a CloudFlare Tunnel to work with the selected folder.</p>
]]></description><pubDate>Thu, 14 May 2026 09:47:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=48133153</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=48133153</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48133153</guid></item><item><title><![CDATA[New comment by insin in "Show HN: Humanoid.js – One HTML file that scores how human your clicks look"]]></title><description><![CDATA[
<p>Upvoting because of how I misread those 2 letters</p>
]]></description><pubDate>Wed, 22 Apr 2026 13:12:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=47863097</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=47863097</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47863097</guid></item><item><title><![CDATA[Show HN: Themeable HN]]></title><description><![CDATA[
<p>Hi HN, I needed a distraction from the new and scary thing I was working on this weekend, so I grabbed HN's stylesheet, extracted CSS variables for every colour it defined, then re-applied them back onto HN using its own selectors (plus some extras for bits of HN which are styled inline, and some separation between header and content styling), allowing it to be themed with variables.<p>After using them to implement a dark mode (and a pure black variant for OLED), plugging everything into my existing HN browser extension which already lets you apply custom CSS, and making it handle theme switching via attributes on <html>, custom styles and theming are now manageable using it. There are a few examples in the friendly release notes above, with screenshots and copy-pasteable CSS.<p>If you just want to grab the stylesheet which sets up the CSS variables and application rules to use in your own thing, it's here [1], but not _everything_ is themeable without a bit more work - in particular, I had to replace the HN <img src="y18.svg"> logo with an inline version of the SVG, so its fills can be controlled by CSS.<p>[1] <a href="https://github.com/insin/comments-owl-for-hacker-news/blob/master/style.css" rel="nofollow">https://github.com/insin/comments-owl-for-hacker-news/blob/m...</a></p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47836108">https://news.ycombinator.com/item?id=47836108</a></p>
<p>Points: 8</p>
<p># Comments: 1</p>
]]></description><pubDate>Mon, 20 Apr 2026 15:54:06 +0000</pubDate><link>https://github.com/insin/comments-owl-for-hacker-news/releases/tag/v3.6.1</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=47836108</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47836108</guid></item><item><title><![CDATA[New comment by insin in "Show HN: Ilha – a UI library that fits in an AI context window"]]></title><description><![CDATA[
<p>Create a new UI library without spending a decent chunk of the landing page telling the reader what it <i>isn't</i> challenge.</p>
]]></description><pubDate>Thu, 16 Apr 2026 15:24:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=47794610</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=47794610</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47794610</guid></item><item><title><![CDATA[New comment by insin in "YouTube users get option to set their Shorts time limit to zero minutes"]]></title><description><![CDATA[
<p>Upvoting because Shorts are terrible. Flagging because the submission title - which is 100% faithful to the friendly article - is a complete lie!<p>Plug: I added a bunch of features to Control Panel for YouTube [1] which let you either hide Shorts completely, everywhere (which is the default) or take more control of how you use them if you do (e.g. redirecting to the normal video player)<p>[1] <a href="https://soitis.dev/control-panel-for-youtube" rel="nofollow">https://soitis.dev/control-panel-for-youtube</a></p>
]]></description><pubDate>Thu, 16 Apr 2026 01:19:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=47787550</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=47787550</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47787550</guid></item><item><title><![CDATA[New comment by insin in "Project Maven Put A.I. Into the Kill Chain"]]></title><description><![CDATA[
<p>Bravo New Yorker, defeating my regular expression because I've never once seen it referred to as A.I. (I'm sure it happens)</p>
]]></description><pubDate>Wed, 15 Apr 2026 23:41:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=47786831</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=47786831</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47786831</guid></item><item><title><![CDATA[New comment by insin in "JSON formatter Chrome plugin now closed and injecting adware"]]></title><description><![CDATA[
<p>This was added in January:<p><a href="https://github.com/callumlocke/json-formatter/commit/caa213d19497e21c4da9e670427d20e8ff2ceeb6" rel="nofollow">https://github.com/callumlocke/json-formatter/commit/caa213d...</a><p>Someone on Twitter noticed it pretty quickly, considering:<p><a href="https://twitter.com/devinsays/status/2012195612586914143?mx=1" rel="nofollow">https://twitter.com/devinsays/status/2012195612586914143?mx=...</a><p>Extensions which ask for all URLs should really be subjected to more thorough reviews.</p>
]]></description><pubDate>Sat, 11 Apr 2026 04:22:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=47727375</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=47727375</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47727375</guid></item><item><title><![CDATA[New comment by insin in "I still prefer MCP over skills"]]></title><description><![CDATA[
<p>At the level of the agent, it knows nothing about MCP, all it has is a list of tools. It can do anything the tools you give it let it do.</p>
]]></description><pubDate>Fri, 10 Apr 2026 12:45:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=47717290</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=47717290</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47717290</guid></item><item><title><![CDATA[New comment by insin in "I still prefer MCP over skills"]]></title><description><![CDATA[
<p>Not all agents are running in your CLI or even in any CLI, which is why people are arguing past each other all over the topic of MCP.<p>I implemented this in an agent which runs in the browser (in our internal equivalent of ChatGPT or Claude's web UI), connecting directly to Atlassian MCP.</p>
]]></description><pubDate>Fri, 10 Apr 2026 12:43:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=47717271</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=47717271</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47717271</guid></item><item><title><![CDATA[New comment by insin in "I still prefer MCP over skills"]]></title><description><![CDATA[
<p>The more things change in tech, the more they stay the same.<p>The shoe is the sign. Let us follow His example!<p>Cast off the shoes! Follow the Gourd!</p>
]]></description><pubDate>Fri, 10 Apr 2026 10:18:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=47715913</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=47715913</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47715913</guid></item><item><title><![CDATA[New comment by insin in "I still prefer MCP over skills"]]></title><description><![CDATA[
<p>You can make it compose by also giving the agent the necessary tools to do so.<p>I encountered a similar scenario using Atlassian MCP recently, where someone needed to analyse hundreds of Confluence child pages from the last couple of years which all used the same starter template - I gave the agent a tool to let it call any other tool in batch and expose the results for subsequent tools to use as inputs, rather than dumping it straight into the context (e.g. another tool which gives each page to a sub-agent with a structured output schema and a prompt with extraction instructions, or piping the results into a code execution tool).<p>It turned what would have been hundreds of individual tool calls filling the context with multiple MBs of raw confluence pages, into a couple of calls returning relevant low-hundreds of KBs of JSON the agent could work further with.</p>
]]></description><pubDate>Fri, 10 Apr 2026 10:13:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=47715884</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=47715884</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47715884</guid></item><item><title><![CDATA[New comment by insin in "I still prefer MCP over skills"]]></title><description><![CDATA[
<p>The chatbot app initiates an OAuth flow, user SSOs, chatbot app receives tokens to its callback URL, then tool calls can access whatever the user can access.<p>If you use the official MCP SDK, it has interfaces you implement for auth, so all you need to do is kick off the OAuth flow with a URL it figures out and hands you, storing the resulting tokens and producing them when requested. It also handles using refresh tokens, so there's just a bit of light friendly owl finishing on top.<p>Source: I just implemented this for our (F100) internal provider and model agnostic chat app. People can't seem to see past the coding agents they're running on their own machines when MCP comes up.</p>
]]></description><pubDate>Fri, 10 Apr 2026 07:27:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=47714760</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=47714760</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47714760</guid></item><item><title><![CDATA[New comment by insin in "Claude mixes up who said what"]]></title><description><![CDATA[
<p>Gemini seems to be an expert in mistaking its own terrible suggestions as written by you, if you keep going instead of pruning the context</p>
]]></description><pubDate>Thu, 09 Apr 2026 10:18:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=47701657</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=47701657</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47701657</guid></item><item><title><![CDATA[New comment by insin in "Show HN: Orange Juice – Small UX improvements that make HN easier to read"]]></title><description><![CDATA[
<p>Ooh, I'm having that feature for the next version of Comments Owl for Hacker News (which already moves the [-] to the left and increases the size of it on mobile), but does that not lead to accidental collapsing while scrolling on mobile?<p>I've already added using a confirm() for flagging and hiding in list pages on mobile to it because it's so easy to accidentally hit while scrolling.</p>
]]></description><pubDate>Thu, 09 Apr 2026 06:22:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=47699953</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=47699953</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47699953</guid></item><item><title><![CDATA[New comment by insin in "App Store sees 84% surge in new apps as AI coding tools take off"]]></title><description><![CDATA[
<p>/r/chrome_extensions feels like it's getting close to being 100% LLM generated, extension code, submission descriptions which read like you accidentally went to LinkedIn, and generic LLM replies</p>
]]></description><pubDate>Thu, 09 Apr 2026 04:34:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=47699295</link><dc:creator>insin</dc:creator><comments>https://news.ycombinator.com/item?id=47699295</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47699295</guid></item></channel></rss>