From c7bc8e6ca7501d86b48c2e08431f369ce6983a69 Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Thu, 25 Dec 2025 02:11:43 -0800 Subject: [PATCH] feat: Add proto prefix for distilled molecules (bd-hobo) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Distilled protos (via `bd mol distill`) now get bd-proto-xxx IDs. Summary of distinct prefixes: - bd-proto-xxx: templates created via distill - bd-mol-xxx: instances created via pour - bd-wisp-xxx: ephemeral instances via wisp create - bd-xxx: regular issues 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- cmd/bd/mol_distill.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/bd/mol_distill.go b/cmd/bd/mol_distill.go index ca2beb17..acd9146d 100644 --- a/cmd/bd/mol_distill.go +++ b/cmd/bd/mol_distill.go @@ -256,6 +256,7 @@ func distillMolecule(ctx context.Context, s storage.Storage, subgraph *MoleculeS IssueType: oldIssue.IssueType, Labels: labels, EstimatedMinutes: oldIssue.EstimatedMinutes, + IDPrefix: "proto", // bd-hobo: distinct prefix for protos } if err := tx.CreateIssue(ctx, newIssue, actorName); err != nil {