@arvorco/relentless 0.1.0 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -13
- package/bin/relentless.ts +1 -1
- package/package.json +3 -2
- package/.claude/commands/relentless.plan.old.md +0 -89
- package/.claude/settings.local.json +0 -23
- package/.claude/skills/analyze/SKILL.md +0 -149
- package/.claude/skills/checklist/SKILL.md +0 -173
- package/.claude/skills/checklist/templates/checklist-template.md +0 -40
- package/.claude/skills/clarify/SKILL.md +0 -174
- package/.claude/skills/constitution/SKILL.md +0 -150
- package/.claude/skills/constitution/templates/constitution-template.md +0 -228
- package/.claude/skills/implement/SKILL.md +0 -141
- package/.claude/skills/plan/SKILL.md +0 -179
- package/.claude/skills/plan/templates/plan-template.md +0 -104
- package/.claude/skills/prd/SKILL.md +0 -242
- package/.claude/skills/relentless/SKILL.md +0 -265
- package/.claude/skills/specify/SKILL.md +0 -220
- package/.claude/skills/specify/scripts/bash/check-prerequisites.sh +0 -166
- package/.claude/skills/specify/scripts/bash/common.sh +0 -156
- package/.claude/skills/specify/scripts/bash/create-new-feature.sh +0 -305
- package/.claude/skills/specify/scripts/bash/setup-plan.sh +0 -61
- package/.claude/skills/specify/scripts/bash/update-agent-context.sh +0 -799
- package/.claude/skills/specify/templates/spec-template.md +0 -115
- package/.claude/skills/tasks/SKILL.md +0 -202
- package/.claude/skills/tasks/templates/tasks-template.md +0 -251
- package/.claude/skills/taskstoissues/SKILL.md +0 -97
- package/.specify/memory/constitution.md +0 -50
- package/.specify/scripts/bash/check-prerequisites.sh +0 -166
- package/.specify/scripts/bash/common.sh +0 -156
- package/.specify/scripts/bash/create-new-feature.sh +0 -297
- package/.specify/scripts/bash/setup-plan.sh +0 -61
- package/.specify/scripts/bash/update-agent-context.sh +0 -799
- package/.specify/templates/agent-file-template.md +0 -28
- package/.specify/templates/checklist-template.md +0 -40
- package/.specify/templates/plan-template.md +0 -104
- package/.specify/templates/spec-template.md +0 -115
- package/.specify/templates/tasks-template.md +0 -251
- package/CHANGES_SUMMARY.md +0 -255
- package/CLAUDE.md +0 -92
- package/GEMINI_SETUP.md +0 -256
- package/REFACTOR_SUMMARY.md +0 -267
- package/bun.lock +0 -352
- package/prompt.md +0 -108
- package/ralph.sh +0 -80
- package/relentless/features/ghsk-ideas/prd.json +0 -229
- package/relentless/features/ghsk-ideas/prd.md +0 -191
- package/relentless/features/ghsk-ideas/progress.txt +0 -408
- package/relentless/prompt.md +0 -79
- package/skills/checklist/SKILL.md +0 -349
- package/skills/clarify/SKILL.md +0 -476
- package/skills/prd/SKILL.md +0 -242
- package/skills/relentless/SKILL.md +0 -268
- package/skills/tasks/SKILL.md +0 -577
|
@@ -1,156 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env bash
|
|
2
|
-
# Common functions and variables for all scripts
|
|
3
|
-
|
|
4
|
-
# Get repository root, with fallback for non-git repositories
|
|
5
|
-
get_repo_root() {
|
|
6
|
-
if git rev-parse --show-toplevel >/dev/null 2>&1; then
|
|
7
|
-
git rev-parse --show-toplevel
|
|
8
|
-
else
|
|
9
|
-
# Fall back to script location for non-git repos
|
|
10
|
-
local script_dir="$(CDPATH="" cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
11
|
-
(cd "$script_dir/../../.." && pwd)
|
|
12
|
-
fi
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
# Get current branch, with fallback for non-git repositories
|
|
16
|
-
get_current_branch() {
|
|
17
|
-
# First check if SPECIFY_FEATURE environment variable is set
|
|
18
|
-
if [[ -n "${SPECIFY_FEATURE:-}" ]]; then
|
|
19
|
-
echo "$SPECIFY_FEATURE"
|
|
20
|
-
return
|
|
21
|
-
fi
|
|
22
|
-
|
|
23
|
-
# Then check git if available
|
|
24
|
-
if git rev-parse --abbrev-ref HEAD >/dev/null 2>&1; then
|
|
25
|
-
git rev-parse --abbrev-ref HEAD
|
|
26
|
-
return
|
|
27
|
-
fi
|
|
28
|
-
|
|
29
|
-
# For non-git repos, try to find the latest feature directory
|
|
30
|
-
local repo_root=$(get_repo_root)
|
|
31
|
-
local specs_dir="$repo_root/specs"
|
|
32
|
-
|
|
33
|
-
if [[ -d "$specs_dir" ]]; then
|
|
34
|
-
local latest_feature=""
|
|
35
|
-
local highest=0
|
|
36
|
-
|
|
37
|
-
for dir in "$specs_dir"/*; do
|
|
38
|
-
if [[ -d "$dir" ]]; then
|
|
39
|
-
local dirname=$(basename "$dir")
|
|
40
|
-
if [[ "$dirname" =~ ^([0-9]{3})- ]]; then
|
|
41
|
-
local number=${BASH_REMATCH[1]}
|
|
42
|
-
number=$((10#$number))
|
|
43
|
-
if [[ "$number" -gt "$highest" ]]; then
|
|
44
|
-
highest=$number
|
|
45
|
-
latest_feature=$dirname
|
|
46
|
-
fi
|
|
47
|
-
fi
|
|
48
|
-
fi
|
|
49
|
-
done
|
|
50
|
-
|
|
51
|
-
if [[ -n "$latest_feature" ]]; then
|
|
52
|
-
echo "$latest_feature"
|
|
53
|
-
return
|
|
54
|
-
fi
|
|
55
|
-
fi
|
|
56
|
-
|
|
57
|
-
echo "main" # Final fallback
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
# Check if we have git available
|
|
61
|
-
has_git() {
|
|
62
|
-
git rev-parse --show-toplevel >/dev/null 2>&1
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
check_feature_branch() {
|
|
66
|
-
local branch="$1"
|
|
67
|
-
local has_git_repo="$2"
|
|
68
|
-
|
|
69
|
-
# For non-git repos, we can't enforce branch naming but still provide output
|
|
70
|
-
if [[ "$has_git_repo" != "true" ]]; then
|
|
71
|
-
echo "[specify] Warning: Git repository not detected; skipped branch validation" >&2
|
|
72
|
-
return 0
|
|
73
|
-
fi
|
|
74
|
-
|
|
75
|
-
if [[ ! "$branch" =~ ^[0-9]{3}- ]]; then
|
|
76
|
-
echo "ERROR: Not on a feature branch. Current branch: $branch" >&2
|
|
77
|
-
echo "Feature branches should be named like: 001-feature-name" >&2
|
|
78
|
-
return 1
|
|
79
|
-
fi
|
|
80
|
-
|
|
81
|
-
return 0
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
get_feature_dir() { echo "$1/relentless/features/$2"; }
|
|
85
|
-
|
|
86
|
-
# Find feature directory by numeric prefix instead of exact branch match
|
|
87
|
-
# This allows multiple branches to work on the same spec (e.g., 004-fix-bug, 004-add-feature)
|
|
88
|
-
find_feature_dir_by_prefix() {
|
|
89
|
-
local repo_root="$1"
|
|
90
|
-
local branch_name="$2"
|
|
91
|
-
local specs_dir="$repo_root/specs"
|
|
92
|
-
|
|
93
|
-
# Extract numeric prefix from branch (e.g., "004" from "004-whatever")
|
|
94
|
-
if [[ ! "$branch_name" =~ ^([0-9]{3})- ]]; then
|
|
95
|
-
# If branch doesn't have numeric prefix, fall back to exact match
|
|
96
|
-
echo "$specs_dir/$branch_name"
|
|
97
|
-
return
|
|
98
|
-
fi
|
|
99
|
-
|
|
100
|
-
local prefix="${BASH_REMATCH[1]}"
|
|
101
|
-
|
|
102
|
-
# Search for directories in specs/ that start with this prefix
|
|
103
|
-
local matches=()
|
|
104
|
-
if [[ -d "$specs_dir" ]]; then
|
|
105
|
-
for dir in "$specs_dir"/"$prefix"-*; do
|
|
106
|
-
if [[ -d "$dir" ]]; then
|
|
107
|
-
matches+=("$(basename "$dir")")
|
|
108
|
-
fi
|
|
109
|
-
done
|
|
110
|
-
fi
|
|
111
|
-
|
|
112
|
-
# Handle results
|
|
113
|
-
if [[ ${#matches[@]} -eq 0 ]]; then
|
|
114
|
-
# No match found - return the branch name path (will fail later with clear error)
|
|
115
|
-
echo "$specs_dir/$branch_name"
|
|
116
|
-
elif [[ ${#matches[@]} -eq 1 ]]; then
|
|
117
|
-
# Exactly one match - perfect!
|
|
118
|
-
echo "$specs_dir/${matches[0]}"
|
|
119
|
-
else
|
|
120
|
-
# Multiple matches - this shouldn't happen with proper naming convention
|
|
121
|
-
echo "ERROR: Multiple spec directories found with prefix '$prefix': ${matches[*]}" >&2
|
|
122
|
-
echo "Please ensure only one spec directory exists per numeric prefix." >&2
|
|
123
|
-
echo "$specs_dir/$branch_name" # Return something to avoid breaking the script
|
|
124
|
-
fi
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
get_feature_paths() {
|
|
128
|
-
local repo_root=$(get_repo_root)
|
|
129
|
-
local current_branch=$(get_current_branch)
|
|
130
|
-
local has_git_repo="false"
|
|
131
|
-
|
|
132
|
-
if has_git; then
|
|
133
|
-
has_git_repo="true"
|
|
134
|
-
fi
|
|
135
|
-
|
|
136
|
-
# Use prefix-based lookup to support multiple branches per spec
|
|
137
|
-
local feature_dir=$(find_feature_dir_by_prefix "$repo_root" "$current_branch")
|
|
138
|
-
|
|
139
|
-
cat <<EOF
|
|
140
|
-
REPO_ROOT='$repo_root'
|
|
141
|
-
CURRENT_BRANCH='$current_branch'
|
|
142
|
-
HAS_GIT='$has_git_repo'
|
|
143
|
-
FEATURE_DIR='$feature_dir'
|
|
144
|
-
FEATURE_SPEC='$feature_dir/spec.md'
|
|
145
|
-
IMPL_PLAN='$feature_dir/plan.md'
|
|
146
|
-
TASKS='$feature_dir/tasks.md'
|
|
147
|
-
RESEARCH='$feature_dir/research.md'
|
|
148
|
-
DATA_MODEL='$feature_dir/data-model.md'
|
|
149
|
-
QUICKSTART='$feature_dir/quickstart.md'
|
|
150
|
-
CONTRACTS_DIR='$feature_dir/contracts'
|
|
151
|
-
EOF
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
check_file() { [[ -f "$1" ]] && echo " ✓ $2" || echo " ✗ $2"; }
|
|
155
|
-
check_dir() { [[ -d "$1" && -n $(ls -A "$1" 2>/dev/null) ]] && echo " ✓ $2" || echo " ✗ $2"; }
|
|
156
|
-
|
|
@@ -1,305 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env bash
|
|
2
|
-
|
|
3
|
-
set -e
|
|
4
|
-
|
|
5
|
-
JSON_MODE=false
|
|
6
|
-
SHORT_NAME=""
|
|
7
|
-
BRANCH_NUMBER=""
|
|
8
|
-
ARGS=()
|
|
9
|
-
i=1
|
|
10
|
-
while [ $i -le $# ]; do
|
|
11
|
-
arg="${!i}"
|
|
12
|
-
case "$arg" in
|
|
13
|
-
--json)
|
|
14
|
-
JSON_MODE=true
|
|
15
|
-
;;
|
|
16
|
-
--short-name)
|
|
17
|
-
if [ $((i + 1)) -gt $# ]; then
|
|
18
|
-
echo 'Error: --short-name requires a value' >&2
|
|
19
|
-
exit 1
|
|
20
|
-
fi
|
|
21
|
-
i=$((i + 1))
|
|
22
|
-
next_arg="${!i}"
|
|
23
|
-
# Check if the next argument is another option (starts with --)
|
|
24
|
-
if [[ "$next_arg" == --* ]]; then
|
|
25
|
-
echo 'Error: --short-name requires a value' >&2
|
|
26
|
-
exit 1
|
|
27
|
-
fi
|
|
28
|
-
SHORT_NAME="$next_arg"
|
|
29
|
-
;;
|
|
30
|
-
--number)
|
|
31
|
-
if [ $((i + 1)) -gt $# ]; then
|
|
32
|
-
echo 'Error: --number requires a value' >&2
|
|
33
|
-
exit 1
|
|
34
|
-
fi
|
|
35
|
-
i=$((i + 1))
|
|
36
|
-
next_arg="${!i}"
|
|
37
|
-
if [[ "$next_arg" == --* ]]; then
|
|
38
|
-
echo 'Error: --number requires a value' >&2
|
|
39
|
-
exit 1
|
|
40
|
-
fi
|
|
41
|
-
BRANCH_NUMBER="$next_arg"
|
|
42
|
-
;;
|
|
43
|
-
--help|-h)
|
|
44
|
-
echo "Usage: $0 [--json] [--short-name <name>] [--number N] <feature_description>"
|
|
45
|
-
echo ""
|
|
46
|
-
echo "Options:"
|
|
47
|
-
echo " --json Output in JSON format"
|
|
48
|
-
echo " --short-name <name> Provide a custom short name (2-4 words) for the branch"
|
|
49
|
-
echo " --number N Specify branch number manually (overrides auto-detection)"
|
|
50
|
-
echo " --help, -h Show this help message"
|
|
51
|
-
echo ""
|
|
52
|
-
echo "Examples:"
|
|
53
|
-
echo " $0 'Add user authentication system' --short-name 'user-auth'"
|
|
54
|
-
echo " $0 'Implement OAuth2 integration for API' --number 5"
|
|
55
|
-
exit 0
|
|
56
|
-
;;
|
|
57
|
-
*)
|
|
58
|
-
ARGS+=("$arg")
|
|
59
|
-
;;
|
|
60
|
-
esac
|
|
61
|
-
i=$((i + 1))
|
|
62
|
-
done
|
|
63
|
-
|
|
64
|
-
FEATURE_DESCRIPTION="${ARGS[*]}"
|
|
65
|
-
if [ -z "$FEATURE_DESCRIPTION" ]; then
|
|
66
|
-
echo "Usage: $0 [--json] [--short-name <name>] [--number N] <feature_description>" >&2
|
|
67
|
-
exit 1
|
|
68
|
-
fi
|
|
69
|
-
|
|
70
|
-
# Function to find the repository root by searching for existing project markers
|
|
71
|
-
find_repo_root() {
|
|
72
|
-
local dir="$1"
|
|
73
|
-
while [ "$dir" != "/" ]; do
|
|
74
|
-
if [ -d "$dir/.git" ] || [ -d "$dir/relentless" ]; then
|
|
75
|
-
echo "$dir"
|
|
76
|
-
return 0
|
|
77
|
-
fi
|
|
78
|
-
dir="$(dirname "$dir")"
|
|
79
|
-
done
|
|
80
|
-
return 1
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
# Function to get highest number from relentless/features directory
|
|
84
|
-
get_highest_from_features() {
|
|
85
|
-
local features_dir="$1"
|
|
86
|
-
local highest=0
|
|
87
|
-
|
|
88
|
-
if [ -d "$features_dir" ]; then
|
|
89
|
-
for dir in "$features_dir"/*; do
|
|
90
|
-
[ -d "$dir" ] || continue
|
|
91
|
-
dirname=$(basename "$dir")
|
|
92
|
-
number=$(echo "$dirname" | grep -o '^[0-9]\+' || echo "0")
|
|
93
|
-
number=$((10#$number))
|
|
94
|
-
if [ "$number" -gt "$highest" ]; then
|
|
95
|
-
highest=$number
|
|
96
|
-
fi
|
|
97
|
-
done
|
|
98
|
-
fi
|
|
99
|
-
|
|
100
|
-
echo "$highest"
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
# Function to get highest number from git branches
|
|
104
|
-
get_highest_from_branches() {
|
|
105
|
-
local highest=0
|
|
106
|
-
|
|
107
|
-
# Get all branches (local and remote)
|
|
108
|
-
branches=$(git branch -a 2>/dev/null || echo "")
|
|
109
|
-
|
|
110
|
-
if [ -n "$branches" ]; then
|
|
111
|
-
while IFS= read -r branch; do
|
|
112
|
-
# Clean branch name: remove leading markers and remote prefixes
|
|
113
|
-
clean_branch=$(echo "$branch" | sed 's/^[* ]*//; s|^remotes/[^/]*/||')
|
|
114
|
-
|
|
115
|
-
# Extract feature number if branch matches pattern ###-*
|
|
116
|
-
if echo "$clean_branch" | grep -q '^[0-9]\{3\}-'; then
|
|
117
|
-
number=$(echo "$clean_branch" | grep -o '^[0-9]\{3\}' || echo "0")
|
|
118
|
-
number=$((10#$number))
|
|
119
|
-
if [ "$number" -gt "$highest" ]; then
|
|
120
|
-
highest=$number
|
|
121
|
-
fi
|
|
122
|
-
fi
|
|
123
|
-
done <<< "$branches"
|
|
124
|
-
fi
|
|
125
|
-
|
|
126
|
-
echo "$highest"
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
# Function to check existing branches (local and remote) and return next available number
|
|
130
|
-
check_existing_branches() {
|
|
131
|
-
local features_dir="$1"
|
|
132
|
-
|
|
133
|
-
# Fetch all remotes to get latest branch info (suppress errors if no remotes)
|
|
134
|
-
git fetch --all --prune 2>/dev/null || true
|
|
135
|
-
|
|
136
|
-
# Get highest number from ALL branches (not just matching short name)
|
|
137
|
-
local highest_branch=$(get_highest_from_branches)
|
|
138
|
-
|
|
139
|
-
# Get highest number from ALL features (not just matching short name)
|
|
140
|
-
local highest_feature=$(get_highest_from_features "$features_dir")
|
|
141
|
-
|
|
142
|
-
# Take the maximum of both
|
|
143
|
-
local max_num=$highest_branch
|
|
144
|
-
if [ "$highest_feature" -gt "$max_num" ]; then
|
|
145
|
-
max_num=$highest_feature
|
|
146
|
-
fi
|
|
147
|
-
|
|
148
|
-
# Return next number
|
|
149
|
-
echo $((max_num + 1))
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
# Function to clean and format a branch name
|
|
153
|
-
clean_branch_name() {
|
|
154
|
-
local name="$1"
|
|
155
|
-
echo "$name" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9]/-/g' | sed 's/-\+/-/g' | sed 's/^-//' | sed 's/-$//'
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
# Resolve repository root. Prefer git information when available, but fall back
|
|
159
|
-
# to searching for repository markers so the workflow still functions in repositories that
|
|
160
|
-
# were initialised with --no-git.
|
|
161
|
-
SCRIPT_DIR="$(CDPATH="" cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
162
|
-
|
|
163
|
-
if git rev-parse --show-toplevel >/dev/null 2>&1; then
|
|
164
|
-
REPO_ROOT=$(git rev-parse --show-toplevel)
|
|
165
|
-
HAS_GIT=true
|
|
166
|
-
else
|
|
167
|
-
REPO_ROOT="$(find_repo_root "$SCRIPT_DIR")"
|
|
168
|
-
if [ -z "$REPO_ROOT" ]; then
|
|
169
|
-
echo "Error: Could not determine repository root. Please run this script from within the repository." >&2
|
|
170
|
-
exit 1
|
|
171
|
-
fi
|
|
172
|
-
HAS_GIT=false
|
|
173
|
-
fi
|
|
174
|
-
|
|
175
|
-
cd "$REPO_ROOT"
|
|
176
|
-
|
|
177
|
-
FEATURES_DIR="$REPO_ROOT/relentless/features"
|
|
178
|
-
mkdir -p "$FEATURES_DIR"
|
|
179
|
-
|
|
180
|
-
# Function to generate branch name with stop word filtering and length filtering
|
|
181
|
-
generate_branch_name() {
|
|
182
|
-
local description="$1"
|
|
183
|
-
|
|
184
|
-
# Common stop words to filter out
|
|
185
|
-
local stop_words="^(i|a|an|the|to|for|of|in|on|at|by|with|from|is|are|was|were|be|been|being|have|has|had|do|does|did|will|would|should|could|can|may|might|must|shall|this|that|these|those|my|your|our|their|want|need|add|get|set)$"
|
|
186
|
-
|
|
187
|
-
# Convert to lowercase and split into words
|
|
188
|
-
local clean_name=$(echo "$description" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9]/ /g')
|
|
189
|
-
|
|
190
|
-
# Filter words: remove stop words and words shorter than 3 chars (unless they're uppercase acronyms in original)
|
|
191
|
-
local meaningful_words=()
|
|
192
|
-
for word in $clean_name; do
|
|
193
|
-
# Skip empty words
|
|
194
|
-
[ -z "$word" ] && continue
|
|
195
|
-
|
|
196
|
-
# Keep words that are NOT stop words AND (length >= 3 OR are potential acronyms)
|
|
197
|
-
if ! echo "$word" | grep -qiE "$stop_words"; then
|
|
198
|
-
if [ ${#word} -ge 3 ]; then
|
|
199
|
-
meaningful_words+=("$word")
|
|
200
|
-
elif echo "$description" | grep -q "\b${word^^}\b"; then
|
|
201
|
-
# Keep short words if they appear as uppercase in original (likely acronyms)
|
|
202
|
-
meaningful_words+=("$word")
|
|
203
|
-
fi
|
|
204
|
-
fi
|
|
205
|
-
done
|
|
206
|
-
|
|
207
|
-
# If we have meaningful words, use first 3-4 of them
|
|
208
|
-
if [ ${#meaningful_words[@]} -gt 0 ]; then
|
|
209
|
-
local max_words=3
|
|
210
|
-
if [ ${#meaningful_words[@]} -eq 4 ]; then max_words=4; fi
|
|
211
|
-
|
|
212
|
-
local result=""
|
|
213
|
-
local count=0
|
|
214
|
-
for word in "${meaningful_words[@]}"; do
|
|
215
|
-
if [ $count -ge $max_words ]; then break; fi
|
|
216
|
-
if [ -n "$result" ]; then result="$result-"; fi
|
|
217
|
-
result="$result$word"
|
|
218
|
-
count=$((count + 1))
|
|
219
|
-
done
|
|
220
|
-
echo "$result"
|
|
221
|
-
else
|
|
222
|
-
# Fallback to original logic if no meaningful words found
|
|
223
|
-
local cleaned=$(clean_branch_name "$description")
|
|
224
|
-
echo "$cleaned" | tr '-' '\n' | grep -v '^$' | head -3 | tr '\n' '-' | sed 's/-$//'
|
|
225
|
-
fi
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
# Generate branch name
|
|
229
|
-
if [ -n "$SHORT_NAME" ]; then
|
|
230
|
-
# Use provided short name, just clean it up
|
|
231
|
-
BRANCH_SUFFIX=$(clean_branch_name "$SHORT_NAME")
|
|
232
|
-
else
|
|
233
|
-
# Generate from description with smart filtering
|
|
234
|
-
BRANCH_SUFFIX=$(generate_branch_name "$FEATURE_DESCRIPTION")
|
|
235
|
-
fi
|
|
236
|
-
|
|
237
|
-
# Determine branch number
|
|
238
|
-
if [ -z "$BRANCH_NUMBER" ]; then
|
|
239
|
-
if [ "$HAS_GIT" = true ]; then
|
|
240
|
-
# Check existing branches on remotes
|
|
241
|
-
BRANCH_NUMBER=$(check_existing_branches "$FEATURES_DIR")
|
|
242
|
-
else
|
|
243
|
-
# Fall back to local directory check
|
|
244
|
-
HIGHEST=$(get_highest_from_features "$FEATURES_DIR")
|
|
245
|
-
BRANCH_NUMBER=$((HIGHEST + 1))
|
|
246
|
-
fi
|
|
247
|
-
fi
|
|
248
|
-
|
|
249
|
-
# Force base-10 interpretation to prevent octal conversion (e.g., 010 → 8 in octal, but should be 10 in decimal)
|
|
250
|
-
FEATURE_NUM=$(printf "%03d" "$((10#$BRANCH_NUMBER))")
|
|
251
|
-
BRANCH_NAME="${FEATURE_NUM}-${BRANCH_SUFFIX}"
|
|
252
|
-
|
|
253
|
-
# GitHub enforces a 244-byte limit on branch names
|
|
254
|
-
# Validate and truncate if necessary
|
|
255
|
-
MAX_BRANCH_LENGTH=244
|
|
256
|
-
if [ ${#BRANCH_NAME} -gt $MAX_BRANCH_LENGTH ]; then
|
|
257
|
-
# Calculate how much we need to trim from suffix
|
|
258
|
-
# Account for: feature number (3) + hyphen (1) = 4 chars
|
|
259
|
-
MAX_SUFFIX_LENGTH=$((MAX_BRANCH_LENGTH - 4))
|
|
260
|
-
|
|
261
|
-
# Truncate suffix at word boundary if possible
|
|
262
|
-
TRUNCATED_SUFFIX=$(echo "$BRANCH_SUFFIX" | cut -c1-$MAX_SUFFIX_LENGTH)
|
|
263
|
-
# Remove trailing hyphen if truncation created one
|
|
264
|
-
TRUNCATED_SUFFIX=$(echo "$TRUNCATED_SUFFIX" | sed 's/-$//')
|
|
265
|
-
|
|
266
|
-
ORIGINAL_BRANCH_NAME="$BRANCH_NAME"
|
|
267
|
-
BRANCH_NAME="${FEATURE_NUM}-${TRUNCATED_SUFFIX}"
|
|
268
|
-
|
|
269
|
-
>&2 echo "[specify] Warning: Branch name exceeded GitHub's 244-byte limit"
|
|
270
|
-
>&2 echo "[specify] Original: $ORIGINAL_BRANCH_NAME (${#ORIGINAL_BRANCH_NAME} bytes)"
|
|
271
|
-
>&2 echo "[specify] Truncated to: $BRANCH_NAME (${#BRANCH_NAME} bytes)"
|
|
272
|
-
fi
|
|
273
|
-
|
|
274
|
-
if [ "$HAS_GIT" = true ]; then
|
|
275
|
-
git checkout -b "$BRANCH_NAME"
|
|
276
|
-
else
|
|
277
|
-
>&2 echo "[specify] Warning: Git repository not detected; skipped branch creation for $BRANCH_NAME"
|
|
278
|
-
fi
|
|
279
|
-
|
|
280
|
-
FEATURE_DIR="$FEATURES_DIR/$BRANCH_NAME"
|
|
281
|
-
mkdir -p "$FEATURE_DIR"
|
|
282
|
-
|
|
283
|
-
# Find spec template in skills directory
|
|
284
|
-
SKILLS_DIR="$REPO_ROOT/.claude/skills/specify"
|
|
285
|
-
TEMPLATE="$SKILLS_DIR/templates/spec-template.md"
|
|
286
|
-
if [ ! -f "$TEMPLATE" ]; then
|
|
287
|
-
# Fallback to old location for compatibility
|
|
288
|
-
TEMPLATE="$REPO_ROOT/.claude/skills/templates/spec-template.md"
|
|
289
|
-
fi
|
|
290
|
-
|
|
291
|
-
SPEC_FILE="$FEATURE_DIR/spec.md"
|
|
292
|
-
if [ -f "$TEMPLATE" ]; then cp "$TEMPLATE" "$SPEC_FILE"; else touch "$SPEC_FILE"; fi
|
|
293
|
-
|
|
294
|
-
# Set the SPECIFY_FEATURE environment variable for the current session
|
|
295
|
-
export SPECIFY_FEATURE="$BRANCH_NAME"
|
|
296
|
-
|
|
297
|
-
if $JSON_MODE; then
|
|
298
|
-
printf '{"BRANCH_NAME":"%s","SPEC_FILE":"%s","FEATURE_NUM":"%s","FEATURE_DIR":"%s"}\n' "$BRANCH_NAME" "$SPEC_FILE" "$FEATURE_NUM" "$FEATURE_DIR"
|
|
299
|
-
else
|
|
300
|
-
echo "BRANCH_NAME: $BRANCH_NAME"
|
|
301
|
-
echo "SPEC_FILE: $SPEC_FILE"
|
|
302
|
-
echo "FEATURE_NUM: $FEATURE_NUM"
|
|
303
|
-
echo "FEATURE_DIR: $FEATURE_DIR"
|
|
304
|
-
echo "SPECIFY_FEATURE environment variable set to: $BRANCH_NAME"
|
|
305
|
-
fi
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env bash
|
|
2
|
-
|
|
3
|
-
set -e
|
|
4
|
-
|
|
5
|
-
# Parse command line arguments
|
|
6
|
-
JSON_MODE=false
|
|
7
|
-
ARGS=()
|
|
8
|
-
|
|
9
|
-
for arg in "$@"; do
|
|
10
|
-
case "$arg" in
|
|
11
|
-
--json)
|
|
12
|
-
JSON_MODE=true
|
|
13
|
-
;;
|
|
14
|
-
--help|-h)
|
|
15
|
-
echo "Usage: $0 [--json]"
|
|
16
|
-
echo " --json Output results in JSON format"
|
|
17
|
-
echo " --help Show this help message"
|
|
18
|
-
exit 0
|
|
19
|
-
;;
|
|
20
|
-
*)
|
|
21
|
-
ARGS+=("$arg")
|
|
22
|
-
;;
|
|
23
|
-
esac
|
|
24
|
-
done
|
|
25
|
-
|
|
26
|
-
# Get script directory and load common functions
|
|
27
|
-
SCRIPT_DIR="$(CDPATH="" cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
28
|
-
source "$SCRIPT_DIR/common.sh"
|
|
29
|
-
|
|
30
|
-
# Get all paths and variables from common functions
|
|
31
|
-
eval $(get_feature_paths)
|
|
32
|
-
|
|
33
|
-
# Check if we're on a proper feature branch (only for git repos)
|
|
34
|
-
check_feature_branch "$CURRENT_BRANCH" "$HAS_GIT" || exit 1
|
|
35
|
-
|
|
36
|
-
# Ensure the feature directory exists
|
|
37
|
-
mkdir -p "$FEATURE_DIR"
|
|
38
|
-
|
|
39
|
-
# Copy plan template if it exists
|
|
40
|
-
TEMPLATE="$REPO_ROOT/.claude/skills/templates/plan-template.md"
|
|
41
|
-
if [[ -f "$TEMPLATE" ]]; then
|
|
42
|
-
cp "$TEMPLATE" "$IMPL_PLAN"
|
|
43
|
-
echo "Copied plan template to $IMPL_PLAN"
|
|
44
|
-
else
|
|
45
|
-
echo "Warning: Plan template not found at $TEMPLATE"
|
|
46
|
-
# Create a basic plan file if template doesn't exist
|
|
47
|
-
touch "$IMPL_PLAN"
|
|
48
|
-
fi
|
|
49
|
-
|
|
50
|
-
# Output results
|
|
51
|
-
if $JSON_MODE; then
|
|
52
|
-
printf '{"FEATURE_SPEC":"%s","IMPL_PLAN":"%s","FEATURES_DIR":"%s","BRANCH":"%s","HAS_GIT":"%s"}\n' \
|
|
53
|
-
"$FEATURE_SPEC" "$IMPL_PLAN" "$FEATURE_DIR" "$CURRENT_BRANCH" "$HAS_GIT"
|
|
54
|
-
else
|
|
55
|
-
echo "FEATURE_SPEC: $FEATURE_SPEC"
|
|
56
|
-
echo "IMPL_PLAN: $IMPL_PLAN"
|
|
57
|
-
echo "FEATURES_DIR: $FEATURE_DIR"
|
|
58
|
-
echo "BRANCH: $CURRENT_BRANCH"
|
|
59
|
-
echo "HAS_GIT: $HAS_GIT"
|
|
60
|
-
fi
|
|
61
|
-
|