Den Delimarsky
3e85f46465
Merge pull request #910 from zidoshare/create-new-feature
...
fix: correct argument parsing in create-new-feature.sh script
v0.0.72
2025-10-18 20:04:53 -07:00
Den Delimarsky
015440838a
Merge branch 'main' into create-new-feature
2025-10-18 20:04:37 -07:00
Den Delimarsky
7050a3151c
Merge pull request #918 from wfongcn/patch-1
...
Change loop condition to include last argument
v0.0.71
2025-10-18 20:03:39 -07:00
Den Delimarsky
9e84f46e56
Merge pull request #929 from isdaniel/fix/ide-agent-cli-checks
...
fix: Skip CLI checks for IDE-based agents in check command
2025-10-18 20:03:14 -07:00
Den Delimarsky
5e32de1f3f
Merge pull request #904 from zidoshare/main
...
Fix: incorrect command formatting in agent context file, refix #895
v0.0.70
2025-10-18 18:32:51 -07:00
Den Delimarsky
5558b24475
Merge pull request #934 from JackieQi/main
...
fix: broken media files
2025-10-18 18:30:19 -07:00
Jackie Qi
f892b9e1cb
fix: broken media files
2025-10-17 13:04:27 -07:00
Den Delimarsky
a66af9b7f5
Merge pull request #914 from isdaniel/smart-merge-settings.json
...
Smart JSON Merging for VS Code Settings `.vscode/settings.json`
2025-10-17 10:42:29 -07:00
Den Delimarsky
a5fdd53a3e
Merge pull request #930 from lutzroeder/main
...
Update README.md
2025-10-17 10:39:29 -07:00
Lutz Roeder
ed0fa8fffe
Update README.md
2025-10-17 10:25:36 -07:00
danielshih
098380a46f
fix: Skip CLI checks for IDE-based agents in check command
...
- Add requires_cli field handling to check() command
- IDE-based agents (copilot, cursor-agent, windsurf, kilocode, roo) now properly skip CLI checks
- Prevents false errors when checking for IDE-integrated agents that don't require CLI tools
2025-10-17 23:53:47 +08:00
Peter Wang
74f7e508a4
Change loop condition to include last argument
...
The last argument is not processed.
e.g. create-new-feature.sh -h doesn't show the help information.
2025-10-17 09:03:47 +08:00
danielshih
8130d98bcc
The function parameters lack type hints. Consider adding type annotations for better code clarity and IDE support.
2025-10-17 00:24:28 +08:00
danielshih
315269d9a8
- **Smart JSON Merging for VS Code Settings**: .vscode/settings.json is now intelligently merged instead of being overwritten during specify init --here or specify init .
...
- Existing settings are preserved
- New Spec Kit settings are added
- Nested objects are merged recursively
- Prevents accidental loss of custom VS Code workspace configurations
2025-10-17 00:16:04 +08:00
hongxuww
b37a9516d0
fix: correct argument parsing in create-new-feature.sh script
...
Fix two critical bugs in the argument parsing logic that caused incorrect
behavior when --short-name parameter was used:
1. **Index offset bug**: The loop started at i=0 and used i < $#, which
incorrectly processed $0 (script name) as the first argument and
skipped the last actual parameter. Changed to i=1 and i <= $# to
properly iterate through actual command-line arguments ($1 to $#).
2. **Boundary condition bug**: The condition `[ $((i + 1)) -ge $# ]`
incorrectly flagged valid arguments as missing. When --short-name was
at position $#-1, the next position $# was valid but treated as
out-of-bounds. Changed to `[ $((i + 1)) -gt $# ]` for correct validation.
3. **Enhanced validation**: Added check to ensure --short-name value is
not another option (doesn't start with --).
**Before**:
- `script --json "desc" --short-name "test"` → Error: requires a value
- `script --json "desc1" "desc2" --short-name` → Generated wrong branch name
**After**:
- `script --json "desc" --short-name "test"` → Works correctly
- `script --json "desc1" "desc2" --short-name` → Proper error message
This ensures the script correctly supports both parameter orders:
- `[--json] [--short-name <name>] <feature_description>`
- `[--json] <feature_description> [--short-name <name>]`
2025-10-16 10:02:53 +00:00
hongxuww
03c7021270
Fix: incorrect command formatting in agent context file, refix #895
2025-10-16 02:11:48 +00:00
Den Delimarsky
3b000fce4d
Merge pull request #881 from github/localden/fixes
...
Updates to templates and scripts
v0.0.69
2025-10-15 10:56:49 -07:00
Den Delimarsky
c59595d065
Merge pull request #897 from isdaniel/add-more-lang
...
Support more lang of Common Patterns by Technology
v0.0.68
2025-10-15 10:56:08 -07:00
Den Delimarsky
1c16a68df2
Merge pull request #766 from thenets/use-the-number-prefix-to-find-the-right-spec
...
Use the number prefix to find the right spec
v0.0.67
2025-10-15 10:55:33 -07:00
Den Delimarsky
39bf3e4d9a
Merge pull request #894 from tennc/main
...
update codebuddy to codebuddy cli
v0.0.66
2025-10-15 10:52:25 -07:00
Den Delimarsky
045696641a
Merge pull request #895 from zidoshare/main
...
Fix: incorrect command formatting in agent context file
v0.0.65
2025-10-15 10:51:34 -07:00
danielshih
41690cd1d4
format content as copilot suggest
2025-10-15 23:55:00 +08:00
danielshih
e45c469709
Ruby, PHP, Rust, Kotlin, C, C++
2025-10-15 23:15:39 +08:00
hongxuww
8c9e586662
Fix: Fix incorrect command formatting in agent context file
...
The issue is that `sed` treats `&&` as a placeholder instead of a regular character. So in the CLAUDE.md file's "Commands" section, it incorrectly shows:
`npm test [ONLY COMMANDS FOR ACTIVE TECHNOLOGIES][ONLY COMMANDS FOR ACTIVE TECHNOLOGIES] npm run lint`
instead of the correct:
`npm test && npm run lint`
2025-10-15 14:04:22 +00:00
root
ce844c6259
Update CodeBuddy agent name to 'CodeBuddy CLI'
2025-10-15 21:52:59 +08:00
root
84b46cd1b9
Rename CodeBuddy to CodeBuddy CLI in update script
2025-10-15 21:50:11 +08:00
root
0cca67fcd2
Update AI coding agent references in installation guide
2025-10-15 21:47:36 +08:00
root
66fc4c292d
Rename CodeBuddy to CodeBuddy CLI in AGENTS.md
2025-10-15 21:42:08 +08:00
root
2baae57b26
Update README.md
2025-10-15 21:38:16 +08:00
root
514b0548fe
Update CodeBuddy link in README.md
2025-10-15 21:36:01 +08:00
root
be7db635cc
update codebuddyCli
2025-10-15 21:34:40 +08:00
Den Delimarsky
a945077b8d
Update scripts/bash/create-new-feature.sh
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-10-14 23:39:50 -07:00
Den Delimarsky
7b55522213
Merge pull request #886 from jarrensj/docs/fix-heading-capitalization-consistency
...
docs: fix heading capitalization for consistency
2025-10-14 23:39:23 -07:00
Jarren San Jose
7ca792509b
docs: fix heading capitalization for consistency
2025-10-14 18:48:47 -07:00
den (work)
4522fb4c44
Update create-new-feature.sh
2025-10-14 11:54:48 -07:00
den (work)
36ff7e6505
Update files
2025-10-14 11:52:26 -07:00
den (work)
defb1870da
Update files
2025-10-14 11:47:00 -07:00
den (work)
b61f04c898
Create .gitattributes
2025-10-14 11:43:51 -07:00
den (work)
64745162df
Update wording
2025-10-14 11:28:47 -07:00
den (work)
97df98b9a0
Update logic for arguments
2025-10-14 11:03:57 -07:00
den (work)
36383b411f
Update script logic
2025-10-14 10:55:54 -07:00
den (work)
3e476c2ba6
Update README.md
2025-10-14 10:38:40 -07:00
den (work)
654a00aac9
Update tasks.md
v0.0.64
2025-10-14 10:33:58 -07:00
Den Delimarsky
4690d13f88
Merge pull request #868 from benzyc/patch-1
...
Update README.md
2025-10-14 07:36:05 -07:00
Den Delimarsky
e7bb98de42
Merge pull request #873 from zidoshare/main
...
fix: update CODEBUDDY file path in agent context scripts
v0.0.63
2025-10-14 07:35:13 -07:00
hongxuww
d4f5c75519
fix: update CODEBUDDY file path in agent context scripts
2025-10-14 09:30:43 +00:00
benzyc
09f57a87fa
Update README.md
...
Currently spec-kit is compatible with windows directly, therefore change the prerequisites from Linux/masos to linux/macos/windows.
This is quite important for windows users
2025-10-14 09:59:27 +08:00
Den Delimarsky
b702fcbbc0
Merge pull request #861 from uberspeck/docs/add-speckit-tasks-step
...
docs: add /speckit.tasks walkthrough step
2025-10-13 17:47:36 -07:00
Brian Campbell
2c1de4202e
docs(readme): add /speckit.tasks step and renumber walkthrough
2025-10-13 10:18:08 -06:00
Den Delimarsky
e65660ffc3
Merge pull request #831 from ben-edgar/bugfix/cursor-package-name-update
...
fix: align Cursor agent naming to use 'cursor-agent' consistently
v0.0.62
2025-10-11 09:05:49 -07:00