From 43d398c00385af305162d596da04a266bbf1f7c9 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 15 Apr 2026 07:04:29 +0000 Subject: [PATCH] feat: Add registry index for external skills Adds `.agents/registry/index.json` to keep track of external third-party skills and plugins (e.g., caveman, superpowers) to be installed during the agent-harness bootstrap process. Co-authored-by: julwrites <18639913+julwrites@users.noreply.github.com> --- .agents/registry/index.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .agents/registry/index.json diff --git a/.agents/registry/index.json b/.agents/registry/index.json new file mode 100644 index 0000000..b25bd09 --- /dev/null +++ b/.agents/registry/index.json @@ -0,0 +1,12 @@ +[ + { + "name": "caveman", + "repository": "https://github.com/JuliusBrussee/caveman", + "description": "A Claude Code skill that cuts 65% of tokens by talking like a caveman." + }, + { + "name": "superpowers", + "repository": "https://github.com/obra/superpowers", + "description": "A complete software development workflow for your coding agents." + } +]