-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspawn_workers.sh
More file actions
executable file
·28 lines (23 loc) · 1.49 KB
/
spawn_workers.sh
File metadata and controls
executable file
·28 lines (23 loc) · 1.49 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
#!/bin/bash
PTY=/home/alexturner/.nbs/bin/pty-session
# Worker 018: SSH Config Parsing
$PTY create worker-018 'cd /home/alexturner/local/nbs-ssh && claude'
sleep 6
$PTY send worker-018 'Read .nbs/workers/worker-018-ssh-config.md and execute the task. Update the Status and Log sections when complete. Remember to checkout the feature branch first and run the FULL test suite before finishing.'
$PTY send worker-018 ''
# Worker 019: Certificate Support
$PTY create worker-019 'cd /home/alexturner/local/nbs-ssh && claude'
sleep 6
$PTY send worker-019 'Read .nbs/workers/worker-019-certificate.md and execute the task. Update the Status and Log sections when complete. Remember to checkout the feature branch first and run the FULL test suite before finishing.'
$PTY send worker-019 ''
# Worker 020: Proxy Support
$PTY create worker-020 'cd /home/alexturner/local/nbs-ssh && claude'
sleep 6
$PTY send worker-020 'Read .nbs/workers/worker-020-proxy.md and execute the task. Update the Status and Log sections when complete. Remember to checkout the feature branch first and run the FULL test suite before finishing.'
$PTY send worker-020 ''
# Worker 021: PKCS#11
$PTY create worker-021 'cd /home/alexturner/local/nbs-ssh && claude'
sleep 6
$PTY send worker-021 'Read .nbs/workers/worker-021-pkcs11.md and execute the task. Update the Status and Log sections when complete. Remember to checkout the feature branch first and run the FULL test suite before finishing.'
$PTY send worker-021 ''
echo "All 4 workers spawned"