-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathdemo.sh
More file actions
executable file
·445 lines (386 loc) · 14.6 KB
/
Copy pathdemo.sh
File metadata and controls
executable file
·445 lines (386 loc) · 14.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
#!/usr/bin/env bash
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
POLICY_TEMPLATE="${SCRIPT_DIR}/policy.template.yaml"
PROMPTS_DIR="${SCRIPT_DIR}/prompts"
OPENSHELL_BIN="${OPENSHELL_BIN:-openshell}"
DEMO_TOPIC="${DEMO_TOPIC:-How should teams evaluate sandboxed coding agents?}"
DEMO_AGENT_COUNT="${DEMO_AGENT_COUNT:-5}"
DEMO_BRANCH="${DEMO_BRANCH:-main}"
DEMO_RUN_ID="${DEMO_RUN_ID:-$(date +%Y%m%d-%H%M%S)}"
DEMO_KEEP_SANDBOXES="${DEMO_KEEP_SANDBOXES:-0}"
DEMO_CODEX_PROVIDER_NAME="${DEMO_CODEX_PROVIDER_NAME:-codex-oauth-${DEMO_RUN_ID}}"
DEMO_GITHUB_PROVIDER_NAME="${DEMO_GITHUB_PROVIDER_NAME:-github-memory-${DEMO_RUN_ID}}"
TMP_DIR="$(mktemp -d "${TMPDIR:-/tmp}/openshell-codex-github.XXXXXX")"
POLICY_FILE="${TMP_DIR}/policy.yaml"
PAYLOAD_DIR="${TMP_DIR}/payload"
RUNNER_FILE="${PAYLOAD_DIR}/demo-runner.sh"
PROMPTS_UPLOAD_DIR="${PAYLOAD_DIR}/prompts"
LOG_DIR="${TMP_DIR}/logs"
mkdir -p "$LOG_DIR" "$PROMPTS_UPLOAD_DIR"
BOLD='\033[1m'
DIM='\033[2m'
CYAN='\033[36m'
GREEN='\033[32m'
RED='\033[31m'
YELLOW='\033[33m'
RESET='\033[0m'
WORKER_SLICES=(
"Adoption criteria: what makes a sandboxed coding-agent workflow trustworthy enough to try?"
"Operational risks: what can go wrong when many autonomous agents run at once?"
"Security controls: which controls make the biggest difference for credential and network safety?"
"Developer experience: where does the workflow need to feel simple for users to adopt it?"
"Measurement: what signals show whether the agents produced useful work?"
"Scaling: what changes when the team runs dozens of agents instead of five?"
"Governance: what review and approval steps should remain human-controlled?"
"Repository hygiene: what makes the shared markdown notepad easy to review and clean up?"
)
step() {
printf "\n${BOLD}${CYAN}==> %s${RESET}\n\n" "$1"
}
info() {
printf " %b\n" "$*"
}
fail() {
printf "\n${RED}error:${RESET} %s\n" "$*" >&2
exit 1
}
cleanup() {
local status=$?
if [[ "$DEMO_KEEP_SANDBOXES" != "1" ]]; then
for i in $(seq 1 "$DEMO_AGENT_COUNT"); do
"$OPENSHELL_BIN" sandbox delete "codex-gh-${DEMO_RUN_ID}-a${i}" >/dev/null 2>&1 || true
done
"$OPENSHELL_BIN" sandbox delete "codex-gh-${DEMO_RUN_ID}-summary" >/dev/null 2>&1 || true
else
printf "\n${YELLOW}Keeping sandboxes because DEMO_KEEP_SANDBOXES=1.${RESET}\n"
fi
"$OPENSHELL_BIN" provider delete "$DEMO_CODEX_PROVIDER_NAME" >/dev/null 2>&1 || true
"$OPENSHELL_BIN" provider delete "$DEMO_GITHUB_PROVIDER_NAME" >/dev/null 2>&1 || true
if [[ $status -ne 0 ]]; then
printf "\n${YELLOW}Logs kept at: %s${RESET}\n" "$LOG_DIR"
else
rm -rf "$TMP_DIR"
fi
}
trap cleanup EXIT
require_command() {
command -v "$1" >/dev/null 2>&1 || fail "missing required command: $1"
}
validate_env() {
require_command "$OPENSHELL_BIN"
require_command jq
require_command sed
[[ -n "${DEMO_GITHUB_OWNER:-}" ]] || fail "set DEMO_GITHUB_OWNER"
[[ -n "${DEMO_GITHUB_REPO:-}" ]] || fail "set DEMO_GITHUB_REPO"
[[ -n "${DEMO_GITHUB_TOKEN:-}" ]] || fail "set DEMO_GITHUB_TOKEN"
[[ -f "${HOME}/.codex/auth.json" ]] || fail "missing local Codex sign-in; run: codex login"
[[ "$DEMO_AGENT_COUNT" =~ ^[0-9]+$ ]] || fail "DEMO_AGENT_COUNT must be a number"
(( DEMO_AGENT_COUNT >= 1 && DEMO_AGENT_COUNT <= 8 )) || fail "DEMO_AGENT_COUNT must be between 1 and 8 for this demo"
[[ "$DEMO_RUN_ID" =~ ^[a-z0-9-]+$ ]] || fail "DEMO_RUN_ID may contain only lowercase letters, numbers, and '-'"
[[ "$DEMO_GITHUB_OWNER" =~ ^[A-Za-z0-9_.-]+$ ]] || fail "DEMO_GITHUB_OWNER contains unsupported characters"
[[ "$DEMO_GITHUB_REPO" =~ ^[A-Za-z0-9_.-]+$ ]] || fail "DEMO_GITHUB_REPO contains unsupported characters"
[[ "$DEMO_BRANCH" =~ ^[A-Za-z0-9._-]+$ ]] || fail "DEMO_BRANCH may contain only letters, numbers, '.', '_', and '-'"
"$OPENSHELL_BIN" status >/dev/null 2>&1 || fail "OpenShell gateway is not reachable; run: openshell gateway start"
export CODEX_AUTH_ACCESS_TOKEN
export CODEX_AUTH_REFRESH_TOKEN
export CODEX_AUTH_ACCOUNT_ID
CODEX_AUTH_ACCESS_TOKEN="$(jq -r '.tokens.access_token // empty' "${HOME}/.codex/auth.json")"
CODEX_AUTH_REFRESH_TOKEN="$(jq -r '.tokens.refresh_token // empty' "${HOME}/.codex/auth.json")"
CODEX_AUTH_ACCOUNT_ID="$(jq -r '.tokens.account_id // empty' "${HOME}/.codex/auth.json")"
[[ -n "$CODEX_AUTH_ACCESS_TOKEN" ]] || fail "local Codex sign-in is missing an access token; run: codex login"
[[ -n "$CODEX_AUTH_REFRESH_TOKEN" ]] || fail "local Codex sign-in is missing a refresh token; run: codex login"
[[ -n "$CODEX_AUTH_ACCOUNT_ID" ]] || fail "local Codex sign-in is missing an account id; run: codex login"
}
render_policy() {
sed \
-e "s/__OWNER__/${DEMO_GITHUB_OWNER}/g" \
-e "s/__REPO__/${DEMO_GITHUB_REPO}/g" \
-e "s/__RUN_ID__/${DEMO_RUN_ID}/g" \
"$POLICY_TEMPLATE" > "$POLICY_FILE"
}
write_runner() {
cp "${PROMPTS_DIR}/worker.md" "${PROMPTS_UPLOAD_DIR}/worker.md"
cp "${PROMPTS_DIR}/synthesis.md" "${PROMPTS_UPLOAD_DIR}/synthesis.md"
cat > "$RUNNER_FILE" <<'EOF'
#!/usr/bin/env bash
set -euo pipefail
MODE="$1"
OWNER="$2"
REPO="$3"
BRANCH="$4"
RUN_ID="$5"
AGENT_INDEX="${6:-0}"
AGENT_COUNT="${7:-0}"
TOPIC="${8:-}"
api_url() {
printf 'https://api.github.com%s' "$1"
}
github_request() {
local method="$1"
local path="$2"
local output="$3"
shift 3
curl -sS \
-X "$method" \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${DEMO_GITHUB_TOKEN}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
"$@" \
-o "$output" \
-w "%{http_code}" \
"$(api_url "$path")"
}
render_template() {
local template="$1"
local slice="${2:-}"
node - "$template" "$AGENT_INDEX" "$AGENT_COUNT" "$TOPIC" "$slice" <<'NODE'
const fs = require("fs");
const [templatePath, agentIndex, agentCount, topic, slice] = process.argv.slice(2);
let text = fs.readFileSync(templatePath, "utf8");
text = text.replace(/^(?:<!-- [^\n]* -->\n)+\n?/, "");
const replacements = {
"{{AGENT_INDEX}}": agentIndex,
"{{AGENT_COUNT}}": agentCount,
"{{TOPIC}}": topic,
"{{SLICE}}": slice,
};
for (const [needle, value] of Object.entries(replacements)) {
text = text.split(needle).join(value);
}
process.stdout.write(text);
NODE
}
bootstrap_codex_oauth() {
mkdir -p "$HOME/.codex"
node - <<'NODE'
const fs = require("fs");
const path = `${process.env.HOME}/.codex/auth.json`;
const b64u = (obj) => Buffer.from(JSON.stringify(obj)).toString("base64url");
const now = Math.floor(Date.now() / 1000);
const fakeIdToken = [
b64u({ alg: "none", typ: "JWT" }),
b64u({
iss: "https://auth.openai.com",
aud: "codex",
sub: "openshell-placeholder",
email: "placeholder@example.com",
iat: now,
exp: now + 3600,
}),
"placeholder",
].join(".");
fs.writeFileSync(path, JSON.stringify({
auth_mode: "chatgpt",
OPENAI_API_KEY: null,
tokens: {
id_token: fakeIdToken,
access_token: process.env.CODEX_AUTH_ACCESS_TOKEN,
refresh_token: process.env.CODEX_AUTH_REFRESH_TOKEN,
account_id: process.env.CODEX_AUTH_ACCOUNT_ID,
},
last_refresh: new Date().toISOString(),
}, null, 2));
NODE
chmod 600 "$HOME/.codex/auth.json"
}
put_contents() {
local repo_path="$1"
local source_file="$2"
local message="$3"
local get_body put_body put_response status sha
get_body="$(mktemp)"
put_body="$(mktemp)"
put_response="$(mktemp)"
status="$(github_request GET "/repos/${OWNER}/${REPO}/contents/${repo_path}?ref=${BRANCH}" "$get_body")"
if [[ "$status" == "200" ]]; then
sha="$(node -e 'const fs=require("fs"); const p=JSON.parse(fs.readFileSync(process.argv[1],"utf8")); process.stdout.write(p.sha || "");' "$get_body")"
elif [[ "$status" == "404" ]]; then
sha=""
else
echo "GitHub GET ${repo_path} failed with HTTP ${status}" >&2
cat "$get_body" >&2
return 1
fi
node - "$source_file" "$message" "$BRANCH" "$sha" > "$put_body" <<'NODE'
const fs = require("fs");
const [file, message, branch, sha] = process.argv.slice(2);
const body = {
message,
branch,
content: fs.readFileSync(file).toString("base64"),
};
if (sha) body.sha = sha;
process.stdout.write(JSON.stringify(body));
NODE
status="$(github_request PUT "/repos/${OWNER}/${REPO}/contents/${repo_path}" "$put_response" --data-binary "@${put_body}")"
if [[ "$status" != "200" && "$status" != "201" ]]; then
echo "GitHub PUT ${repo_path} failed with HTTP ${status}" >&2
cat "$put_response" >&2
return 1
fi
}
get_contents_file() {
local repo_path="$1"
local destination="$2"
local body status
body="$(mktemp)"
status="$(github_request GET "/repos/${OWNER}/${REPO}/contents/${repo_path}?ref=${BRANCH}" "$body")"
if [[ "$status" != "200" ]]; then
echo "GitHub GET ${repo_path} failed with HTTP ${status}" >&2
cat "$body" >&2
return 1
fi
node - "$body" "$destination" <<'NODE'
const fs = require("fs");
const [bodyPath, destination] = process.argv.slice(2);
const body = JSON.parse(fs.readFileSync(bodyPath, "utf8"));
fs.writeFileSync(destination, Buffer.from((body.content || "").replace(/\s/g, ""), "base64"));
NODE
}
run_codex_to_file() {
local prompt_file="$1"
local output_file="$2"
codex exec \
--skip-git-repo-check \
--sandbox read-only \
--ephemeral \
--output-last-message "$output_file" \
"$(cat "$prompt_file")"
}
worker() {
local slice="$9"
local prompt_file output_file repo_path
bootstrap_codex_oauth
prompt_file="$(mktemp)"
output_file="$(mktemp)"
repo_path="runs/${RUN_ID}/notes/agent-${AGENT_INDEX}.md"
render_template /sandbox/payload/prompts/worker.md "$slice" > "$prompt_file"
run_codex_to_file "$prompt_file" "$output_file"
put_contents "$repo_path" "$output_file" "Add agent ${AGENT_INDEX} note for ${RUN_ID}"
printf 'wrote %s\n' "$repo_path"
}
synthesis() {
local notes_dir prompt_file output_file repo_path
bootstrap_codex_oauth
notes_dir="$(mktemp -d)"
prompt_file="$(mktemp)"
output_file="$(mktemp)"
repo_path="runs/${RUN_ID}/summary.md"
for i in $(seq 1 "$AGENT_COUNT"); do
get_contents_file "runs/${RUN_ID}/notes/agent-${i}.md" "${notes_dir}/agent-${i}.md"
done
render_template /sandbox/payload/prompts/synthesis.md "" > "$prompt_file"
{
printf '\n\n## Worker Notes\n\n'
for i in $(seq 1 "$AGENT_COUNT"); do
printf '\n\n---\n\n'
cat "${notes_dir}/agent-${i}.md"
done
} >> "$prompt_file"
run_codex_to_file "$prompt_file" "$output_file"
put_contents "$repo_path" "$output_file" "Add multi-agent summary for ${RUN_ID}"
printf 'wrote %s\n' "$repo_path"
}
case "$MODE" in
worker) worker "$@" ;;
synthesis) synthesis ;;
*) echo "unknown mode: $MODE" >&2; exit 2 ;;
esac
EOF
chmod +x "$RUNNER_FILE"
}
create_providers() {
"$OPENSHELL_BIN" provider delete "$DEMO_CODEX_PROVIDER_NAME" >/dev/null 2>&1 || true
"$OPENSHELL_BIN" provider delete "$DEMO_GITHUB_PROVIDER_NAME" >/dev/null 2>&1 || true
"$OPENSHELL_BIN" provider create \
--name "$DEMO_CODEX_PROVIDER_NAME" \
--type generic \
--credential CODEX_AUTH_ACCESS_TOKEN \
--credential CODEX_AUTH_REFRESH_TOKEN \
--credential CODEX_AUTH_ACCOUNT_ID >/dev/null
"$OPENSHELL_BIN" provider create \
--name "$DEMO_GITHUB_PROVIDER_NAME" \
--type generic \
--credential DEMO_GITHUB_TOKEN >/dev/null
}
run_sandbox() {
local name="$1"
shift
"$OPENSHELL_BIN" sandbox create \
--name "$name" \
--from base \
--provider "$DEMO_CODEX_PROVIDER_NAME" \
--provider "$DEMO_GITHUB_PROVIDER_NAME" \
--policy "$POLICY_FILE" \
--upload "${PAYLOAD_DIR}:/sandbox" \
--no-tty \
-- bash /sandbox/payload/demo-runner.sh "$@"
}
run_worker() {
local index="$1"
local slice_index=$(( (index - 1) % ${#WORKER_SLICES[@]} ))
local name="codex-gh-${DEMO_RUN_ID}-a${index}"
run_sandbox "$name" worker "$DEMO_GITHUB_OWNER" "$DEMO_GITHUB_REPO" "$DEMO_BRANCH" "$DEMO_RUN_ID" "$index" "$DEMO_AGENT_COUNT" "$DEMO_TOPIC" "${WORKER_SLICES[$slice_index]}"
}
run_workers() {
local pids=()
local failed=0
for i in $(seq 1 "$DEMO_AGENT_COUNT"); do
(
run_worker "$i"
) >"${LOG_DIR}/agent-${i}.log" 2>&1 &
pids+=("$!")
info "${DIM}started worker ${i} (log: ${LOG_DIR}/agent-${i}.log)${RESET}"
done
for i in $(seq 1 "$DEMO_AGENT_COUNT"); do
if ! wait "${pids[$((i - 1))]}"; then
failed=1
printf "\n${RED}worker ${i} failed; log follows:${RESET}\n"
sed 's/^/ /' "${LOG_DIR}/agent-${i}.log" | tail -80
else
printf " ${GREEN}worker ${i} complete${RESET}\n"
fi
done
[[ "$failed" == "0" ]] || fail "one or more workers failed"
}
run_synthesis() {
local name="codex-gh-${DEMO_RUN_ID}-summary"
run_sandbox "$name" synthesis "$DEMO_GITHUB_OWNER" "$DEMO_GITHUB_REPO" "$DEMO_BRANCH" "$DEMO_RUN_ID" "0" "$DEMO_AGENT_COUNT" "$DEMO_TOPIC" \
>"${LOG_DIR}/summary.log" 2>&1 || {
printf "\n${RED}synthesis failed; log follows:${RESET}\n"
sed 's/^/ /' "${LOG_DIR}/summary.log" | tail -120
return 1
}
printf " ${GREEN}synthesis complete${RESET}\n"
}
print_results() {
local base_url="https://github.com/${DEMO_GITHUB_OWNER}/${DEMO_GITHUB_REPO}/tree/${DEMO_BRANCH}/runs/${DEMO_RUN_ID}"
printf "\n${BOLD}${GREEN}Demo complete.${RESET}\n\n"
printf " Shared agent notepad:\n"
printf " %s\n\n" "$base_url"
printf " What happened:\n"
printf " - %s isolated worker sandboxes wrote notes to a GitHub-backed markdown notepad.\n" "$DEMO_AGENT_COUNT"
printf " - One synthesis sandbox read those notes and wrote the final summary.\n"
printf " - No worker shared a filesystem or container with another worker.\n\n"
printf " Generated files:\n"
for i in $(seq 1 "$DEMO_AGENT_COUNT"); do
printf " - %s/notes/agent-%s.md\n" "$base_url" "$i"
done
printf " - %s/summary.md\n" "$base_url"
}
main() {
validate_env
render_policy
write_runner
step "Creating provider-backed Codex OAuth and GitHub token records"
create_providers
step "Launching ${DEMO_AGENT_COUNT} Codex worker sandboxes"
run_workers
step "Launching synthesis Codex sandbox"
run_synthesis
print_results
}
main "$@"