agentic-loop 3.10.0 → 3.10.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/tour.md
CHANGED
|
@@ -25,13 +25,13 @@ Print this exactly:
|
|
|
25
25
|
- If missing: Say "⚠️ jq not found. Install it: `brew install jq` (macOS) or `apt install jq` (Linux)"
|
|
26
26
|
- If found: ✓ jq installed
|
|
27
27
|
|
|
28
|
-
2. **Check slash commands:**
|
|
28
|
+
2. **Check slash commands (skills):**
|
|
29
29
|
```bash
|
|
30
|
-
test -d .claude/
|
|
30
|
+
test -d .claude/skills && ls -d .claude/skills/*/ 2>/dev/null | wc -l
|
|
31
31
|
```
|
|
32
32
|
- If missing or count is 0: Copy from node_modules:
|
|
33
33
|
```bash
|
|
34
|
-
mkdir -p .claude/
|
|
34
|
+
mkdir -p .claude/skills && cp -r node_modules/agentic-loop/.claude/skills/* .claude/skills/
|
|
35
35
|
```
|
|
36
36
|
- Then: ✓ Slash commands installed
|
|
37
37
|
|
|
@@ -25,13 +25,13 @@ Print this exactly:
|
|
|
25
25
|
- If missing: Say "⚠️ jq not found. Install it: `brew install jq` (macOS) or `apt install jq` (Linux)"
|
|
26
26
|
- If found: ✓ jq installed
|
|
27
27
|
|
|
28
|
-
2. **Check slash commands:**
|
|
28
|
+
2. **Check slash commands (skills):**
|
|
29
29
|
```bash
|
|
30
|
-
test -d .claude/
|
|
30
|
+
test -d .claude/skills && ls -d .claude/skills/*/ 2>/dev/null | wc -l
|
|
31
31
|
```
|
|
32
32
|
- If missing or count is 0: Copy from node_modules:
|
|
33
33
|
```bash
|
|
34
|
-
mkdir -p .claude/
|
|
34
|
+
mkdir -p .claude/skills && cp -r node_modules/agentic-loop/.claude/skills/* .claude/skills/
|
|
35
35
|
```
|
|
36
36
|
- Then: ✓ Slash commands installed
|
|
37
37
|
|
package/package.json
CHANGED
|
@@ -116,15 +116,20 @@ detect_project_type() {
|
|
|
116
116
|
install_claude_skills() {
|
|
117
117
|
echo -e " ${CYAN}Installing Claude skills...${NC}"
|
|
118
118
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
119
|
+
# New skills format (.claude/skills/<name>/SKILL.md)
|
|
120
|
+
if [[ -d "$VIBE_ROOT/.claude/skills" ]]; then
|
|
121
|
+
mkdir -p .claude/skills
|
|
122
|
+
cp -r "$VIBE_ROOT/.claude/skills/"* .claude/skills/ 2>/dev/null || true
|
|
123
|
+
local count=$(ls -d .claude/skills/*/ 2>/dev/null | wc -l | tr -d ' ')
|
|
124
|
+
echo -e " ${GREEN}${EMOJI_CHECK}${NC} $count slash commands installed"
|
|
125
|
+
# Fallback to legacy commands format
|
|
126
|
+
elif [[ -d "$VIBE_ROOT/.claude/commands" ]]; then
|
|
127
|
+
mkdir -p .claude/commands
|
|
123
128
|
cp -r "$VIBE_ROOT/.claude/commands/"* .claude/commands/ 2>/dev/null || true
|
|
124
129
|
local count=$(ls -1 .claude/commands/*.md 2>/dev/null | wc -l | tr -d ' ')
|
|
125
130
|
echo -e " ${GREEN}${EMOJI_CHECK}${NC} $count slash commands installed"
|
|
126
131
|
else
|
|
127
|
-
echo -e " ${YELLOW}${EMOJI_WARN}${NC} No
|
|
132
|
+
echo -e " ${YELLOW}${EMOJI_WARN}${NC} No skill templates found"
|
|
128
133
|
fi
|
|
129
134
|
}
|
|
130
135
|
|
package/ralph/setup/tutorial.sh
CHANGED
|
@@ -81,7 +81,7 @@ lesson_slash_commands() {
|
|
|
81
81
|
echo -e " ${CYAN}/compact${NC} Summarize context to save tokens"
|
|
82
82
|
echo -e " ${CYAN}/cost${NC} Show token usage and cost"
|
|
83
83
|
echo ""
|
|
84
|
-
echo -e " ${BOLD}Custom commands${NC} (from ${DIM}.claude/
|
|
84
|
+
echo -e " ${BOLD}Custom commands${NC} (from ${DIM}.claude/skills/${NC}):"
|
|
85
85
|
echo ""
|
|
86
86
|
echo -e " ${CYAN}/idea${NC} Brainstorm → PRD → Ready for Ralph"
|
|
87
87
|
echo -e " ${CYAN}/vibe-check${NC} Code quality audit"
|
package/templates/PROMPT.md
CHANGED
|
@@ -53,7 +53,7 @@ Work on your story following these rules:
|
|
|
53
53
|
- **story.errorHandling** - How to handle failures
|
|
54
54
|
- **story.apiContract** - Expected request/response format (if applicable)
|
|
55
55
|
- **story.notes** - Human guidance and preferences
|
|
56
|
-
- **story.skills** - Read `.claude/
|
|
56
|
+
- **story.skills** - Read `.claude/skills/{skill}/SKILL.md` for patterns
|
|
57
57
|
|
|
58
58
|
### From the PRD
|
|
59
59
|
- **prd.globalConstraints** - Rules that apply to ALL stories
|