<?xml version="1.0" encoding="UTF-8"?>


<feed xmlns="http://www.w3.org/2005/Atom">
    <id>https://www.julianwyngaard.com/tags/claude/feed.xml</id>
    <title>Loosely Coupled Thoughts &#x2014; tagged claude</title>
    <subtitle>A blog about software engineering, AI, and development.</subtitle>
    <link rel="self" type="application/atom+xml" href="https://www.julianwyngaard.com/tags/claude/feed.xml"/>
    <link rel="alternate" type="text/html" href="https://www.julianwyngaard.com/tags/claude"/>
    <updated>2026-06-14T12:10:33.637382+12:00</updated>
    <author>
        <name>Julian Wyngaard</name>
    </author>
    <entry>
        <id>urn:uuid:019ebb18-a45f-7f01-883c-7e56dbc9fdf7</id>
        <title>AI Subscription plans are more generous than API pricing</title>
        <link rel="alternate" type="text/html" href="https://www.julianwyngaard.com/2026/06/12/ai-subscriptions-are-more-generous-than-api-pricing"/>
        <published>2026-06-12T21:10:19.104437+12:00</published>
        <updated>2026-06-14T12:10:33.637382+12:00</updated>
        <category term="ai" label="ai"/>
        <category term="anthropic" label="anthropic"/>
        <category term="llms" label="llms"/>
        <category term="claude" label="claude"/>
        <category term="generative-ai" label="generative-ai"/>
        <category term="openai" label="openai"/>
        <content type="html">&lt;p&gt;&lt;a href=&quot;https://x.com/semianalysis_/status/2064815044085318040?s=46&quot;&gt;AI Subscription plans are more generous than API pricing&lt;/a&gt;&lt;/p&gt;&lt;p&gt;SemiAnalysis did a test on Anthropic/Claude subscription plans, running long horizon tasks until they maxed out.&lt;/p&gt;
&lt;p&gt;The subscriptions are far more generous than API pricing.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://cdn.julianwyngaard.com/3f1cee9c-cc9b-4e55-ad73-191abe9cb146.png&quot; alt=&quot;AI Subscriptions vs Pricing comparison&quot;&gt;&lt;/p&gt;
&lt;p&gt;When I first started using these tools I went the API route as my personal usage fluctuated a lot. But after a couple of months it was clear this worked out a lot more expensive and so switched to the paid plans even if not using all the quota.&lt;/p&gt;
&lt;p&gt;Go with the paid plan.&lt;/p&gt;</content>
    </entry>
    <entry>
        <id>urn:uuid:019e7c64-e05b-71bf-8e99-9e087da764f8</id>
        <title>Designing a Feature with Claude Design &#x2014; Then Handing It to Claude Code</title>
        <link rel="alternate" type="text/html" href="https://www.julianwyngaard.com/2026/05/31/designing-a-feature-with-claude-design-then-handing-it-to-claude-code"/>
        <published>2026-05-31T17:48:59.372831+12:00</published>
        <updated>2026-05-31T17:48:59.372831+12:00</updated>
        <category term="ai" label="ai"/>
        <category term="engineering-with-ai" label="engineering-with-ai"/>
        <category term="context-engineering" label="context-engineering"/>
        <category term="anthropic" label="anthropic"/>
        <category term="claude" label="claude"/>
        <category term="claude-design" label="claude-design"/>
        <category term="claude-code" label="claude-code"/>
        <category term="ux-design" label="ux-design"/>
        <content type="html">&lt;p&gt;I&apos;ve been wanting to give &lt;a href=&quot;https://www.anthropic.com/news/claude-design-anthropic-labs&quot;&gt;Claude Design&lt;/a&gt; a try. In this post I&apos;ll walk through my first use of it for designing some new functionality I wanted for my blog CMS. My use here is probably very basic, but it was an interesting exercise, and in particular I wanted to see how I could hand the design off for building.&lt;/p&gt;
