Nicholas Clooney

Timeline / May 2026

May 2026 · Week 1

May 2026 1-7, 2026 · 13 entries

Nicholas Clooney

feature: Neow's Cafe typography and themes

Neow's Cafe card catalog using the light theme Neow's Cafe card catalog using the dark theme
Neow's Cafe with the new light and dark app themes side by side.

I shipped another Neow's Cafe UI pass in ProjectSpire, focused on turning the app's visual styling into reusable systems instead of one-off view code. The work in the May 7 snapshot registers the app fonts as a typography system so I can use consistent text styles anywhere in SwiftUI, and adds explicit light and dark themes for the card catalog UI. It is a small-looking change, but it gives the app a much cleaner foundation for future screens.

Nicholas Clooney

blog: AgentOS: The Agent Environment That Gets Smarter As You Build

Published AgentOS: The Agent Environment That Gets Smarter As You Build, a post about the project environment I am building around AI agents so a fresh session does not have to rediscover the same context every time.

It uses ProjectSpire as the working example: instructions as project memory, plans for intent, Captain Logs for collaboration taste, devlogs for technical history, and skills or workflows for repeated mechanical steps.

The useful idea is that the repo should accumulate context as it is used, so the human still supplies the judgment, but the surrounding system gets better at carrying that judgment forward.

Nicholas Clooney

feature: Code block wrap controls (subspace)

I shipped v1.33.0 of 11ty-subspace-builder, adding wrap toggles to Markdown code blocks and GitHub embeds. Markdown code blocks now wrap by default, including Markdown files rendered through GitHub embeds, while collapsed GitHub embeds still allow long lines to scroll horizontally. I also added a draft regression page for long GitHub and Markdown code lines so this behavior has a concrete page to test against.

Nicholas Clooney

thoughts: Blog traffic growing organically

Blog analytics dashboard showing 606 visitors and about 1.13k views in April 2026
April 2026 blog traffic: 606 visitors and roughly 1.13k views.

I was surprised to find out that my blog traffic has been growing organically, with no marketing from me at all. Last month it had 606 visitors and roughly 1.13k views, which is a real WOAH moment for a personal site. Thanks to everyone who has been coming to my blog; I wish you all the best.

Nicholas Clooney

feature: Neow's Cafe Gets a Real Card Catalog

Neow's Cafe card catalog screen showing a two-column grid of Slay the Spire 2 cards Neow's Cafe card catalog screen with card filters open above the card grid Neow's Cafe card catalog screen showing filtered Slay the Spire 2 cards
Neow's Cafe browsing catalog-backed card data instead of bundled mock cards.

I spent today turning ProjectSpire's iOS app "Neow's Cafe" from a mock-card browser into something much closer to a real Slay the Spire 2 card catalog.

The main decision was to keep the first version boring in the best way: a static, versioned catalog generated from the game data, served locally, and loaded directly by the app instead of inventing a REST API too early.

This is what the folder structure looks like now:

		
  1. ## Catalog layout
  2. Generate a static catalog under a versioned root:
  3. ```text
  4. v0.103.2/
  5. manifest.json
  6. cards.index.json
  7. cards/<card-slug>.json
  8. images/card_portraits/...
  9. ```

That structure gave the app one small index for browsing and filtering, while keeping full per-card files and portrait assets nearby for detail/debug views later. The important bit is that the card grid does not need to fetch hundreds of separate files just to show the collection.

		
  1. `cards.index.json` is the grid, search, and filter payload. It contains all card summaries needed by the app:
  2. - id
  3. - slug
  4. - title
  5. - description
  6. - energy cost
  7. - type
  8. - rarity
  9. - pool
  10. - portrait path
  11. - optional detail path
  12. Keep individual card JSON files for detail and debug views, not for the main grid.

On the Swift side, CardCatalogService.swift now loads manifest.json, follows it to cards.index.json, and decodes the catalog into app cards. I also removed the old bundled sample portraits, so the app is now much more dependent on the generated catalog behaving like the source of truth.

The Cards screen got some polish too: the catalog can be refreshed from the view, the grid is now a two-column layout that preserves the card aspect ratio in CardsView.swift, and I cleaned up the filter model so "no filter" is represented by optional UI state instead of fake .all enum cases (filter cleanup commit).

The other nice bit from today is process-oriented: ProjectSpire now has Captain Logs for collaboration notes and a reusable workflow for turning a day's commits and documentation changes into these timeline summaries. That should make it easier to keep writing about the work without having to rediscover the shape of the day from raw git history every time.

Nicholas Clooney

thoughts: Codex vs Claude Code for ProjectSpire

After a few weeks working on ProjectSpire with Codex, I’m leaning toward it as my default for software engineering projects. The main frustration has been hitting the Pro account limit; otherwise the quality has been good, the interaction feels responsive, and the output gives me instant feedback while it works. Claude Code still feels more like a black box to me: it can disappear into minutes of research and thinking on its own, and the effective limit feels lower. That tradeoff matters, because for this kind of project I want a tight engineering loop more than a long silent reasoning pass.

Nicholas Clooney

feature: Card Parser v0.2.3 - Calculated Vars and New Formatters

Shipped Card Parser v0.2.3 to ProjectSpire, which adds calculated variable resolution, numeric symbol extraction, and conditional text formatters. Cards like Ashen Strike now show computed damage values instead of raw placeholders, and I've added choose, cond, inverseDiff, and boolean formatters for rendering conditional card text. The parser now threads card type, target type, and runtime display vars (HasRider, Sapping, Energized, etc.) through text resolution, making the pipeline much more precise about card state and context.

Human-AI collaboration: architect and developer

