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
Add support for generic AI agents with customizable command directories
- Introduced `--ai generic` option for unsupported agents, allowing users to specify their own command directories.
- Updated documentation and examples to reflect the new generic agent support.
- Enhanced scripts and workflows to accommodate the new agent type.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
14
15
15
-**Python 3.14 / Homebrew compatibility**: Added explicit `click>=8.1` dependency so the resolver always selects a Click version compatible with Python 3.14 and avoids errors such as `TypeError: ParamType.get_metavar() got an unexpected keyword argument 'ctx'` when an older Click would otherwise be used. Note that broader uv/Homebrew environment isolation or `sys.path` bleed issues (see [#1631](https://github.com/github/spec-kit/issues/1631)) may still require environment-level workarounds.
16
16
17
-
## [0.1.1] - 2026-02-13
17
+
## [0.1.1] - 2026-02-17
18
18
19
19
### Added
20
20
@@ -28,6 +28,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
28
28
-**Existing repos** (`--here`): pre-existing command files are preserved — no breaking changes
29
29
-`pyyaml` dependency (already present) used for YAML frontmatter parsing
30
30
-**Unit tests** for `install_ai_skills`, `_get_skills_dir`, and `--ai-skills` CLI validation (51 test cases covering all 18 supported agents)
31
+
-**Generic Agent Support**: Added `--ai generic` option for unsupported AI agents ("bring your own agent")
32
+
- Requires `--ai-commands-dir <path>` to specify where the agent reads commands from
33
+
- Generates Markdown commands with `$ARGUMENTS` format (compatible with most agents)
project_name: str=typer.Argument(None, help="Name for your new project directory (optional if using --here, or use '.' for current directory)"),
1191
-
ai_assistant: str=typer.Option(None, "--ai", help="AI assistant to use: claude, gemini, copilot, cursor-agent, qwen, opencode, codex, windsurf, kilocode, auggie, codebuddy, amp, shai, q, agy, bob, or qoder "),
1197
+
ai_assistant: str=typer.Option(None, "--ai", help="AI assistant to use: claude, gemini, copilot, cursor-agent, qwen, opencode, codex, windsurf, kilocode, auggie, codebuddy, amp, shai, q, agy, bob, qoder, or generic (requires --ai-commands-dir)"),
1198
+
ai_commands_dir: str=typer.Option(None, "--ai-commands-dir", help="Directory for agent command files (required with --ai generic, e.g. .myagent/commands/)"),
1192
1199
script_type: str=typer.Option(None, "--script", help="Script type to use: sh or ps"),
1193
1200
ignore_agent_tools: bool=typer.Option(False, "--ignore-agent-tools", help="Skip checks for AI agent tools like Claude Code"),
0 commit comments