<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0">
  <channel>
    <description>Rambling Rows</description>
    <image>
      <url>https://rrows.net/uploads/2026/rrows-icon-sq-144px.png</url>
      <title>Rambling Rows</title>
      <link>https://rrows.net/</link>
    </image>
    <title>workflow on Rambling Rows</title>
    <link>https://rrows.net/categories/workflow/</link>
    
    <language>en</language>
    
    <lastBuildDate>Sat, 09 May 2026 19:27:00 +1000</lastBuildDate>
    <item>
      <title>Taming Claude Cowork session sprawl</title>
      <link>https://rrows.net/2026/05/09/taming-claude-cowork-session-sprawl.html?utm_source=rss&amp;utm_medium=feed&amp;utm_campaign=rrows</link>
      <pubDate>Sat, 09 May 2026 19:27:00 +1000</pubDate>
      
      <guid isPermaLink="false">http://rrows.micro.blog/2026/05/09/taming-claude-cowork-session-sprawl.html</guid>
      <description>&lt;p&gt;Relentless Productivity™ has a dark side. The more capable your tools, the faster the work accumulates - and with &lt;strong&gt;Claude Cowork&lt;/strong&gt;, that accumulation happens session by session, each one spawning its own entry in an ever-growing sidebar list that becomes harder to read by the day.&lt;/p&gt;
&lt;p&gt;I know this from experience. My Cowork sidebar had grown to the point where I could no longer tell what was live, what was done and what was waiting. You can pin sessions. You can rename them. But there is no status indicator, no filtering and no way to see at a glance what needs your attention. Managing that list requires discipline, and discipline is not - let&amp;rsquo;s say - inherent in this particular operator.&lt;/p&gt;
&lt;p&gt;So I went back and forth with Claude to work out a better approach.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;the-problem-cowork-creates&#34;&gt;The problem Cowork creates&lt;/h2&gt;
&lt;p&gt;Cowork is genuinely powerful. You give it access to a folder on your Mac, describe what you want in plain language and it runs - reading files, executing commands, writing output, co-ordinating sub-agents. It is Claude Code for knowledge workers rather than developers.&lt;/p&gt;
&lt;p&gt;But that local-first architecture is also its limitation when it comes to session management.&lt;/p&gt;
&lt;p&gt;When you use Claude via the browser at &lt;strong&gt;claude.ai&lt;/strong&gt;, every conversation has a URL. &lt;code&gt;claude.ai/chat/d156fdf3-...&lt;/code&gt; - a stable reference you can bookmark, share or link to from a project management tool. The session lives in the cloud and is accessible from anywhere.&lt;/p&gt;
&lt;p&gt;Cowork sessions have none of that. They exist inside the Claude Desktop app, operating on files on your local machine. There is no URL. There is no way to reference a specific session from outside the app. The sidebar is the only index you have - and it auto-names sessions based on your first message rather than anything you choose to call them.&lt;/p&gt;
&lt;p&gt;The strength of Cowork working exclusively on your local files is, in this respect, the downside.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;what-we-built&#34;&gt;What we built&lt;/h2&gt;
&lt;p&gt;The solution has three moving parts: a dedicated tracking directory, a &lt;strong&gt;Rocket Typist&lt;/strong&gt; text expansion snippet and an end-of-session protocol.&lt;/p&gt;
&lt;p&gt;Cowork sessions run inside &lt;strong&gt;Projects&lt;/strong&gt; - a workspace layer that lets you attach specific folders to a session so Claude can read and write files within them. That folder attachment is where the session management system hooks in.&lt;/p&gt;
&lt;h3 id=&#34;the-tracker-directory&#34;&gt;The Tracker directory&lt;/h3&gt;
&lt;p&gt;The first instinct was to attach a general &lt;code&gt;~/Documents/Claude/&lt;/code&gt; folder to every Project, giving each session access to a shared log. That&amp;rsquo;s the wrong call.&lt;/p&gt;
&lt;p&gt;Attaching a broad directory gives every Project session visibility into everything in that folder - files from other projects, notes, work in progress. Cowork is sandboxed by design, and for good reason. You don&amp;rsquo;t want a session working on your Acme Corporation board report to be able to read files from a personal task session, even accidentally.&lt;/p&gt;
&lt;p&gt;The right approach is a dedicated &lt;code&gt;~/Documents/Claude/Tracker/&lt;/code&gt; directory. It contains exactly two files - a session counter and a sessions log - and nothing else. When you attach it to a Project, you are giving that session a narrow, read-write window into tracking data only. No cross-contamination. No unintended exposure.&lt;/p&gt;
&lt;p&gt;Create it once:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;mkdir -p ~/Documents/Claude/Tracker

