From 4ddc1133755558cb6890ce9fedd929fbfa8f1f20 Mon Sep 17 00:00:00 2001 From: Ben Stull Date: Thu, 4 Jun 2026 05:37:41 -0700 Subject: [PATCH] chore: register app.json for session protocol Registers the repo as a Wiggleverse app so its build sessions get tracked transcripts. One Name = main repo name (human-experience-filter-art); sessions live self-contained in this repo under sessions/, matching the benstull-host convention (benstull/docs). Co-Authored-By: Claude Opus 4.8 (1M context) --- app.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 0000000..b2c8596 --- /dev/null +++ b/app.json @@ -0,0 +1,20 @@ +{ + "schemaVersion": "1.0", + "name": "human-experience-filter-art", + "title": "Human Experience Filter — art installation", + "giteaHost": "ssh://git@git.benstull.org", + "repos": [ + { + "namespace": "benstull", + "name": "human-experience-filter-art", + "contains": ["code", "specs", "documentation", "roadmap", "sessions"], + "sessions": { + "subdir": "sessions", + "layout": "folder-per-session", + "naming": "numeric", + "manifest": true, + "visibility": "private" + } + } + ] +}