Skip to content

Commit 5499d15

Browse files
committed
Update prompt prefix
1 parent 8374777 commit 5499d15

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/scripts/create-release-packages.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@ generate_commands() {
9090

9191
case $ext in
9292
toml)
93-
{ echo "description = \"$description\""; echo; echo "prompt = \"\"\""; echo "$body"; echo "\"\"\""; } > "$output_dir/$name.$ext" ;;
93+
{ echo "description = \"$description\""; echo; echo "prompt = \"\"\""; echo "$body"; echo "\"\"\""; } > "$output_dir/speckit.$name.$ext" ;;
9494
md)
95-
echo "$body" > "$output_dir/$name.$ext" ;;
95+
echo "$body" > "$output_dir/speckit.$name.$ext" ;;
9696
prompt.md)
97-
echo "$body" > "$output_dir/$name.$ext" ;;
97+
echo "$body" > "$output_dir/speckit.$name.$ext" ;;
9898
esac
9999
done
100100
}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
- Support for using `.` as a shorthand for current directory in `specify init .` command, equivalent to `--here` flag but more intuitive for users
1515
- Refactor the prompts and templates to simplify their capabilities and how they are tracked. No more polluting things with tests when they are not needed.
1616

17+
### Changed
18+
19+
- All command files now prefixed with `speckit.` (e.g., `speckit.specify.md`, `speckit.plan.md`) for better discoverability and differentiation in IDE/CLI command palettes and file explorers
20+
1721
## [0.0.17] - 2025-09-22
1822

1923
### Added

0 commit comments

Comments
 (0)