&lt;p&gt;Just a small disclaimer: I&apos;m not a UX designer, or a creative person in general. But that&apos;s exactly why this exercise was interesting &#x2014; it did a far better job than I ever could.&lt;/p&gt;
&lt;p&gt;Getting into it...&lt;/p&gt;
&lt;p&gt;I&apos;ve recently built this blog site where this article is being read (I will write about this separately). It&apos;s very new and the feature/capability set is minimal, just enough functionality to manage, publish and serve blog content.&lt;/p&gt;
&lt;p&gt;It has a custom-built CMS for managing the content, and supports slug-like tags that I can selectively apply to any of the content. These tags are visible to the right side of this article (or at the bottom on mobile).&lt;/p&gt;
&lt;p&gt;When writing or editing content, it has a section where I can add new tags or use existing ones. Below shows editing an article in the CMS I wrote recently about &lt;a href=&quot;https://www.julianwyngaard.com/2026/04/24/human-review-is-the-bottleneck/&quot;&gt;human reviews being a bottleneck&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://cdn.julianwyngaard.com/f5b7e7b7-2815-4c16-af82-675a90871f9e.png&quot; alt=&quot;Blog CMS Edit Post&quot;&gt;&lt;/p&gt;
&lt;p&gt;The behaviour of the tags input field is: On post creation, any never-before-seen tags will be created in the tags table in the database, existing tags will be referenced.&lt;/p&gt;
&lt;p&gt;At first sight it looks ok, but:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;It has no option to select existing tags.&lt;/li&gt;
&lt;li&gt;It doesn&apos;t indicate if a tag being added was one that already existed or would be created.&lt;/li&gt;
&lt;li&gt;It doesn&apos;t help me avoid creating near-duplicate tags with a similar name or even typos.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;One wouldn&apos;t want different blog articles using tags that mean the same thing but with slightly different names. For example &lt;code&gt;ai-engineering&lt;/code&gt; and &lt;code&gt;engineering-with-ai&lt;/code&gt;, or even a typo in the tag like &lt;code&gt;ai-eginering&lt;/code&gt;. So without any kind of tag selection, and the behaviour of the existing tag selection and creation, this made the UX painful (I had to open the tag management section in a different tab to remember what tags were available) and susceptible to tags becoming a mess across all the content.&lt;/p&gt;
&lt;h1&gt;Using Claude Design&lt;/h1&gt;
&lt;p&gt;Claude Design was &lt;a href=&quot;https://www.anthropic.com/news/claude-design-anthropic-labs&quot;&gt;introduced on 17 April&lt;/a&gt;. I had had a bit of a poke around in it before to see what it was about, but this was the first chance I had to try it out on something real.&lt;/p&gt;
&lt;p&gt;I started by pasting four screenshots of the CMS and giving it this prompt. (I used the term &quot;upsert&quot; for tags, which wasn&apos;t quite correct, but Claude got it).&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Attached are four screenshots of my blog CMS. One is where tags are managed, show when two tags existed; ai and harness-engineering. The second one is showing where I can add a post and enter tags. How it currently works is I can enter any tag value and when the post is created/published then the app(or probably the backend for the CMS) will upsert tags.&lt;/p&gt;
&lt;p&gt;So you can see in the third image I enter two tags, one existing and the second one (new-tag) is new, so when the blog post got created is used the existing tag and then created a the new-tag, as shown in the fourth image, where I then have a total of three tags. (Two were existing one new one got created on that new post).&lt;/p&gt;
&lt;p&gt;I like this functionality. However, right now when I enter tags on the create post page I don&apos;t get offered to select from existing tags, so if my new post should use an existing tag I have to carefully remember or go back and look in the tags section to remember the exact name of the tag so I don&apos;t end up with near duplicated for what should be the same tag.&lt;/p&gt;
&lt;p&gt;Ideally when I start typing for a new tag, it should show existing tags that match (like contain) the text I have entered, with the option of selecting one of those. If none match it should allow me to add a new tag.&lt;/p&gt;
&lt;p&gt;Come up with three options for the post create screen for selecting existing or adding tags. Should be simple and seamless and easy to use.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The prompt is relatively verbose (easy to do with voice dictation), but I wanted Claude to really understand how it currently works and what I am looking for.&lt;/p&gt;
&lt;p&gt;Importantly at the end I asked for three design options.&lt;/p&gt;
&lt;p&gt;After a fair bit of time it presented me with a fully functional interactive prototype, with three separate design concepts which I could toggle between with a selector at the bottom. And the generated designs looked very close to my actual CMS.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Concept A&lt;/strong&gt;: auto-complete (shows matching tags as you type, with option to create)&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://cdn.julianwyngaard.com/a34c6604-a718-41cb-a3fb-29032294ffdd.png&quot; alt=&quot;&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Concept B&lt;/strong&gt;: command-popover (shows &lt;strong&gt;all&lt;/strong&gt; tags, filtering as you type, with option to create)&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://cdn.julianwyngaard.com/98959e8f-ca1d-48b4-8002-c54bbf2099f8.png&quot; alt=&quot;&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Concept C&lt;/strong&gt;: A tag shelf&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://cdn.julianwyngaard.com/dd543fe3-bc13-4c4d-a9c6-05969cc14a9c.png&quot; alt=&quot;&quot;&gt;&lt;/p&gt;
&lt;p&gt;To be honest, I was really impressed with this. All these options look really slick. How long would it have taken a designer to come up with this before these kinds of AI-assisted design tools existed, especially with a fully functional interactive prototype? I am not a creative person and for personal things like my blog CMS these kinds of designs would never have seen the light of day.&lt;/p&gt;
&lt;h1&gt;Stretching a bit further with related functionality&lt;/h1&gt;
&lt;p&gt;I had already also been thinking about adding additional AI-generated tag suggestions functionality as a separate piece of work. I spend a ton of time trying to think about tag names for content. So I thought I would see how Claude Design would go with extending what it had already proposed while also incorporating this new AI tag suggestion functionality.&lt;/p&gt;
&lt;p&gt;Here&apos;s the prompt I gave it:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;These look really great. And actually now while looking at it, it has made me think a bit further about this. I would like you to perhaps create another version of this (leaving the existing on in place so I can still refer back to it), where another killer piece of functionality would be tag suggestions. The suggestions here would be based on the content in the post being written, and would use a combination of matching to existing tags, but also potential new tags. I&apos;m not sure if this is different from the selection of tags that you have already designed for, but I would imagine there would be an endpoint in the server that could get tag suggestions based on the blog content. Not sure if it would be automatic as typing the post (seems heavy on the server, especially as it may be doing outbound AI calls to get suggestions), or just a button to get suggestions, or perhaps something a little smarter like suggestions after a certain about of text, or based on the title + blog text, maybe some initial suggestion and then a small refresh button or AI type button to suggest tags. Would exclude suggestions that are already added to the post. Also need to consider when editing a draft, should also work. What nice clean simple design options would you propose with this, fitting into the design we have already designed for the tag selection.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I tried to give it my thinking but also leaving it open-ended for Claude Design to be creative with. It gave me another interactive prototype with three modes to choose from, and incorporated one of the tag selection design options from the first round.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Mode A&lt;/strong&gt;: A button with the name &quot;Suggest Tags&quot;, or as shown below &quot;Refresh&quot; which would generate new suggestions to choose from.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://cdn.julianwyngaard.com/28c0e55b-bead-410f-9aa9-79a3b85aceb9.png&quot; alt=&quot;&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Mode B&lt;/strong&gt;: Smart auto, which generated suggestions after enough post content existed, and a small refresh button.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://cdn.julianwyngaard.com/113e3418-25f0-42ab-8ce7-9ef54624f995.png&quot; alt=&quot;&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Mode C&lt;/strong&gt;: Assistant panel. This felt super chaotic.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://cdn.julianwyngaard.com/7a9cbc2a-3f95-4c60-896c-33f6a07f66d6.png&quot; alt=&quot;&quot;&gt;&lt;/p&gt;
&lt;p&gt;I decided I liked &quot;Concept A: Auto-complete&quot; for tag selection and &quot;Mode B: Smart auto&quot; for tag suggestions. These two seemed to complement each other.&lt;/p&gt;
&lt;p&gt;I got it to create a final version of the working prototype with those two options. And this time I also gave it my existing style guide for the CMS (I probably should have done that at the start).&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Ok, I like the tag selection Concept A, along with Mode B (smart auto) with tag suggestions. Can you do one more round showing a functional version with these two options baked in. I have also attached the style-guide for the existing application as it&apos;s currently implemented, so if we could align as much as possible to that.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This image below shows the two separate pieces of functionality working together. Selection as a slick fly-over style drop down when typing, and option to select tags from the tag suggestion box.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://cdn.julianwyngaard.com/e2cbbed4-2808-4194-9211-2a6bb0e18dab.png&quot; alt=&quot;&quot;&gt;&lt;/p&gt;
&lt;h1&gt;Moving From Design to Implementation&lt;/h1&gt;
&lt;p&gt;So now I had a flash new design that I was pretty excited about. But now how to feed this to Claude Code so it can build it as accurately as possible to the designs?&lt;/p&gt;
&lt;p&gt;The conversation I had with Claude during this design process contained a lot of critical context that the design artefacts alone wouldn&apos;t hold. So, not knowing what Claude Design would be able to do here, I just asked it to write up a requirement doc based on the conversation and final design options chosen.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Ok, can you write up a set of requirements and acceptance criteria for this new functionality. Note that the develoers are never have going to have seen the other options, they just need to see the final solution and spec. The exact endpoint name for example is not that important, but what is important is how it&apos;s expected to behave and return so the UI functionality can work as expected. How the UX and interface behaves does need to be quite specific. Write this as a markdown document.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;And lo and behold, it gave me a detailed requirements document! &lt;a href=&quot;https://gist.github.com/julianwyngaard/4b71109292c41956a0f9bb90c6830c9d&quot;&gt;This is what it produced&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;There are some options to hand off to Claude Code. I just downloaded the zip file.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://cdn.julianwyngaard.com/0a77a808-ddf8-41d4-bd44-e8d509c97a65.png&quot; alt=&quot;&quot;&gt;&lt;/p&gt;
&lt;p&gt;I added the functional design prototype and the requirements document to an &lt;code&gt;in-progress&lt;/code&gt; folder in my already created git worktree, ready for the next phase of planning and building.&lt;/p&gt;
&lt;p&gt;The prototype has a lot of boilerplate code as it was a fully functional web site. However, for Claude to reference this, along with the requirements document it generated during the planning and implementation phases meant it would greatly increase the probability of getting it as close as possible to the design. And it did.&lt;/p&gt;
&lt;p&gt;My code base for the blog application is already very well primed with context, structure and tooling that allows streamlining real engineering with AI. And I have templates and agent skills that help me create design specs and implementation plans for Claude to execute on.&lt;/p&gt;
&lt;p&gt;This design exercise above happened the day after &lt;a href=&quot;https://www.anthropic.com/news/claude-opus-4-8&quot;&gt;Opus 4.8&lt;/a&gt; was released, so I was super keen to do some building with it, and also try out their new &lt;a href=&quot;https://claude.com/blog/introducing-dynamic-workflows-in-claude-code&quot;&gt;Dynamic Workflows&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The design and build was all fully completed on the same day (well to be more accurate, about two-thirds of the build was done while I was sleeping).&lt;/p&gt;
&lt;p&gt;I will follow this article with another one running through how I did the build. I was quite happy with how that went.&lt;/p&gt;</content>
    </entry>
    <entry>
        <id>urn:uuid:019e046c-8f85-7b75-aaf8-4eb4e117e16e</id>
        <title>Higher usage limits for Claude and a compute deal with SpaceX</title>
        <link rel="alternate" type="text/html" href="https://www.julianwyngaard.com/2026/05/08/higher-usage-limits-for-claude-and-a-compute-deal-with-spacex"/>
        <published>2026-05-08T09:51:27.357827+12:00</published>
        <updated>2026-05-08T09:53:58.106295+12:00</updated>
        <category term="ai" label="ai"/>
        <category term="engineering-with-ai" label="engineering-with-ai"/>
        <category term="anthropic" label="anthropic"/>
        <category term="llms" label="llms"/>
        <category term="claude" label="claude"/>
        <content type="html">&lt;p&gt;&lt;a href=&quot;https://www.anthropic.com/news/higher-limits-spacex&quot;&gt;Higher usage limits for Claude and a compute deal with SpaceX&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Anthropic partnering with SpaceX to lease their Colossus 1 data center (over 220,000 NVIDIA GPUs).&lt;/p&gt;
