From 72fe7f2de05291968d1cb9e24fa101e92f1dd19a Mon Sep 17 00:00:00 2001 From: Justin Bennett Date: Mon, 2 Feb 2026 01:00:58 -0500 Subject: [PATCH 1/3] Add draft blog post: Craft and Agents Introduces new blog post exploring how craft evolves as we increasingly delegate tasks to AI agents, covering changes to material (code), tools (agents), and process (parallel workflows). Co-Authored-By: Claude Haiku 4.5 --- src/content/blog/craft-and-agents.mdx | 13 +++++++++++++ src/content/url-manifest.yaml | 2 ++ 2 files changed, 15 insertions(+) create mode 100644 src/content/blog/craft-and-agents.mdx diff --git a/src/content/blog/craft-and-agents.mdx b/src/content/blog/craft-and-agents.mdx new file mode 100644 index 00000000..8342a9a2 --- /dev/null +++ b/src/content/blog/craft-and-agents.mdx @@ -0,0 +1,13 @@ +--- +title: Craft and Agents +description: Rediscovering craft as we delegate more to agents +date: 2026-02-01 +tags: craft, ai, principles +draft: true +code: b2538 +--- + +- Craft is changing +- Material: code. It's syntax and structure. Less important to humans than it once was. +- Tools: once IDEs, keyboard shortcuts, templating tools, snippets. Now AGENTS.md and skills, CLI tools, agent wrappers, etc. +- Process: Parallel agents, plan & build loop diff --git a/src/content/url-manifest.yaml b/src/content/url-manifest.yaml index 54b03875..f0af9479 100644 --- a/src/content/url-manifest.yaml +++ b/src/content/url-manifest.yaml @@ -12,6 +12,8 @@ codes: - /blog/the-values-I-build-by b252b: - /blog/why-i-built-a-claude-code-plugin-marketplace + b2538: + - /blog/craft-and-agents p1e73: - /projects/devtools-fm p2323: From d342e868e841d99aaac5922a13945414526d990c Mon Sep 17 00:00:00 2001 From: Justin Bennett Date: Sat, 7 Feb 2026 09:41:36 -0500 Subject: [PATCH 2/3] Made some progress on the post --- src/content/blog/craft-and-agents.mdx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/content/blog/craft-and-agents.mdx b/src/content/blog/craft-and-agents.mdx index 8342a9a2..d0906a38 100644 --- a/src/content/blog/craft-and-agents.mdx +++ b/src/content/blog/craft-and-agents.mdx @@ -7,7 +7,12 @@ draft: true code: b2538 --- -- Craft is changing -- Material: code. It's syntax and structure. Less important to humans than it once was. -- Tools: once IDEs, keyboard shortcuts, templating tools, snippets. Now AGENTS.md and skills, CLI tools, agent wrappers, etc. -- Process: Parallel agents, plan & build loop +## Discovering Craft + +I remember the moment when I fell in love with programming. I'd tried to pick it up when I was younger, but without resources or guidance I floundered and thought maybe it wasn't for me. I took an intro to C class in my freshman year of college just to see if that still held true. It clicked immediately. I flew through the course work and ended up making a little animation framework using ANSI escape sequences. + +I found that I loved the process just as much as the product. I started dozens of projects those first few years, just as much to explore languages and techniques as to produce something. I went deep on object oriented programming, read the gang of four book, and discovered the delight and horror of over engineering. I discovered the joy of building for the web, the satisfaction of functional programming, and my deep love for building tools. + +Over the years I've refined my tastes. Went through phases of over and under engineering. Began to appreciate the value and subtle difficulty simple code. Formed strong opinions on tooling, what makes for good feedback when reviewing code, and how to balance tradeoffs. + +Through toil and dedication I've refined my craft. It's been hard work and sometimes long, delightfully frustrating hours. From 8aec7203fe46180baeae006d6c6d9f561b1c25c5 Mon Sep 17 00:00:00 2001 From: Justin Bennett Date: Sat, 7 Feb 2026 22:02:39 -0500 Subject: [PATCH 3/3] Fix tags format in craft-and-agents blog post Changes tags from string to array format to match content collection schema requirements. Co-Authored-By: Claude Sonnet 4.5 --- src/content/blog/craft-and-agents.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/blog/craft-and-agents.mdx b/src/content/blog/craft-and-agents.mdx index d0906a38..62f6ed23 100644 --- a/src/content/blog/craft-and-agents.mdx +++ b/src/content/blog/craft-and-agents.mdx @@ -2,7 +2,7 @@ title: Craft and Agents description: Rediscovering craft as we delegate more to agents date: 2026-02-01 -tags: craft, ai, principles +tags: [craft, ai, principles] draft: true code: b2538 ---