echo &amp;quot;0&amp;quot; &amp;gt; ~/Documents/Claude/Tracker/session_counter.txt

printf &amp;quot;| ID | Date | Project | Brief | Status | Outcome |\n|---|---|---|---|---|---|\n&amp;quot; &amp;gt; ~/Documents/Claude/Tracker/sessions.md

&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Every new Cowork Project gets two folder attachments: the project working directory and &lt;code&gt;~/Documents/Claude/Tracker/&lt;/code&gt;. That second attachment is the constant.&lt;/p&gt;
&lt;h3 id=&#34;the-rocket-typist-template&#34;&gt;The Rocket Typist template&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href=&#34;https://www.witt-software.com/rockettypist/&#34;&gt;Rocket Typist&lt;/a&gt;&lt;/strong&gt; is a macOS keystroke expansion tool. You define a short abbreviation - I use &lt;code&gt;;cw&lt;/code&gt; - and it expands to any block of text you choose when typed anywhere on your Mac, including in Cowork&amp;rsquo;s composer.&lt;/p&gt;
&lt;p&gt;The template I push in at the start of every session:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;Before anything else: read ~/Documents/Claude/Tracker/session_counter.txt, 

increment by 1, write back, append one row to 

~/Documents/Claude/Tracker/sessions.md (columns: ID / Date / Project / Brief / 

Status=Active / Outcome=blank). If ~/Documents/Claude/Tracker/ is not 

accessible, stop immediately and say: &amp;quot;TRACKER NOT MOUNTED — add 

~/Documents/Claude/Tracker/ to this Project before continuing.&amp;quot; Then output: 

RENAME THIS SESSION TO: #N [one-line task summary] — then proceed with the task.



When I say &amp;quot;end session&amp;quot;: update this session&#39;s row in 

~/Documents/Claude/Tracker/sessions.md — set Status to Done, write a 

one-sentence Outcome. Confirm: &amp;quot;Session #N closed.&amp;quot;



Task:

&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;You type &lt;code&gt;;cw&lt;/code&gt;, the template appears, you write your task on the final line and send.&lt;/p&gt;
&lt;p&gt;Cowork reads the counter file, increments it, writes the new value back, appends a row to &lt;code&gt;sessions.md&lt;/code&gt; and then - critically - outputs a rename string: &lt;code&gt;RENAME THIS SESSION TO: #3 Review Acme Corporation Q2 capacity model&lt;/code&gt;. You copy that, right-click the session name in the sidebar, rename it, and the session is now findable by number for the rest of its life.&lt;/p&gt;
&lt;p&gt;When you are done, you type &amp;ldquo;end session.&amp;rdquo; Cowork updates the sessions log row, sets Status to Done and writes a one-sentence outcome. The log becomes a running record of what was actually accomplished.&lt;/p&gt;
&lt;h3 id=&#34;what-the-log-looks-like&#34;&gt;What the log looks like&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;| ID | Date       | Project     | Brief                          | Status | Outcome                                    |

|----|------------|-------------|--------------------------------|--------|--------------------------------------------|

| 1  | 2026-05-09 | Personal OS | Weekly Review protocol scan    | Done   | 16 open threads identified; rollup confirmed|

| 2  | 2026-05-09 | Acme Corp   | Q2 capacity model review       | Active |                                            |

| 3  | 2026-05-10 | Palim       | Scope sudoku whimsy feature    | Done   | Feature scoped; implementation deferred    |



