Snapshot of where opencode + Qwen3-Coder + MCPs + Kimi-Linear + voice + Phoenix tracing land today, plus in-flight (oc-tree, kimi-linear context ramp) and next (ComfyUI) items with pointers to per-project NEXT_STEPS.md guides.
8 lines
276 B
Bash
Executable File
8 lines
276 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Wrapper: invokes pyinfra against the Framework Desktop, forwarding any
|
|
# extra args (e.g. --dry, -v) to pyinfra. Assumes NOPASSWD sudo on the box.
|
|
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")"
|
|
exec pyinfra -v --ssh-password-prompt inventory.py deploy.py "$@"
|