feat(zero): add warp to agents.json#61
Merged
Merged
Conversation
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 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a Warp entry to
plugins/zero/agents.jsonsozero initcan provision Warp, and bumps the shared plugin version to1.6.0viamake minor.Warp has no plugin installer and no lifecycle hooks (established in #46), so this is a kiro-style standalone-only entry — no
installblock, nohooksblock:{ "id": "warp", "name": "Warp", "detect": { "exe": "warp-terminal", "dir": ".warp" }, "standalone": { "skills": [".warp/skills", ".agents/skills"], "mcp": { "file": ".warp/.mcp.json", "shape": "http-url" } } }Design notes
~/.warpconfig dir;warp-terminalis Warp's Linux binary name (macOS ships an app bundle with no CLI on PATH, butdetect.exeis only the secondary plugin-vs-standalone signal and Warp has no install block anyway).~/.warp/skillsand~/.agents/skills(https://docs.warp.dev/agent-platform/capabilities/skills/). Host-specific dir first, portable dir second, matching the kiro entry.~/.warp/.mcp.jsonwith{"mcpServers": {"zero": {"url": ...}}}— a bareurlwith notypefield (https://docs.warp.dev/agent-platform/capabilities/mcp/), hence a newhttp-urlshape name rather than reusing kiro'shttp-type-url.@zeroxyz/cli≥ 1.11.0) currently consumes onlystandalone.skills;mcpis carried as data for the future MCP-provisioning pass, same as kiro's entry. Wiring up thehttp-urlshape is CLI-side work.Relationship to #46
#46 (draft Warp adapter) ships the packaging side:
plugins/zero-warp,scripts/build-warp.sh, andguides/warp.md. This PR is the matrix side — it makeszero initaware of Warp under the data-in-file/verbs-in-CLI model and does not depend on #46 landing.Verification
agents.jsonzod schema (id/name/detectrequired, optionalinstall/standalone,mcpneedsfile+shape) — all pass.jq . plugins/zero/agents.jsonparses clean.make version→1.6.0; all four host manifests bumped in lockstep.🤖 Generated with Claude Code