@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,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/.specify/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","SPECS_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 "SPECS_DIR: $FEATURE_DIR"
|
|
58
|
-
echo "BRANCH: $CURRENT_BRANCH"
|
|
59
|
-
echo "HAS_GIT: $HAS_GIT"
|
|
60
|
-
fi
|
|
61
|
-
|