diff --git a/.github/workflows/scripts/create-release-packages.sh b/.github/workflows/scripts/create-release-packages.sh index bd32a37e..2e98fb32 100644 --- a/.github/workflows/scripts/create-release-packages.sh +++ b/.github/workflows/scripts/create-release-packages.sh @@ -90,11 +90,11 @@ generate_commands() { case $ext in toml) - { echo "description = \"$description\""; echo; echo "prompt = \"\"\""; echo "$body"; echo "\"\"\""; } > "$output_dir/$name.$ext" ;; + { echo "description = \"$description\""; echo; echo "prompt = \"\"\""; echo "$body"; echo "\"\"\""; } > "$output_dir/speckit.$name.$ext" ;; md) - echo "$body" > "$output_dir/$name.$ext" ;; + echo "$body" > "$output_dir/speckit.$name.$ext" ;; prompt.md) - echo "$body" > "$output_dir/$name.$ext" ;; + echo "$body" > "$output_dir/speckit.$name.$ext" ;; esac done } diff --git a/CHANGELOG.md b/CHANGELOG.md index 64763442..bb58132d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support for using `.` as a shorthand for current directory in `specify init .` command, equivalent to `--here` flag but more intuitive for users - 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. +### Changed + +- 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 + ## [0.0.17] - 2025-09-22 ### Added