|
|
|
|
@@ -4,7 +4,14 @@ set -euo pipefail
|
|
|
|
|
# create-release-packages.sh (workflow-local)
|
|
|
|
|
# Build Spec Kit template release archives for each supported AI assistant and script type.
|
|
|
|
|
# Usage: .github/workflows/scripts/create-release-packages.sh <version>
|
|
|
|
|
# Version argument should include leading 'v'.
|
|
|
|
|
# Version argument should include leading 'v'.
|
|
|
|
|
# Optionally set AGENTS and/or SCRIPTS env vars to limit what gets built.
|
|
|
|
|
# AGENTS : space or comma separated subset of: claude gemini copilot (default: all)
|
|
|
|
|
# SCRIPTS : space or comma separated subset of: sh ps (default: both)
|
|
|
|
|
# Examples:
|
|
|
|
|
# AGENTS=claude SCRIPTS=sh $0 v0.2.0
|
|
|
|
|
# AGENTS="copilot,gemini" $0 v0.2.0
|
|
|
|
|
# SCRIPTS=ps $0 v0.2.0
|
|
|
|
|
|
|
|
|
|
if [[ $# -ne 1 ]]; then
|
|
|
|
|
echo "Usage: $0 <version-with-v-prefix>" >&2
|
|
|
|
|
@@ -40,22 +47,36 @@ generate_commands() {
|
|
|
|
|
mkdir -p "$output_dir"
|
|
|
|
|
for template in templates/commands/*.md; do
|
|
|
|
|
[[ -f "$template" ]] || continue
|
|
|
|
|
local name description raw_body variant_line injected body
|
|
|
|
|
local name description script_command body
|
|
|
|
|
name=$(basename "$template" .md)
|
|
|
|
|
description=$(awk '/^description:/ {gsub(/^description: *"?/, ""); gsub(/"$/, ""); print; exit}' "$template" | tr -d '\r')
|
|
|
|
|
raw_body=$(awk '/^---$/{if(++count==2) start=1; next} start' "$template")
|
|
|
|
|
# Find single-line variant comment matching the variant: <!-- VARIANT:sh ... --> or <!-- VARIANT:ps ... -->
|
|
|
|
|
variant_line=$(printf '%s\n' "$raw_body" | awk -v sv="$script_variant" '/<!--[[:space:]]+VARIANT:'sv'/ {match($0, /VARIANT:'"sv"'[[:space:]]+(.*)-->/, m); if (m[1]!="") {print m[1]; exit}}')
|
|
|
|
|
if [[ -z $variant_line ]]; then
|
|
|
|
|
echo "Warning: no variant line found for $script_variant in $template" >&2
|
|
|
|
|
variant_line="(Missing variant command for $script_variant)"
|
|
|
|
|
|
|
|
|
|
# Normalize line endings
|
|
|
|
|
file_content=$(tr -d '\r' < "$template")
|
|
|
|
|
|
|
|
|
|
# Extract description and script command from YAML frontmatter
|
|
|
|
|
description=$(printf '%s\n' "$file_content" | awk '/^description:/ {sub(/^description:[[:space:]]*/, ""); print; exit}')
|
|
|
|
|
script_command=$(printf '%s\n' "$file_content" | awk -v sv="$script_variant" '/^[[:space:]]*'"$script_variant"':[[:space:]]*/ {sub(/^[[:space:]]*'"$script_variant"':[[:space:]]*/, ""); print; exit}')
|
|
|
|
|
|
|
|
|
|
if [[ -z $script_command ]]; then
|
|
|
|
|
echo "Warning: no script command found for $script_variant in $template" >&2
|
|
|
|
|
script_command="(Missing script command for $script_variant)"
|
|
|
|
|
fi
|
|
|
|
|
# Replace the token VARIANT-INJECT with the selected variant line
|
|
|
|
|
injected=$(printf '%s\n' "$raw_body" | sed "s/VARIANT-INJECT/${variant_line//\//\/}/")
|
|
|
|
|
# Remove all single-line variant comments
|
|
|
|
|
injected=$(printf '%s\n' "$injected" | sed '/<!--[[:space:]]*VARIANT:sh/d' | sed '/<!--[[:space:]]*VARIANT:ps/d')
|
|
|
|
|
# Apply arg substitution and path rewrite
|
|
|
|
|
body=$(printf '%s\n' "$injected" | sed "s/{ARGS}/$arg_format/g" | sed "s/__AGENT__/$agent/g" | rewrite_paths)
|
|
|
|
|
|
|
|
|
|
# Replace {SCRIPT} placeholder with the script command
|
|
|
|
|
body=$(printf '%s\n' "$file_content" | sed "s|{SCRIPT}|${script_command}|g")
|
|
|
|
|
|
|
|
|
|
# Remove the scripts: section from frontmatter while preserving YAML structure
|
|
|
|
|
body=$(printf '%s\n' "$body" | awk '
|
|
|
|
|
/^---$/ { print; if (++dash_count == 1) in_frontmatter=1; else in_frontmatter=0; next }
|
|
|
|
|
in_frontmatter && /^scripts:$/ { skip_scripts=1; next }
|
|
|
|
|
in_frontmatter && /^[a-zA-Z].*:/ && skip_scripts { skip_scripts=0 }
|
|
|
|
|
in_frontmatter && skip_scripts && /^[[:space:]]/ { next }
|
|
|
|
|
{ print }
|
|
|
|
|
')
|
|
|
|
|
|
|
|
|
|
# Apply other substitutions
|
|
|
|
|
body=$(printf '%s\n' "$body" | sed "s/{ARGS}/$arg_format/g" | sed "s/__AGENT__/$agent/g" | rewrite_paths)
|
|
|
|
|
|
|
|
|
|
case $ext in
|
|
|
|
|
toml)
|
|
|
|
|
{ echo "description = \"$description\""; echo; echo "prompt = \"\"\""; echo "$body"; echo "\"\"\""; } > "$output_dir/$name.$ext" ;;
|
|
|
|
|
@@ -76,12 +97,13 @@ build_variant() {
|
|
|
|
|
# Inject variant into plan-template.md within .specify/templates if present
|
|
|
|
|
local plan_tpl="$base_dir/.specify/templates/plan-template.md"
|
|
|
|
|
if [[ -f "$plan_tpl" ]]; then
|
|
|
|
|
variant_line=$(awk -v sv="$script" '/<!--[[:space:]]*VARIANT:'"$script"'/ {match($0, /VARIANT:'"$script"'[[:space:]]+(.*)-->/, m); if(m[1]!=""){print m[1]; exit}}' "$plan_tpl")
|
|
|
|
|
plan_norm=$(tr -d '\r' < "$plan_tpl")
|
|
|
|
|
variant_line=$(printf '%s\n' "$plan_norm" | grep -E "<!--[[:space:]]*VARIANT:$script" | head -1 | sed -E "s/.*VARIANT:$script[[:space:]]+//; s/-->.*//; s/^[[:space:]]+//; s/[[:space:]]+$//")
|
|
|
|
|
if [[ -n $variant_line ]]; then
|
|
|
|
|
tmp_file=$(mktemp)
|
|
|
|
|
sed "s/VARIANT-INJECT/${variant_line//\//\/}/" "$plan_tpl" | sed "/__AGENT__/s//${agent}/g" | sed '/<!--[[:space:]]*VARIANT:sh/d' | sed '/<!--[[:space:]]*VARIANT:ps/d' > "$tmp_file" && mv "$tmp_file" "$plan_tpl"
|
|
|
|
|
sed "s|VARIANT-INJECT|${variant_line}|" "$plan_tpl" | tr -d '\r' | sed "s|__AGENT__|${agent}|g" | sed '/<!--[[:space:]]*VARIANT:sh/d' | sed '/<!--[[:space:]]*VARIANT:ps/d' > "$tmp_file" && mv "$tmp_file" "$plan_tpl"
|
|
|
|
|
else
|
|
|
|
|
echo "Warning: no plan-template variant for $script" >&2
|
|
|
|
|
echo "Warning: no plan-template variant for $script (pattern not matched)" >&2
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
case $agent in
|
|
|
|
|
@@ -100,9 +122,48 @@ build_variant() {
|
|
|
|
|
echo "Created spec-kit-template-${agent}-${script}-${NEW_VERSION}.zip"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Build for each agent+script variant
|
|
|
|
|
for agent in claude gemini copilot; do
|
|
|
|
|
for script in sh ps; do
|
|
|
|
|
# Determine agent list
|
|
|
|
|
ALL_AGENTS=(claude gemini copilot)
|
|
|
|
|
ALL_SCRIPTS=(sh ps)
|
|
|
|
|
|
|
|
|
|
norm_list() {
|
|
|
|
|
# convert comma+space separated -> space separated unique while preserving order of first occurrence
|
|
|
|
|
tr ',\n' ' ' | awk '{for(i=1;i<=NF;i++){if(!seen[$i]++){printf((out?" ":"") $i)}}}END{printf("\n")}'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
validate_subset() {
|
|
|
|
|
local type=$1; shift; local -n allowed=$1; shift; local items=($@)
|
|
|
|
|
local ok=1
|
|
|
|
|
for it in "${items[@]}"; do
|
|
|
|
|
local found=0
|
|
|
|
|
for a in "${allowed[@]}"; do [[ $it == $a ]] && { found=1; break; }; done
|
|
|
|
|
if [[ $found -eq 0 ]]; then
|
|
|
|
|
echo "Error: unknown $type '$it' (allowed: ${allowed[*]})" >&2
|
|
|
|
|
ok=0
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
return $ok
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if [[ -n ${AGENTS:-} ]]; then
|
|
|
|
|
AGENT_LIST=($(printf '%s' "$AGENTS" | norm_list))
|
|
|
|
|
validate_subset agent ALL_AGENTS "${AGENT_LIST[@]}" || exit 1
|
|
|
|
|
else
|
|
|
|
|
AGENT_LIST=(${ALL_AGENTS[@]})
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [[ -n ${SCRIPTS:-} ]]; then
|
|
|
|
|
SCRIPT_LIST=($(printf '%s' "$SCRIPTS" | norm_list))
|
|
|
|
|
validate_subset script ALL_SCRIPTS "${SCRIPT_LIST[@]}" || exit 1
|
|
|
|
|
else
|
|
|
|
|
SCRIPT_LIST=(${ALL_SCRIPTS[@]})
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo "Agents: ${AGENT_LIST[*]}"
|
|
|
|
|
echo "Scripts: ${SCRIPT_LIST[*]}"
|
|
|
|
|
|
|
|
|
|
for agent in "${AGENT_LIST[@]}"; do
|
|
|
|
|
for script in "${SCRIPT_LIST[@]}"; do
|
|
|
|
|
build_variant "$agent" "$script"
|
|
|
|
|
done
|
|
|
|
|
done
|
|
|
|
|
|