From c73076fb23891de4f2320364782b16566a5ad04e Mon Sep 17 00:00:00 2001 From: Sheldon Finlay Date: Fri, 27 Mar 2026 08:05:30 -0400 Subject: [PATCH] fix: add owner field and schema to marketplace.json --- .claude-plugin/marketplace.json | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 8b72a2d..51d7c01 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -1,14 +1,23 @@ { + "$schema": "https://anthropic.com/claude-code/marketplace.schema.json", "name": "agent-loop", + "description": "Autonomous generator-evaluator agent loop for long-running coding tasks", + "owner": { + "name": "Sheldon" + }, "plugins": [ { "name": "agent-loop", + "source": "./", "description": "Autonomous generator-evaluator agent loop for long-running coding tasks. Plan interactively, then execute with full visibility.", "version": "0.1.0", - "source": { - "source": "github", - "repo": "https://git.jagfly.com/sheldon/loop-loop.git" - } + "author": { + "name": "Sheldon" + }, + "repository": "https://git.jagfly.com/sheldon/loop-loop", + "license": "MIT", + "keywords": ["agent", "loop", "autonomous", "generator", "evaluator", "harness"], + "category": "workflow" } ] }