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
**Note**: Skip CLI checks for IDE-based agents (Copilot, Windsurf).
194
+
**Note**: CLI tool checks are now handled automatically based on the `requires_cli` field in AGENT_CONFIG. No additional code changes needed in the `check()` or `init()` commands - they automatically loop through AGENT_CONFIG and check tools as needed.
195
+
196
+
## Important Design Decisions
197
+
198
+
### Using Actual CLI Tool Names as Keys
199
+
200
+
**CRITICAL**: When adding a new agent to AGENT_CONFIG, always use the **actual executable name** as the dictionary key, not a shortened or convenient version.
201
+
202
+
**Why this matters:**
203
+
- The `check_tool()` function uses `shutil.which(tool)` to find executables in the system PATH
204
+
- If the key doesn't match the actual CLI tool name, you'll need special-case mappings throughout the codebase
205
+
- This creates unnecessary complexity and maintenance burden
5.**Help text inconsistency**: Update all user-facing text consistently
309
+
1.**Using shorthand keys instead of actual CLI tool names**: Always use the actual executable name as the AGENT_CONFIG key (e.g., `"cursor-agent"` not `"cursor"`). This prevents the need for special-case mappings throughout the codebase.
310
+
2.**Forgetting update scripts**: Both bash and PowerShell scripts must be updated when adding new agents.
311
+
3.**Incorrect `requires_cli` value**: Set to `True` only for agents that actually have CLI tools to check; set to `False` for IDE-based agents.
312
+
4.**Wrong argument format**: Use correct placeholder format for each agent type (`$ARGUMENTS` for Markdown, `{{args}}` for TOML).
Copy file name to clipboardExpand all lines: CHANGELOG.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,19 @@ All notable changes to the Specify CLI and templates are documented here.
7
7
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8
8
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
9
10
+
## [0.0.19] - 2025-10-10
11
+
12
+
### Added
13
+
14
+
- Support for CodeBuddy (thank you to [@lispking](https://github.com/lispking) for the contribution).
15
+
- You can now see Git-sourced errors in the Specify CLI.
16
+
17
+
### Changed
18
+
19
+
- Fixed the path to the constitution in `plan.md` (thank you to [@lyzno1](https://github.com/lyzno1) for spotting).
20
+
- Fixed backslash escapes in generated TOML files for Gemini (thank you to [@hsin19](https://github.com/hsin19) for the contribution).
21
+
- Implementation command now ensures that the correct ignore files are added (thank you to [@sigent-amazon](https://github.com/sigent-amazon) for the contribution).
0 commit comments