agentic-loop 3.6.0 → 3.6.2
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/.claude/commands/vibe-help.md +1 -1
- package/.claude/commands/vibe-list.md +1 -1
- package/bin/ralph.sh +1 -1
- package/package.json +4 -4
- package/ralph/init.sh +1 -1
- package/ralph/setup/quick-setup.sh +1 -1
- package/ralph/setup.sh +1 -1
- package/ralph/utils.sh +1 -1
package/bin/ralph.sh
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# ralph.sh - Autonomous AI Development Loop
|
|
4
4
|
#
|
|
5
5
|
# A CLI tool that orchestrates Claude CLI for autonomous development loops.
|
|
6
|
-
# Part of agentic-loop: https://github.com/
|
|
6
|
+
# Part of agentic-loop: https://github.com/allierays/agentic-loop
|
|
7
7
|
|
|
8
8
|
set -euo pipefail
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-loop",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.2",
|
|
4
4
|
"description": "Autonomous AI coding loop - PRD-driven development with Claude Code",
|
|
5
5
|
"author": "Allie Jones <allie@allthrive.ai>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/
|
|
9
|
+
"url": "https://github.com/allierays/agentic-loop"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://github.com/
|
|
11
|
+
"homepage": "https://github.com/allierays/agentic-loop#readme",
|
|
12
12
|
"bugs": {
|
|
13
|
-
"url": "https://github.com/
|
|
13
|
+
"url": "https://github.com/allierays/agentic-loop/issues"
|
|
14
14
|
},
|
|
15
15
|
"keywords": [
|
|
16
16
|
"ai",
|
package/ralph/init.sh
CHANGED
|
@@ -632,6 +632,6 @@ Environment:
|
|
|
632
632
|
RALPH_DIR Override .ralph directory location (default: .ralph)
|
|
633
633
|
PROMPT_FILE Override PROMPT.md location (default: PROMPT.md)
|
|
634
634
|
|
|
635
|
-
For more information, see: https://github.com/
|
|
635
|
+
For more information, see: https://github.com/allierays/agentic-loop
|
|
636
636
|
EOF
|
|
637
637
|
}
|
|
@@ -134,7 +134,7 @@ install_precommit_hooks() {
|
|
|
134
134
|
if [[ ! -f .pre-commit-config.yaml ]]; then
|
|
135
135
|
cat > .pre-commit-config.yaml << 'EOF'
|
|
136
136
|
repos:
|
|
137
|
-
- repo: https://github.com/
|
|
137
|
+
- repo: https://github.com/allierays/agentic-loop
|
|
138
138
|
rev: v1.0.0
|
|
139
139
|
hooks:
|
|
140
140
|
- id: check-secrets
|
package/ralph/setup.sh
CHANGED
|
@@ -636,7 +636,7 @@ setup_precommit_hooks() {
|
|
|
636
636
|
if [[ ! -f ".pre-commit-config.yaml" ]]; then
|
|
637
637
|
cat > .pre-commit-config.yaml << 'EOF'
|
|
638
638
|
repos:
|
|
639
|
-
- repo: https://github.com/
|
|
639
|
+
- repo: https://github.com/allierays/agentic-loop
|
|
640
640
|
rev: v1.0.0
|
|
641
641
|
hooks:
|
|
642
642
|
- id: backup-db
|
package/ralph/utils.sh
CHANGED
|
@@ -12,7 +12,7 @@ readonly MAX_LINT_ERROR_LINES=20
|
|
|
12
12
|
readonly MAX_PROGRESS_FILE_LINES=1000
|
|
13
13
|
|
|
14
14
|
# Constants - Timeouts (centralized to avoid magic numbers)
|
|
15
|
-
readonly ITERATION_DELAY_SECONDS=
|
|
15
|
+
readonly ITERATION_DELAY_SECONDS=0
|
|
16
16
|
readonly DEFAULT_TIMEOUT_SECONDS=600
|
|
17
17
|
readonly DEFAULT_MAX_ITERATIONS=20
|
|
18
18
|
readonly CODE_REVIEW_TIMEOUT_SECONDS=120
|