den (work)
14a574a6a8
Chatmodes are back in vogue
2025-10-21 14:29:45 -07:00
den (work)
dbd1437aea
Let's switch to proper prompts
2025-10-21 13:17:48 -07:00
den (work)
c59be99dc4
Testing hand-offs
2025-10-21 10:35:46 -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
2025-10-18 20:03:39 -07: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
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
2025-10-15 10:56:49 -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
2025-10-15 10:55:33 -07:00
Den Delimarsky
39bf3e4d9a
Merge pull request #894 from tennc/main
...
update codebuddy to codebuddy cli
2025-10-15 10:52:25 -07: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
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 (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)
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
hongxuww
d4f5c75519
fix: update CODEBUDDY file path in agent context scripts
2025-10-14 09:30:43 +00:00
Ben Greene
f7ae5781b7
A few more places to update from code review
2025-10-10 21:12:06 -04:00
Den Delimarsky
68809bdacb
Update scripts/powershell/update-agent-context.ps1
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-10-10 11:07:21 -07:00
Den Delimarsky
6c947cc8d8
Merge branch 'main' into codebuddy
2025-10-10 11:03:13 -07:00
Luiz Costa
47e5f7c2e2
Use the number prefix to find the right spec
2025-10-07 06:45:25 -03:00
den (work)
15e5572a1d
Update command reference
2025-10-06 22:16:48 -07:00
Brian Anderson
7fa0cc5e70
Merge branch 'github:main' into q-agent
2025-10-01 02:33:10 -06:00
stenyin
b2f749ef41
fix: add UTF-8 encoding to file read/write operations in update-agent-context.ps1
2025-09-28 05:48:24 +08:00
Brian Anderson
de1db34b08
feat(agent): Added Amazon Q Developer CLI Integration
2025-09-25 21:13:26 -06:00
King
aa599b8af1
Merge branch 'main' into codebuddy
2025-09-26 09:12:09 +08:00
danyow
c6051a0b8a
Merge pull request #2 from danyow/patch-2
...
Update template path for spec file creation
2025-09-24 21:34:10 +08:00
danyow
e924a73625
Update template path for spec file creation
2025-09-24 21:31:37 +08:00
danyow
e642acaea4
Update template path for spec file creation
2025-09-24 21:30:22 +08:00
Den Delimarsky 🌺
c7b61f4bfd
Update with extra commands
2025-09-22 19:35:45 -07:00
lispking
8b09559690
update CodeBuddy to international site
2025-09-23 05:22:35 +08:00
lispking
318b76de50
feat: support codebuddy ai
2025-09-22 14:34:43 +08:00
Den Delimarsky 🌺
9348c45f9e
Update with Roo Code support
2025-09-21 19:56:17 -07:00
Den Delimarsky
974347c758
Update scripts/powershell/update-agent-context.ps1
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-09-21 12:55:46 -07:00
Den Delimarsky 🌺
ceba130e52
Add support for Auggie
2025-09-21 12:48:58 -07:00
Den Delimarsky 🌺
dceb903804
Updates with Kilo Code support
2025-09-21 12:32:16 -07:00
Den Delimarsky
b03bba37ce
Update scripts/powershell/check-prerequisites.ps1
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-09-21 01:48:21 -07:00
Den Delimarsky
0e49e79610
Update scripts/bash/update-agent-context.sh
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-09-21 00:52:35 -07:00
Den Delimarsky 🌺
93e41567d9
Fix script config
2025-09-21 00:51:56 -07:00
Den Delimarsky
da60d35bc1
Update scripts/bash/common.sh
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-09-21 00:46:22 -07:00
Den Delimarsky
84b61bcd20
Update scripts/powershell/update-agent-context.ps1
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-09-21 00:45:49 -07:00
Den Delimarsky
0672bfc6aa
Update scripts/powershell/update-agent-context.ps1
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-09-21 00:45:31 -07:00
Den Delimarsky 🌺
90f06521a2
Update update-agent-context.ps1
2025-09-20 23:38:31 -07:00
Den Delimarsky 🌺
ee9f83929a
Update contribution guidelines.
2025-09-20 21:20:54 -07:00
Den Delimarsky 🌺
3bdb1d9f3f
Root detection logic
2025-09-20 20:14:11 -07:00
Den Delimarsky
4cc15bab98
Update scripts/bash/update-agent-context.sh
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-09-20 19:54:33 -07:00
Den Delimarsky
8d529599f1
Update scripts/powershell/create-new-feature.ps1
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-09-20 19:54:10 -07:00