You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install Claude Code as native skills and align preset/integration flows (#2051)
* Use Claude skills for generated commands
* Fix Claude integration and preset skill flows
* Group Claude tests in integration suite
* Align Claude skill frontmatter across generators
* Fix native skill preset cleanup
* Keep legacy AI skills test on legacy path
* Move Claude here-mode test to CLI suite
|[Codex CLI](https://github.com/openai/codex)| ✅ | Requires `--ai-skills`. Codex recommends [skills](https://developers.openai.com/codex/skills) and treats [custom prompts](https://developers.openai.com/codex/custom-prompts) as deprecated. Spec-kit installs Codex skills into `.agents/skills` and invokes them as `$speckit-<command>`. |
287
287
|[Cursor](https://cursor.sh/)| ✅ ||
@@ -401,8 +401,8 @@ specify init my-project --ai claude --debug
401
401
# Use GitHub token for API requests (helpful for corporate environments)
402
402
specify init my-project --ai claude --github-token ghp_your_token_here
403
403
404
-
#Install agent skills with the project
405
-
specify init my-project --ai claude --ai-skills
404
+
#Claude Code installs skills with the project by default
405
+
specify init my-project --ai claude
406
406
407
407
# Initialize in current directory with agent skills
408
408
specify init --here --ai gemini --ai-skills
@@ -416,7 +416,11 @@ specify check
416
416
417
417
### Available Slash Commands
418
418
419
-
After running `specify init`, your AI coding agent will have access to these slash commands for structured development.
419
+
After running `specify init`, your AI coding agent will have access to these structured development commands.
420
+
421
+
Most agents expose the traditional dotted slash commands shown below, like `/speckit.plan`.
422
+
423
+
Claude Code installs spec-kit as skills and invokes them as `/speckit-constitution`, `/speckit-specify`, `/speckit-plan`, `/speckit-tasks`, and `/speckit-implement`.
420
424
421
425
For Codex CLI, `--ai-skills` installs spec-kit as agent skills instead of slash-command prompt files. In Codex skills mode, invoke spec-kit as `$speckit-constitution`, `$speckit-specify`, `$speckit-plan`, `$speckit-tasks`, and `$speckit-implement`.
0 commit comments