&lt;p&gt;While that on it&apos;s own is interesting, the astonishing side effect of that is a sharp &lt;em&gt;increase&lt;/em&gt; in usage limits in paid Claude plans and their APIs.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The following three changes&#x2014;all effective today&#x2014;are aimed at improving the experience of using Claude for our most dedicated customers.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;First, we&#x2019;re doubling Claude Code&#x2019;s five-hour rate limits for Pro, Max, Team, and seat-based Enterprise plans.&lt;/li&gt;
&lt;li&gt;Second, we&#x2019;re removing the peak hours limit reduction on Claude Code for Pro and Max accounts.&lt;/li&gt;
&lt;li&gt;Third, we&#x2019;re raising our API rate limits considerably for Claude Opus models.&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;
&lt;p&gt;I think people will generally appreciate this too:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Finally, we recently made a commitment to cover any consumer electricity price increases caused by our data centers in the US. As part of our international expansion, we&#x2019;re exploring ways to extend that commitment to new jurisdictions, as well as partnering with local leaders to invest back into the communities that host our facilities.&lt;/p&gt;
&lt;/blockquote&gt;</content>
    </entry>
    <entry>
        <id>urn:uuid:019db477-434e-7425-a3e7-24b07876ec4e</id>
        <title>Mozilla Used Anthropic&apos;s Mythos to Fix 271 Bugs In Firefox</title>
        <link rel="alternate" type="text/html" href="https://www.julianwyngaard.com/2026/04/22/firefox-uses-anthropic-s-mythos-to-fix-271-vulnerabilities"/>
        <published>2026-04-22T21:13:32.816976+12:00</published>
        <updated>2026-04-22T22:16:09.570194+12:00</updated>
        <category term="ai" label="ai"/>
        <category term="anthropic" label="anthropic"/>
        <category term="firefox" label="firefox"/>
        <category term="security" label="security"/>
        <category term="mythos" label="mythos"/>
        <category term="claude" label="claude"/>
        <category term="mozilla" label="mozilla"/>
        <content type="html">&lt;p&gt;&lt;a href=&quot;https://blog.mozilla.org/en/privacy-security/ai-security-zero-day-vulnerabilities/&quot;&gt;Mozilla Used Anthropic&amp;#39;s Mythos to Fix 271 Bugs In Firefox&lt;/a&gt; (via &lt;a href=&quot;https://simonwillison.net/2026/Apr/22/bobby-holley/&quot;&gt;Simon Willison&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;Mozilla has been one of the companies to get access to Anthropic&apos;s new Mythos Preview model. And have put it to good use.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;As part of our continued collaboration with Anthropic, we had the opportunity to apply an early version of Claude Mythos Preview to Firefox. This week&apos;s release of Firefox 150 includes fixes for 271 vulnerabilities identified during this initial evaluation.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Our experience is a hopeful one for teams who shake off the vertigo and get to work. You may need to reprioritize everything else to bring relentless and single-minded focus to the task, but there is light at the end of the tunnel. We are extremely proud of how our team rose to meet this challenge, and others will too. Our work isn&apos;t finished, but we&apos;ve turned the corner and can glimpse a future much better than just keeping up. Defenders finally have a chance to win, decisively.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This seems to validate a lot of Anthropic&apos;s claims about the new model&apos;s capabilities. And it&apos;s encouraging to know that this will likely soon be available to the general public, at some point, where they can be used to strengthen the security postures of existing and new systems.&lt;/p&gt;
&lt;p&gt;When that eventually happens, people are going to need to act fast to find and resolve security vulnerabilities before bad actors get a chance to exploit them.&lt;/p&gt;
&lt;p&gt;There will be casualties.&lt;/p&gt;</content>
    </entry>
</feed>
