@arvorco/relentless 0.1.0 → 0.1.5

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.
Files changed (53) hide show
  1. package/README.md +30 -13
  2. package/bin/relentless.ts +1 -1
  3. package/package.json +3 -2
  4. package/.claude/commands/relentless.plan.old.md +0 -89
  5. package/.claude/settings.local.json +0 -23
  6. package/.claude/skills/analyze/SKILL.md +0 -149
  7. package/.claude/skills/checklist/SKILL.md +0 -173
  8. package/.claude/skills/checklist/templates/checklist-template.md +0 -40
  9. package/.claude/skills/clarify/SKILL.md +0 -174
  10. package/.claude/skills/constitution/SKILL.md +0 -150
  11. package/.claude/skills/constitution/templates/constitution-template.md +0 -228
  12. package/.claude/skills/implement/SKILL.md +0 -141
  13. package/.claude/skills/plan/SKILL.md +0 -179
  14. package/.claude/skills/plan/templates/plan-template.md +0 -104
  15. package/.claude/skills/prd/SKILL.md +0 -242
  16. package/.claude/skills/relentless/SKILL.md +0 -265
  17. package/.claude/skills/specify/SKILL.md +0 -220
  18. package/.claude/skills/specify/scripts/bash/check-prerequisites.sh +0 -166
  19. package/.claude/skills/specify/scripts/bash/common.sh +0 -156
  20. package/.claude/skills/specify/scripts/bash/create-new-feature.sh +0 -305
  21. package/.claude/skills/specify/scripts/bash/setup-plan.sh +0 -61
  22. package/.claude/skills/specify/scripts/bash/update-agent-context.sh +0 -799
  23. package/.claude/skills/specify/templates/spec-template.md +0 -115
  24. package/.claude/skills/tasks/SKILL.md +0 -202
  25. package/.claude/skills/tasks/templates/tasks-template.md +0 -251
  26. package/.claude/skills/taskstoissues/SKILL.md +0 -97
  27. package/.specify/memory/constitution.md +0 -50
  28. package/.specify/scripts/bash/check-prerequisites.sh +0 -166
  29. package/.specify/scripts/bash/common.sh +0 -156
  30. package/.specify/scripts/bash/create-new-feature.sh +0 -297
  31. package/.specify/scripts/bash/setup-plan.sh +0 -61
  32. package/.specify/scripts/bash/update-agent-context.sh +0 -799
  33. package/.specify/templates/agent-file-template.md +0 -28
  34. package/.specify/templates/checklist-template.md +0 -40
  35. package/.specify/templates/plan-template.md +0 -104
  36. package/.specify/templates/spec-template.md +0 -115
  37. package/.specify/templates/tasks-template.md +0 -251
  38. package/CHANGES_SUMMARY.md +0 -255
  39. package/CLAUDE.md +0 -92
  40. package/GEMINI_SETUP.md +0 -256
  41. package/REFACTOR_SUMMARY.md +0 -267
  42. package/bun.lock +0 -352
  43. package/prompt.md +0 -108
  44. package/ralph.sh +0 -80
  45. package/relentless/features/ghsk-ideas/prd.json +0 -229
  46. package/relentless/features/ghsk-ideas/prd.md +0 -191
  47. package/relentless/features/ghsk-ideas/progress.txt +0 -408
  48. package/relentless/prompt.md +0 -79
  49. package/skills/checklist/SKILL.md +0 -349
  50. package/skills/clarify/SKILL.md +0 -476
  51. package/skills/prd/SKILL.md +0 -242
  52. package/skills/relentless/SKILL.md +0 -268
  53. 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
-