Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
b122303
feat: add Zed integration
arrrrny May 31, 2026
1d20a63
fix: address Copilot review - fix docstring punctuation, merge upstre…
arrrrny Jun 1, 2026
d6df1e8
fix: update integrations stats grid to 31 for consistency
arrrrny Jun 2, 2026
d2538e7
Merge remote-tracking branch 'upstream/main' into feat/2779-zed-integ…
arrrrny Jun 2, 2026
2e99b19
fix: address Copilot review feedback
arrrrny Jun 2, 2026
e4f3b4c
Potential fix for pull request finding
arrrrny Jun 3, 2026
2b9b482
fix: address Copilot review round 2
arrrrny Jun 3, 2026
52b6d0b
Potential fix for pull request finding
arrrrny Jun 4, 2026
2dbbe75
fix: address copilot review feedback for zed integration
arrrrny Jun 4, 2026
48f7e94
Merge branch 'main' into feat/2779-zed-integration
arrrrny Jun 4, 2026
429ce89
fix: refine slash-skill logic and ai-skills validation
arrrrny Jun 4, 2026
04d3eb3
fix: remove unused variables and update ai-skills help text
arrrrny Jun 4, 2026
3d2c70b
fix: add trae_skill_mode to hook invocation for consistency
arrrrny Jun 4, 2026
cb89f7d
fix: make Agy always skills-based for consistency
arrrrny Jun 4, 2026
8a2c278
fix: gate agy_skill_mode and refactor _render_hook_invocation to use …
arrrrny Jun 4, 2026
e27ce85
Merge upstream/main into feat/2779-zed-integration
arrrrny Jun 4, 2026
5466d62
fix: address latest Copilot review comments
arrrrny Jun 4, 2026
a96d596
fix: address latest Copilot review comments
arrrrny Jun 5, 2026
0ced30a
Merge branch 'main' into feat/2779-zed-integration
arrrrny Jun 5, 2026
8a1d8fd
fix: re-add _is_skills_integration definition lost in merge
arrrrny Jun 5, 2026
c6a0b31
fix: gate zed_skill_mode on _is_skills_integration for consistency
arrrrny Jun 5, 2026
5f3cdb4
fix: remove unused claude_skill_mode and cursor_skill_mode locals in …
arrrrny Jun 6, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

**Define what to build before building it — with any AI coding agent.**

Spec Kit is a toolkit for [Spec-Driven Development](concepts/sdd.md) (SDD), a methodology that puts specifications at the center of AI-assisted software development. Instead of jumping straight to code, you describe *what* to build, refine it through structured phases, and let your AI coding agent implement it.
Spec Kit is a toolkit for [Spec-Driven Development](concepts/sdd.md) (SDD), a methodology that puts specifications at the center of AI-assisted software development. Instead of jumping straight to code, you describe _what_ to build, refine it through structured phases, and let your AI coding agent implement it.

<a href="installation.md" class="btn btn-primary btn-lg">Install Spec Kit</a>&nbsp;
<a href="quickstart.md" class="btn btn-outline-primary btn-lg">Quick Start</a>
Expand All @@ -31,7 +31,7 @@ Define what to build before building it. Rich templates, quality checklists, and

### Use any coding agent

<span class="pillar-stat">30 integrations</span> — Copilot, Gemini, Codex, Windsurf, Claude, Forge, Kiro, and more. Switch freely between agents with a single command. No lock-in.
<span class="pillar-stat">30+ integrations</span> — Copilot, Gemini, Codex, Windsurf, Zed, Claude, Forge, Kiro, and more. Switch freely between agents with a single command. No lock-in.

Run `specify init` with your agent of choice and Spec Kit sets up the right command files, context rules, and directory structures automatically. If your agent isn't listed, the `generic` integration is an escape hatch for any tool.

Expand Down Expand Up @@ -90,7 +90,7 @@ Community extensions like CI Guard and Architecture Guard add compliance gates a
<span class="stat-label">Contributors</span>
</div>
<div class="stat-item">
<span class="stat-number">30</span>
<span class="stat-number">30+</span>
<span class="stat-label">Integrations</span>
</div>
<div class="stat-item">
Expand Down
1 change: 1 addition & 0 deletions docs/reference/integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ The Specify CLI supports a wide range of AI coding agents. When you run `specify
| [Tabnine CLI](https://docs.tabnine.com/main/getting-started/tabnine-cli) | `tabnine` | |
| [Trae](https://www.trae.ai/) | `trae` | Skills-based integration; skills are installed automatically |
| [Windsurf](https://windsurf.com/) | `windsurf` | |
| [Zed](https://zed.dev/) | `zed` | Skills-based integration; installs skills into `.agents/skills` and invokes them as `/speckit-<command>` |
| Generic | `generic` | Bring your own agent — use `--integration generic --integration-options="--commands-dir <path>"` for AI coding agents not listed above |

## List Available Integrations
Expand Down
395 changes: 308 additions & 87 deletions src/specify_cli/commands/init.py

Large diffs are not rendered by default.

Loading