From 63f823451a5e44d46e6fc776070ee2b0322878c9 Mon Sep 17 00:00:00 2001 From: Spencer Charest Date: Wed, 1 Jul 2026 16:49:22 -0600 Subject: [PATCH] feat(zero): add warp to agents.json Add a Warp entry to the agents matrix so zero init provisions Warp. Warp has no plugin installer or lifecycle hooks (see #46), so it is a kiro-style standalone-only entry: home-level skill dirs (.warp/skills, .agents/skills) plus the global MCP config at .warp/.mcp.json. Warp's MCP entries carry a bare url with no type field, so the shape is "http-url" rather than kiro's "http-type-url". Co-Authored-By: Claude Fable 5 --- plugins/zero-gemini/gemini-extension.json | 2 +- plugins/zero/.claude-plugin/plugin.json | 2 +- plugins/zero/.codex-plugin/plugin.json | 2 +- plugins/zero/.factory-plugin/plugin.json | 2 +- plugins/zero/agents.json | 9 +++++++++ 5 files changed, 13 insertions(+), 4 deletions(-) diff --git a/plugins/zero-gemini/gemini-extension.json b/plugins/zero-gemini/gemini-extension.json index a1db7cb..de1a3b4 100644 --- a/plugins/zero-gemini/gemini-extension.json +++ b/plugins/zero-gemini/gemini-extension.json @@ -1,6 +1,6 @@ { "name": "zero", - "version": "1.5.3", + "version": "1.6.0", "description": "Discover and call paid AI capabilities (x402 / MPP) with automatic, wallet-backed payment. Search a live index of external services — image/video/audio generation, web scraping, data enrichment, real-time data, messaging — then call them and pay per use. Bundles the 'zero' skill and the Zero MCP connector.", "mcpServers": { "zero": { diff --git a/plugins/zero/.claude-plugin/plugin.json b/plugins/zero/.claude-plugin/plugin.json index 93ded0f..ff50253 100644 --- a/plugins/zero/.claude-plugin/plugin.json +++ b/plugins/zero/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "zero", - "version": "1.5.3", + "version": "1.6.0", "description": "Discover and call paid AI capabilities (x402 / MPP) with automatic, wallet-backed payment. Search a live index of external services — image/video/audio generation, web scraping, data enrichment, real-time data, messaging — then call them and pay per use. Bundles the 'zero' skill and the Zero MCP connector.", "author": { "name": "Zero", "url": "https://zero.xyz" }, "homepage": "https://zero.xyz", diff --git a/plugins/zero/.codex-plugin/plugin.json b/plugins/zero/.codex-plugin/plugin.json index c4933a1..ecf9fcb 100644 --- a/plugins/zero/.codex-plugin/plugin.json +++ b/plugins/zero/.codex-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "zero", - "version": "1.5.3", + "version": "1.6.0", "description": "Discover and call paid AI capabilities (x402 / MPP) with automatic, wallet-backed payment. Search a live index of external services — image/video/audio generation, web scraping, data enrichment, real-time data, messaging — then call them and pay per use. Bundles the 'zero' skill.", "author": { "name": "Zero", "url": "https://zero.xyz" }, "homepage": "https://zero.xyz", diff --git a/plugins/zero/.factory-plugin/plugin.json b/plugins/zero/.factory-plugin/plugin.json index 93ded0f..ff50253 100644 --- a/plugins/zero/.factory-plugin/plugin.json +++ b/plugins/zero/.factory-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "zero", - "version": "1.5.3", + "version": "1.6.0", "description": "Discover and call paid AI capabilities (x402 / MPP) with automatic, wallet-backed payment. Search a live index of external services — image/video/audio generation, web scraping, data enrichment, real-time data, messaging — then call them and pay per use. Bundles the 'zero' skill and the Zero MCP connector.", "author": { "name": "Zero", "url": "https://zero.xyz" }, "homepage": "https://zero.xyz", diff --git a/plugins/zero/agents.json b/plugins/zero/agents.json index f8d442b..3aac5d5 100644 --- a/plugins/zero/agents.json +++ b/plugins/zero/agents.json @@ -66,6 +66,15 @@ "mcp": { "file": ".kiro/settings/mcp.json", "shape": "http-type-url" }, "hooks": { "file": ".kiro/agents/zero.json", "format": "kiro-agent", "sessionStart": true } } + }, + { + "id": "warp", + "name": "Warp", + "detect": { "exe": "warp-terminal", "dir": ".warp" }, + "standalone": { + "skills": [".warp/skills", ".agents/skills"], + "mcp": { "file": ".warp/.mcp.json", "shape": "http-url" } + } } ] }