&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;A quick look at &lt;code&gt;sessions.md&lt;/code&gt; tells you everything the Cowork sidebar cannot: what is live, what is closed and what was achieved.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;when-volume-grows-the-github-path&#34;&gt;When volume grows: the GitHub path&lt;/h2&gt;
&lt;p&gt;This system handles tens of sessions cleanly. If you are running dozens of concurrent workstreams - across projects, domains and time - the flat sessions log starts to show its limits.&lt;/p&gt;
&lt;p&gt;The natural escalation is &lt;strong&gt;GitHub Projects&lt;/strong&gt;, which gives you a proper Kanban board. Each session becomes a GitHub Issue. Columns map to session states: Backlog, Cowork Active, Claude Code Queue, Review, Done. You reference sessions by issue number (&lt;code&gt;#42&lt;/code&gt;) rather than the counter above, and the Cowork session number goes into the issue body alongside the &lt;code&gt;claude://cowork/new?q=...&amp;amp;folder=...&lt;/code&gt; deep link that re-opens a fresh session with the task context pre-loaded.&lt;/p&gt;
&lt;p&gt;This also opens up the Claude Code integration path. Some tasks that start in Cowork are better finished in the terminal - file batch processing, code generation, scripted output. A GitHub Issue card flagged &lt;code&gt;claude-code&lt;/code&gt; can be picked up by a small bridge script that pipes the task brief to &lt;code&gt;claude --pipe&lt;/code&gt;, writes the result back as an issue comment and moves the card to Review. The Kanban becomes the dispatcher for both Cowork and Claude Code.&lt;/p&gt;
&lt;p&gt;That is a bigger build. For most people the sessions log is enough.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;a-word-on-where-this-is-going&#34;&gt;A word on where this is going&lt;/h2&gt;
&lt;p&gt;Anthropic will work this out. The current Cowork interface was clearly built for focused, single-session work. As people use it at scale - running multiple projects, juggling parallel workstreams - the demand for better session state management will become impossible to ignore.&lt;/p&gt;
&lt;p&gt;A status indicator on each session in the sidebar. A filter for Active versus Done. A Kanban or nested view. These are obvious features, and they will come.&lt;/p&gt;
&lt;p&gt;Until then, a text expander, a counter file and a narrow Tracker directory get you most of the way there.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;The setup described in this post requires a paid Claude plan (Pro, Max, Team or Enterprise) and the Claude Desktop app for macOS or Windows. Rocket Typist is a paid macOS app available at &lt;a href=&#34;https://www.witt-software.com/rockettypist/&#34;&gt;witt-software.com&lt;/a&gt;. GitHub Projects is free for public repositories and included in paid GitHub plans.&lt;/em&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;strong&gt;PS.&lt;/strong&gt; This is another example of using AI tools not just to do work, but to diagnose problems with how you work - and then to build systematic approaches that make future performance more reliable. The conversation that produced this post was not &amp;ldquo;write me a blog post.&amp;rdquo; It was a back-and-forth that identified a real friction point, explored the constraints of the tool, and arrived at something that actually holds together.&lt;/p&gt;
&lt;p&gt;The human is still required throughout. These are semi-sentient actors that will cheerfully proceed in the wrong direction if you do not hold them to account. The system only works because someone noticed the sessions were getting out of hand, cared enough to fix it and kept pushing until the solution was sound. That part does not automate.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Another day of relentless productivity</title>
      <link>https://rrows.net/2026/05/04/another-day-of-relentless-productivity.html?utm_source=rss&amp;utm_medium=feed&amp;utm_campaign=rrows</link>
      <pubDate>Mon, 04 May 2026 19:51:07 +1000</pubDate>
      
      <guid isPermaLink="false">http://rrows.micro.blog/2026/05/04/another-day-of-relentless-productivity.html</guid>
      <description>&lt;p&gt;As I prepared to race out the door this morning, I snatched up the hand-scribbled agenda for the team meeting and thought: &amp;ldquo;Oh, at a minimum, I should photograph this.&amp;rdquo; So I don&amp;rsquo;t lose the piece of paper.&lt;/p&gt;
&lt;p&gt;The next thought was: &amp;ldquo;Hey, I should send this to Claude.&amp;rdquo;&lt;/p&gt;
&lt;p&gt;Before I knew it, Claude had read it and turned it into a proper document - ready to throw into the stack for the day ahead.&lt;/p&gt;
&lt;p&gt;On the way to the office, I realised I&amp;rsquo;d have to come up with a short board briefing on a particular scenario that was proving, shall we say, a little tricky. I was clear about what I wanted to say, but I wasn&amp;rsquo;t sure when I&amp;rsquo;d get time to put it all together before the briefing pack went out.&lt;/p&gt;
&lt;p&gt;At the next red light, I tapped record on my Apple Watch and started dictating - the scenario, where we&amp;rsquo;d got to, what I needed the board to understand. By the time I arrived at the office, the transcript was sitting in my email.&lt;/p&gt;
&lt;p&gt;Tossed that at Claude. &amp;ldquo;Turn this into a brief board-level briefing.&amp;rdquo; Still trying to stop saying &amp;lsquo;please&amp;rsquo; to AI agents - that just burns tokens.&lt;/p&gt;
&lt;p&gt;Moments later, I had exactly what I needed.&lt;/p&gt;
&lt;p&gt;Absolutely mind-blowing. I can&amp;rsquo;t believe how good these tools are and how empowering they can be. Mind-blowing also in a very literal sense - it is lucky the phrase hasn&amp;rsquo;t been acquired by the Mind-Blowing Corporation, because I would be paying a fair licensing fee virtually every day in this age of super-smart AI helpers.&lt;/p&gt;
&lt;p&gt;One thing I particularly cannot get over: how well Claude reads my handwriting. At times, even I can&amp;rsquo;t decipher it.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;The dictation-to-transcript magic on the watch is &lt;a href=&#34;https://whispermemos.com&#34;&gt;Whisper Memos&lt;/a&gt; - available for iPhone and Apple Watch. Highly recommended.&lt;/em&gt;&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Cowork demonstrated Cowork</title>
      <link>https://rrows.net/2026/04/23/cowork-demonstrated-cowork.html?utm_source=rss&amp;utm_medium=feed&amp;utm_campaign=rrows</link>
      <pubDate>Thu, 23 Apr 2026 21:59:48 +1000</pubDate>
      
      <guid isPermaLink="false">http://rrows.micro.blog/2026/04/23/cowork-demonstrated-cowork.html</guid>
      <description>&lt;p&gt;A friend of mine, let&amp;rsquo;s call her Jane, runs a marketing consultancy. Fifteen years in, small team, strong client list, had used Claude for chat only. I offered to spend an hour showing her what&amp;rsquo;s possible now we&amp;rsquo;re well beyond that.&lt;/p&gt;
&lt;p&gt;Wednesday night I realised winging a 75-minute demo next morning would burn too much time on navigation and too little on value. I opened &lt;strong&gt;&lt;a href=&#34;https://claude.com/&#34;&gt;Claude Cowork&lt;/a&gt;&lt;/strong&gt;, uploaded a brief I&amp;rsquo;d quickly hacked together from emails and went on with my evening. In just a short time Cowork literally worked magic!&lt;/p&gt;
&lt;h2 id=&#34;what-i-asked-for&#34;&gt;What I asked for&lt;/h2&gt;
&lt;p&gt;The brief asked Claude to build everything I&amp;rsquo;d need to run the session.&lt;/p&gt;
&lt;p&gt;A slide deck in the consultancy&amp;rsquo;s own visual style. Speaker notes with live demo prompts. A subscription recommendation with Australian pricing. A 30/60/90-day roadmap. A homework checklist under two hours of her time. And a custom voice skill distilled from the consultancy&amp;rsquo;s website, so that anything Claude drafted for them afterwards would write in their voice rather than generic consultancy mush.&lt;/p&gt;
&lt;p&gt;The live demo scenarios were the hard part. Three of them.&lt;/p&gt;
&lt;p&gt;Synthesising customer feedback from focus groups where the inputs are a mess (handwritten notes, scanned post-its, voice transcripts). Identifying adjacent niche markets for a consultancy that mainly grows through word of mouth. Turning around new-business proposals at pace using the consultancy&amp;rsquo;s distinct voice.&lt;/p&gt;
&lt;p&gt;Plus a home scenario. A family with three sons aged 16, 14 and 12 trying to race through a busy Melbourne week without losing their minds.&lt;/p&gt;
&lt;h2 id=&#34;what-came-back&#34;&gt;What came back&lt;/h2&gt;
&lt;p&gt;Thirty-eight minutes later, Claude had produced three coordinated artefacts.&lt;/p&gt;
&lt;p&gt;A &lt;strong&gt;28-slide PowerPoint deck&lt;/strong&gt; in the consultancy&amp;rsquo;s visual style. Three-act structure (foundations, deep dives, next steps), embedded demo prompts, subscription comparison, roadmap, homework and a closing slide. All laid out. No placeholders.&lt;/p&gt;
&lt;p&gt;A &lt;strong&gt;12-page facilitator Word document&lt;/strong&gt;. Per-slide speaker notes, copy-and-paste prompts for each live Claude moment, full resource section with hyperlinks, agenda table with time budgets, pre-meeting checklist.&lt;/p&gt;
&lt;p&gt;A &lt;strong&gt;voice skill&lt;/strong&gt; as a separate markdown file. One hundred and fifty lines of vocabulary, structural moves, tone calibration (warm not saccharine, frank not blunt) and before-and-after examples. Drop it into the Claude skills folder and the output sharpens on the next prompt.&lt;/p&gt;
&lt;p&gt;All of this produced in 38 minutes on a Wednesday evening while I busied myself with other things. I slept well knowing Thursday&amp;rsquo;s session was effectively ready.&lt;/p&gt;
&lt;h2 id=&#34;small-cracks-and-the-choice-not-to-polish&#34;&gt;Small cracks, and the choice not to polish&lt;/h2&gt;
&lt;p&gt;Opening the files felt like being a kid at Christmas. Wow. On the mark. Well past &amp;ldquo;useful first draft&amp;rdquo; and into &amp;ldquo;this could ship&amp;rdquo;.&lt;/p&gt;
&lt;p&gt;Three minor issues. The brand header sat against the logo in a way that slightly muted it. One date was wrong (my fault, I&amp;rsquo;d put it in the brief that way). A handful of slides had text sitting a fraction too close to decorative elements. Small stuff.&lt;/p&gt;
&lt;p&gt;I fixed none of it.&lt;/p&gt;
&lt;p&gt;I left the PowerPoint exactly as Claude delivered it. The whole point of the session was to show what this tool actually produces on a brief and polishing would quietly have sanitised the demo into something slicker than the reality. Jane saw the real output, not a glossed version of it.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://en.wikipedia.org/wiki/Clarke%27s_three_laws&#34;&gt;Arthur C. Clarke&amp;rsquo;s third law&lt;/a&gt; kept running through my head: &lt;em&gt;any sufficiently advanced technology is indistinguishable from magic.&lt;/em&gt;&lt;/p&gt;
&lt;h2 id=&#34;what-one-demo-became&#34;&gt;What one demo became&lt;/h2&gt;
&lt;p&gt;The family scheduling exercise is the easiest of the four demos to show, and it&amp;rsquo;s a useful window into how deep a single session can go. What started as &amp;ldquo;help us run a busy week with three boys&amp;rdquo; became something more interesting as we engaged with Claude.&lt;/p&gt;
&lt;p&gt;Three pieces, working together.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A proper calendar architecture.&lt;/strong&gt; Not &amp;ldquo;use a shared calendar&amp;rdquo;, which is the generic advice. Claude came in with seasoned experience on how to build and connect a tier of Google Calendar accounts to cater for the different needs across a family of five. Who sees which layer. Who can edit. Which child maintains their own calendar with partial visibility back to the parents. Colour coding, sharing rules, and the quiet discipline of &lt;em&gt;if it&amp;rsquo;s not on the calendar within the hour, it didn&amp;rsquo;t happen&lt;/em&gt;. This is the sort of advice you&amp;rsquo;d pay a family coach serious money for. It arrived inside a minute.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A 15-minute Sunday meeting.&lt;/strong&gt; The &lt;em&gt;Sync&lt;/em&gt; — a weekly family huddle with its own guide. The clever move: a second version written directly to the kids, opening with &amp;ldquo;Hey you three&amp;rdquo; and framing the ritual as the family&amp;rsquo;s shared discipline rather than a compliance exercise. That distinction matters when two of your kids are negotiating their teen years and own identities. The meeting runs against a short template to keep it on the rails.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The week at a glance.&lt;/strong&gt; A one-page live HTML view showing the coming week on the kitchen iPad. Who&amp;rsquo;s where, when, who&amp;rsquo;s driving. Updates when the calendars change.&lt;/p&gt;
&lt;p&gt;This is not what &amp;ldquo;a family scheduling plan&amp;rdquo; usually means. This is a household operating system, designed for a real family with real teenagers. One exercise, inside one session, unlocked what would have been a weekend of work with a human family coach.&lt;/p&gt;
&lt;h2 id=&#34;the-late-encore&#34;&gt;The late encore&lt;/h2&gt;
&lt;p&gt;Fifteen minutes before the session was due to start, I had another thought. Always dangerous.&lt;/p&gt;
&lt;p&gt;The speaker notes carried a time budget per slide. How was I going to hold pace without glancing at my laptop clock every thirty seconds and looking disengaged on the Zoom call?&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;ldquo;Take the Word guide. Pull the time budget per slide. Build me an interactive HTML dashboard I can run on my iPad. Something I can see at a glance.&amp;quot;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;First build came back in dark theme (Claude defaulted to dark, because most developers want that). Wrong for this use case. &amp;ldquo;Light theme, clean.&amp;rdquo; Rebuild in under a minute.&lt;/p&gt;
&lt;p&gt;Next problem. An iPad doesn&amp;rsquo;t host HTML well. You can&amp;rsquo;t reliably open a local .html from the Files app and have it render. I raised this with Claude. Three suggestions came back. The fastest was &lt;a href=&#34;https://www.netlify.com/&#34;&gt;Netlify&lt;/a&gt;. Drag the folder onto the browser, get a live URL, open on the iPad. Free. Thirty seconds to deploy.&lt;/p&gt;
&lt;p&gt;Ten o&amp;rsquo;clock came around. The Custom Presentation Pacer ticked silently on the iPad beside my laptop. It worked really well to keep me on track. Not too fast, not too slow.&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/202171/2026/custom-presentation-pacer.jpg&#34; width=&#34;600&#34; height=&#34;501&#34; alt=&#34;&#34;&gt;
&lt;h2 id=&#34;the-session&#34;&gt;The session&lt;/h2&gt;
&lt;p&gt;Seventy-five minutes became ninety, in the good way.&lt;/p&gt;
&lt;p&gt;The live Cowork demos landed. The family scheduling exercise produced the operating system I described above, on screen in front of Jane. The adjacent markets conversation named sectors and organisations neither of us had thought about before the session started. The voice skill was the quiet hit. Jane saw her own website phrasing come back in a draft email inside 90 seconds and went quiet for a moment.&lt;/p&gt;
&lt;p&gt;Afterwards I sent her the full pack. Deck, speaker notes, voice skill, zipped. And an email explaining what she&amp;rsquo;d just watched: a Claude session prepared by Claude, deliberately unpolished, delivered with a real-time HTML tracker that Claude also built from the same source materials fifteen minutes before we started.&lt;/p&gt;
&lt;p&gt;The meta-point landed. Jane got it straight away.&lt;/p&gt;
&lt;h2 id=&#34;the-point&#34;&gt;The point&lt;/h2&gt;
&lt;p&gt;There is a version of this story that is about the prompt I wrote. A better version is about everything else.&lt;/p&gt;
&lt;p&gt;38 minutes.&lt;/p&gt;
&lt;p&gt;One brief, one upload, one evening. In less time than it takes to cook dinner, Claude read a brief, asked a handful of clarifying questions and produced a 28-slide deck, a 12-page facilitator document and a 150-line voice skill — three separate formats, one coherent voice, no placeholders, no lazy defaults.&lt;/p&gt;
&lt;p&gt;Claude didn&amp;rsquo;t replace my judgment. It did everything a competent producer-designer would have done over three full days of effort. In the time it took me to cook dinner and watch half an episode of something.&lt;/p&gt;
&lt;p&gt;The magic isn&amp;rsquo;t that Claude writes a deck. Lots of tools write decks now. The magic is the coordination. A deck &lt;em&gt;and&lt;/em&gt; its matching speaker notes &lt;em&gt;and&lt;/em&gt; a voice skill that makes both sound like the client. Plus, when the family scheduling exercise happened on Thursday, another household-scale operating system, designed from scratch, inside the session window.&lt;/p&gt;
&lt;p&gt;Cowork demonstrated Cowork. I pointed at the screen and said watch this.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;Sources:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;https://claude.com/&#34;&gt;Claude Cowork&lt;/a&gt;&lt;/strong&gt; (claude.com)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;https://www.netlify.com/&#34;&gt;Netlify&lt;/a&gt;&lt;/strong&gt; (netlify.com)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;https://en.wikipedia.org/wiki/Clarke%27s_three_laws&#34;&gt;Arthur C. Clarke&amp;rsquo;s Third Law&lt;/a&gt;&lt;/strong&gt; — from &lt;em&gt;Profiles of the Future&lt;/em&gt;, 1973&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
  </channel>
</rss>
