OpenSpec-Zed — Summary
OpenSpec-Zed is a Rust-based Zed editor extension that registers 11 OpenSpec slash commands (/openspec propose, /openspec explore, /openspec new, etc.) in the Zed Assistant panel, providing Zed users with a native UI bridge to the OpenSpec spec-driven development workflow.
Problem it solves: The canonical OpenSpec CLI has no native IDE integration for Zed; users must switch to a terminal to run openspec commands. This extension adds slash commands to Zed's AI assistant panel so the full OpenSpec workflow can be initiated from within the editor context.
Distinctive trait: Pure Rust WASM extension — zero JavaScript, no npm dependency at runtime. The extension generates contextual AI prompts for each OpenSpec workflow step and passes them to Zed's AI assistant, but explicitly does not execute OpenSpec CLI commands itself (the user must still run those manually in a terminal).
Target audience: Rust developers and Zed editor users who prefer the OpenSpec SDD workflow but want native IDE ergonomics without leaving the editor.
Production-readiness: v0.0.1, 14 stars, last commit March 2026, GPL-3.0 license (unlike most frameworks in this batch which are MIT). One contributor. The README includes the line "I am not your maid, clean your code..." suggesting an early/personal project.
Relationship to seeds: Most similar to kiro (Archetype 5 — IDE-specific integration), but much simpler: where Kiro is a full IDE fork with proprietary hook events, OpenSpec-Zed is a thin prompt-injection adapter that requires both the Zed editor and the OpenSpec CLI pre-installed. Unlike the canonical openspec seed (which ships commands + skills across multiple AI tools), OpenSpec-Zed is single-tool (Zed only) and provides no independent prompts beyond what OpenSpec CLI already generates.