The whole card parser has been built in this mode: I act as architect, GPT-5.5 acts as developer. Every meaningful parser improvement came from me inspecting concrete generated JSON against real card examples and asking source-fidelity questions. GPT-5.5 didn't discover that cost upgrades can be negative, or that Bash's upgraded Vulnerable value wasn't being applied, or that X-cost cards needed their own shape. I did, by reading the output and comparing it to what the game actually does.

The pattern that emerged: I'd spot a class of issue on a specific card, explain what the game source was doing and why the output was wrong, and GPT-5.5 would produce a working fix. Then I'd push to turn each discovery into a repeatable check rather than a one-off patch. The coverage audit script, the unresolved placeholder CSV, the hard failures on missing source files: all of those came from me steering toward systemic fixes after catching individual bugs.

What GPT-5.5 is good at in this loop is the mechanical throughput. Regex extraction, threading new state through a resolution pipeline, mirroring changes to the audit script, regenerating 55 JSON files, splitting work into clean commits. The domain knowledge, the quality bar, and the architectural decisions all come from the human side. GPT-5.5 doesn't know what CalculatedVar means in the game engine or why display vars like HasRider matter for conditional text. It doesn't need to, once I describe the shape of the problem clearly enough.

The productivity gain isn't just speed. It's that I can stay at the architectural level, thinking about which cards are still wrong and why, without losing momentum to implementation mechanics. The feedback loop stays tight: inspect, identify, describe, implement, verify, repeat.

Example: resolved card output

Here's what a fully resolved card looks like now. Ball Lightning's resolved block shows the base and upgraded display states, with structured text runs that carry source variable references and style annotations:

		
  1. "resolved": {
  2. "base": {
  3. "title": "Ball Lightning",
  4. "cost": 1,
  5. "energy_cost": {
  6. "kind": "int",
  7. "value": 1
  8. },
  9. "description": {
  10. "plain": "Deal 7 damage.\nChannel 1 Lightning.",
  11. "runs": [
  12. {
  13. "text": "Deal "
  14. },
  15. {
  16. "text": "7",
  17. "source_var": "Damage"
  18. },
  19. {
  20. "text": " damage.\n"
  21. },
  22. {
  23. "text": "Channel",
  24. "style": "gold"
  25. },
  26. {
  27. "text": " 1 "
  28. },
  29. {
  30. "text": "Lightning",
  31. "style": "gold"
  32. },
  33. {
  34. "text": "."
  35. }
  36. ]
  37. }
  38. },
  39. "upgraded": {
  40. "title": "Ball Lightning+",
  41. "cost": 1,
  42. "energy_cost": {
  43. "kind": "int",
  44. "value": 1
  45. },
  46. "description": {
  47. "plain": "Deal 10 damage.\nChannel 1 Lightning.",
  48. "runs": [
  49. {
  50. "text": "Deal "
  51. },
  52. {
  53. "text": "10",
  54. "source_var": "Damage",
  55. "style": "green"
  56. },
  57. {
  58. "text": " damage.\n"
  59. },
  60. {
  61. "text": "Channel",
  62. "style": "gold"
  63. },
  64. {
  65. "text": " 1 "
  66. },
  67. {
  68. "text": "Lightning",
  69. "style": "gold"
  70. },
  71. {
  72. "text": "."
  73. }
  74. ]
  75. },
  76. "changed": [
  77. "description"
  78. ]
  79. }
  80. }
  81. }

Nicholas Clooney

feature: ProjectSpire STS2 resource recovery workflow

I worked with GPT-5.5 on a reproducible Slay the Spire 2 resource extraction plan and then landed it in ProjectSpire across the recovery scripts, allowlist, generated resource subset, image-format experiment, and workflow docs.

The Principles matter more than the files: keep the full recovered dump local and ignored, track only curated resources with a current use, make extraction scriptable instead of manual, prefer readable Python tooling, keep binary assets repo-friendly with WebP and Git LFS, and write down the decisions close to the evidence.

The implementation follows that shape by keeping Lab/unpacked/ as the local source dump and generating Lab/resources/ from Lab/resources.allowlist.yaml, starting with localization plus WebP q85 card portraits.

That gives my STS2 projects inside the ProjectSpire monorepo access to assets like this at roughly a fraction of the original size, around 10%, without needing to commit the full recovered dump.

Recovered Slay the Spire 2 card portrait for Believe In You
One of the recovered card portraits from the first curated resource subset.

You can find the commits/changes here: https://github.com/NicholasClooney/ProjectSpire/compare/a1fd19e...a1b6e9d

Nicholas Clooney

feature: Timeline Open Graph images (subspace)

I shipped generated Open Graph cards for the timeline in v1.32.0 of 11ty-subspace-builder. The root timeline page and individual timeline entries now get social preview images from generated card data, while static card metadata lives in site data so downstream projects can configure it without touching templates. I also updated the timeline docs to spell out how those preview images are selected.

Nicholas Clooney

wip: ProjectSpire card data resolution note

I added a ProjectSpire design note in 399f74d that pushes the card pipeline toward a two-pass model: keep the parser output source-faithful, then resolve localization and rendered text separately for the app.

I created that work with GPT-5.5 in plan mode, and it asked a few genuinely useful clarification questions before I let it draft anything substantial, which made the whole process feel a lot more controlled than a blind codegen pass. I also pushed back on several of its first suggestions and made a lot of the consequential decisions myself, especially around keeping canonical variable names intact and separating raw data from resolved display data. That feels like a strong pattern for future ProjectSpire work: use the AI models to widen the search space, but keep the architecture decisions and edits grounded in my own judgment.