You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Run a one-shot prompt in the sandbox (trace=true to summarize session, learn=true to run /evolve:learn)
35
+
# Run a one-shot prompt in the sandbox (trace=true to summarize session, learn=true to run /evolve-lite:learn)
36
36
sandbox-promptprompt:
37
37
#!/usr/bin/env sh
38
38
export SANDBOX_PROMPT="$(cat <<'PROMPT_EOF'
@@ -44,17 +44,17 @@ sandbox-prompt prompt:
44
44
if [ "{{trace}}" = "true" ]; then
45
45
TRACE_CMD="
46
46
echo; echo; echo Summarizing the session...; echo
47
-
claude --plugin-dir /plugins/evolve/ --dangerously-skip-permissions --no-session-persistence -p 'tell me what happened in the newest json file in /home/sandbox/.claude/projects/-workspace/'
47
+
claude --plugin-dir /plugins/evolve-lite/ --dangerously-skip-permissions --no-session-persistence -p 'tell me what happened in the newest json file in /home/sandbox/.claude/projects/-workspace/'
48
48
"
49
49
fi
50
50
if [ "{{learn}}" = "true" ]; then
51
51
LEARN_CMD="
52
52
echo; echo; echo Learning...; echo
53
-
claude --plugin-dir /plugins/evolve/ --dangerously-skip-permissions --continue -p '/evolve:learn'
53
+
claude --plugin-dir /plugins/evolve-lite/ --dangerously-skip-permissions --continue -p '/evolve-lite:learn'
54
54
"
55
55
fi
56
56
docker run --rm -it --env SANDBOX_PROMPT --env-file {{env_file}} -v "$(cd {{workspace}} && pwd)":/workspace -v "$(pwd)/plugins":/plugins {{image}} sh -c "
57
-
claude --plugin-dir /plugins/evolve/ --dangerously-skip-permissions -p \"\$SANDBOX_PROMPT\"
57
+
claude --plugin-dir /plugins/evolve-lite/ --dangerously-skip-permissions -p \"\$SANDBOX_PROMPT\"
0 commit comments