Nicholas Clooney

Timeline

#tooling

4 entries following this thread through the timeline.

Nicholas Clooney

wip: ProjectSpire agents, APIs, and card parser work

I’ve been working since last night and today with agents to document how Slay the Spire 2 works, prototype a Spire API and a REST API on top of it, and shape a WIP card parser that turns C# into JSON structures. That work is captured in ProjectSpire v0.1.0, which gives me a concrete snapshot of the game model and tooling so far.

Nicholas Clooney

wip: moving the Cloudflare Email Worker into Git

This grows out of Cloudflare Build Notifications via Email Routing and Email Worker, but I’m now moving the Email Worker out of the Cloudflare dashboard editor and into Git in NicholasClooney/cloudflare-email-to-webhook-worker. The goal is to keep the worker version controlled, review changes before deploys, test locally, and configure it with Wrangler instead of only editing it in the Cloudflare web UI. Right now it is still mostly Wrangler init plus the example email worker, but that is a solid foundation to build from.

Nicholas Clooney

feature: Recursive git-activity

I created git-activity in a631c98 so I can quickly answer "what have I been working on?" It walks a directory tree, finds the Git repos underneath it, and shows the latest log entries from each one in a single pass. It also supports a few filters, which is handy when I only want to review a slice of recent work; for example, from my projects folder I can run:

git-activity -r blog -m feat -x chore

That recursively scans repos, focuses on feature work, and leaves chores out of the list.

Terminal output from running git-activity recursively in the projects folder, matching feat entries and excluding chore entries