From wendy-agentic-coding
Use when debugging WendyOS, Jetson, Raspberry Pi, USB-C host mode, containerd, GPU/audio/video entitlements, or a `wendy run` issue that only appears on a live device.
How this skill is triggered — by the user, by Claude, or both
Slash command
/wendy-agentic-coding:wendy-device-debugThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this for live-device and cross-layer runtime bugs. Static code reading is not enough when the failure depends on device state.
Use this for live-device and cross-layer runtime bugs. Static code reading is not enough when the failure depends on device state.
wendy or source wendy-dev.wendy discover --json unless the user already supplied a hostname.wendy.json, entitlements, environment, startup logs.nerdctl, not Docker.On the device, prefer read-only checks first:
hostname
cat /etc/wendyos/device-type 2>/dev/null || true
cat /etc/os-release 2>/dev/null || true
systemctl status wendy-agent --no-pager
journalctl -u wendy-agent -n 200 --no-pager
sudo nerdctl -n k8s.io ps -a
sudo nerdctl -n k8s.io logs <container>
test -f /etc/cdi/nvidia.yaml && sed -n '1,160p' /etc/cdi/nvidia.yaml
For Jetson GPU issues, verify all of:
/etc/wendyos/device-type exists and identifies a Jetson variant./etc/cdi/nvidia.yaml exists and exposes the expected device nodes.wendy-agent/go/internal/cli/commands/helpers.go.wendy-agent/go/internal/cli/commands/run.go.wendy-agent/go/internal/shared/appconfig/.wendy-agent/go/cmd/wendy-agent/main.go.wendy-agent/go/internal/agent/services/container_service.go.wendy-agent/go/internal/agent/containerd/.wendy-agent/go/internal/agent/oci/entitlements.go.wendyos/.Give the root cause by layer. Distinguish what can be fixed in the repo now from what depends on device image state or host compatibility.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub wendylabsinc/wendy-agentic-coding --plugin wendy-agentic-coding