gsd-cc 1.5.2 → 1.5.3
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/bin/install.js +1 -1
- package/package.json +1 -1
- package/skills/auto/auto-loop.sh +4 -4
- package/commands/.gitkeep +0 -0
- /package/{commands → skills/auto}/apply-instructions.txt +0 -0
- /package/{commands → skills/auto}/plan-instructions.txt +0 -0
- /package/{commands → skills/auto}/reassess-instructions.txt +0 -0
- /package/{commands → skills/auto}/unify-instructions.txt +0 -0
package/bin/install.js
CHANGED
|
@@ -27,7 +27,7 @@ ${cyan} ██████╗ ███████╗██████╗
|
|
|
27
27
|
`;
|
|
28
28
|
|
|
29
29
|
// Directories inside gsd-cc/ that map 1:1 into .claude/
|
|
30
|
-
const CLAUDE_DIRS = ['skills', 'hooks', 'checklists', '
|
|
30
|
+
const CLAUDE_DIRS = ['skills', 'hooks', 'checklists', 'templates'];
|
|
31
31
|
|
|
32
32
|
// Parse args
|
|
33
33
|
const args = process.argv.slice(2);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gsd-cc",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"description": "Get Shit Done on Claude Code — structured AI development with your Max plan",
|
|
5
5
|
"author": "Philipp Briese (https://github.com/0ui-labs)",
|
|
6
6
|
"homepage": "https://github.com/0ui-labs/GSD-CC#readme",
|
package/skills/auto/auto-loop.sh
CHANGED
|
@@ -24,7 +24,7 @@ else
|
|
|
24
24
|
exit 1
|
|
25
25
|
fi
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
PROMPTS_DIR="${SKILLS_DIR}/auto"
|
|
28
28
|
|
|
29
29
|
# Parse --budget flag
|
|
30
30
|
while [[ $# -gt 0 ]]; do
|
|
@@ -140,7 +140,7 @@ while true; do
|
|
|
140
140
|
echo "</decisions>" >> "$PROMPT_FILE"
|
|
141
141
|
fi
|
|
142
142
|
|
|
143
|
-
cat "$
|
|
143
|
+
cat "$PROMPTS_DIR/unify-instructions.txt" >> "$PROMPT_FILE"
|
|
144
144
|
|
|
145
145
|
RESULT_FILE="/tmp/gsd-result-$$.json"
|
|
146
146
|
timeout 600 claude -p "$(cat "$PROMPT_FILE")" \
|
|
@@ -222,7 +222,7 @@ while true; do
|
|
|
222
222
|
# Include context if it exists
|
|
223
223
|
[[ -f "$GSD_DIR/${SLICE}-CONTEXT.md" ]] && { echo "<context>"; cat "$GSD_DIR/${SLICE}-CONTEXT.md"; echo "</context>"; } >> "$PROMPT_FILE"
|
|
224
224
|
|
|
225
|
-
cat "$
|
|
225
|
+
cat "$PROMPTS_DIR/plan-instructions.txt" >> "$PROMPT_FILE"
|
|
226
226
|
DISPATCH_PHASE="plan"
|
|
227
227
|
;;
|
|
228
228
|
|
|
@@ -240,7 +240,7 @@ while true; do
|
|
|
240
240
|
[[ -f "$f" ]] && { echo "<prior-summary>"; cat "$f"; echo "</prior-summary>"; } >> "$PROMPT_FILE"
|
|
241
241
|
done
|
|
242
242
|
|
|
243
|
-
cat "$
|
|
243
|
+
cat "$PROMPTS_DIR/apply-instructions.txt" >> "$PROMPT_FILE"
|
|
244
244
|
DISPATCH_PHASE="apply"
|
|
245
245
|
;;
|
|
246
246
|
|
package/commands/.gitkeep
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|