* Prepare repository for Amp orbs Amp-Thread-ID: https://ampcode.com/threads/T-019f8509-6815-71df-b137-f40075cd06f8 Co-authored-by: Akash Shakdwipeea <ashakdwipeea@gmail.com> * Declare Amp preview service and portal Amp-Thread-ID: https://ampcode.com/threads/T-019f8509-6815-71df-b137-f40075cd06f8 Co-authored-by: Akash Shakdwipeea <ashakdwipeea@gmail.com> * Allow E2B portal hosts in Vite preview Amp-Thread-ID: https://ampcode.com/threads/T-019f8509-6815-71df-b137-f40075cd06f8 Co-authored-by: Akash Shakdwipeea <ashakdwipeea@gmail.com> * Enable WebGPU for agent-browser Amp-Thread-ID: https://ampcode.com/threads/T-019f8509-6815-71df-b137-f40075cd06f8 Co-authored-by: Akash Shakdwipeea <ashakdwipeea@gmail.com> * Install virtual display for WebGPU captures Amp-Thread-ID: https://ampcode.com/threads/T-019f8509-6815-71df-b137-f40075cd06f8 Co-authored-by: Akash Shakdwipeea <ashakdwipeea@gmail.com> * Revert Amp orb setup pending review Amp-Thread-ID: https://ampcode.com/threads/T-019f8509-6815-71df-b137-f40075cd06f8 Co-authored-by: Akash Shakdwipeea <ashakdwipeea@gmail.com> * Prepare repository for Amp orbs Amp-Thread-ID: https://ampcode.com/threads/T-019f8509-6815-71df-b137-f40075cd06f8 Co-authored-by: Akash Shakdwipeea <ashakdwipeea@gmail.com> * Declare Amp preview service and portal Amp-Thread-ID: https://ampcode.com/threads/T-019f8509-6815-71df-b137-f40075cd06f8 Co-authored-by: Akash Shakdwipeea <ashakdwipeea@gmail.com> * Allow E2B portal hosts in Vite preview Amp-Thread-ID: https://ampcode.com/threads/T-019f8509-6815-71df-b137-f40075cd06f8 Co-authored-by: Akash Shakdwipeea <ashakdwipeea@gmail.com> * Enable WebGPU for agent-browser Amp-Thread-ID: https://ampcode.com/threads/T-019f8509-6815-71df-b137-f40075cd06f8 Co-authored-by: Akash Shakdwipeea <ashakdwipeea@gmail.com> * Install virtual display for WebGPU captures Amp-Thread-ID: https://ampcode.com/threads/T-019f8509-6815-71df-b137-f40075cd06f8 Co-authored-by: Akash Shakdwipeea <ashakdwipeea@gmail.com> * Address orb portal review feedback Amp-Thread-ID: https://ampcode.com/threads/T-019f8509-6815-71df-b137-f40075cd06f8 Co-authored-by: Akash Shakdwipeea <ashakdwipeea@gmail.com> --------- Co-authored-by: Amp <amp@ampcode.com>
14 lines
324 B
Bash
Executable File
14 lines
324 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export PATH="$HOME/.local/bin:$HOME/.cargo/bin:$PATH"
|
|
|
|
for command in node npm cargo wasm-pack rsw; do
|
|
if ! command -v "$command" >/dev/null 2>&1; then
|
|
echo "Missing required command after orb resume: $command" >&2
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
echo "Orb environment ready."
|