File tree Expand file tree Collapse file tree 1 file changed +19
-17
lines changed Expand file tree Collapse file tree 1 file changed +19
-17
lines changed Original file line number Diff line number Diff line change @@ -153,21 +153,23 @@ quick-modify:
153
153
show-logs :
154
154
tail -f $(ls $PGT_LOG_PATH/ server.log.* | sort -t- -k2,2 -k3,3 -k4,4 | tail -n 1 )
155
155
156
- agentic name :
157
- unset ANTHROPIC_API_KEY && claude --dangerously-skip-permissions -p " please read agentic/{{ name}} .md and follow the instructions closely"
158
-
159
- agentic-loop name :
160
- #!/usr/bin/env bash
161
- echo " Starting agentic loop until error..."
162
- iteration=1
163
- while true ; do
164
- echo " $(date): Starting iteration $iteration..."
165
- if just agentic {{ name}} ; then
166
- echo " $(date): Iteration $iteration completed successfully!"
167
- iteration=$((iteration + 1 ))
168
- else
169
- echo " $(date): Iteration $iteration failed - stopping loop"
170
- break
171
- fi
172
- done
156
+ # Run a claude agent with the given agentic prompt file.
157
+ # Commented out by default to avoid accidental usage that may incur costs.
158
+ # agentic name:
159
+ # unset ANTHROPIC_API_KEY && claude --dangerously-skip-permissions -p "please read agentic/{{name}}.md and follow the instructions closely"
160
+ #
161
+ # agentic-loop name:
162
+ # #!/usr/bin/env bash
163
+ # echo "Starting agentic loop until error..."
164
+ # iteration=1
165
+ # while true; do
166
+ # echo "$(date): Starting iteration $iteration..."
167
+ # if just agentic {{name}}; then
168
+ # echo "$(date): Iteration $iteration completed successfully!"
169
+ # iteration=$((iteration + 1))
170
+ # else
171
+ # echo "$(date): Iteration $iteration failed - stopping loop"
172
+ # break
173
+ # fi
174
+ # done
173
175
You can’t perform that action at this time.
0 commit comments