Coreweave debug bundle
Skill ComeOnOliver/skillshub/skills/jeremylongshore/claude-code-plugins-plus-skills/coreweave-debug-bundle
🧠The right skill, one API call. AI agent skills registry with token-efficient skill resolution. 5,000+ skills from 500+ top repos.
npx -y skills add ComeOnOliver/skillshub --skill coreweave-debug-bundleAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Collect CoreWeave cluster diagnostics for support tickets. Use when preparing a support case, collecting GPU node status, or documenting pod failures. Trigger with phrases like "coreweave debug", "coreweave support", "coreweave diagnostics", "collect coreweave logs".
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.4 KB, 251 tokens by cl100k_base, as published. Nobody here has run it
CoreWeave Debug Bundle
Instructions
#!/bin/bash
set -euo pipefail
BUNDLE="coreweave-debug-$(date +%Y%m%d-%H%M%S)"
mkdir -p "$BUNDLE"
kubectl get nodes -o wide > "$BUNDLE/nodes.txt"
kubectl get pods --all-namespaces -o wide > "$BUNDLE/pods.txt"
kubectl get events --sort-by=.lastTimestamp > "$BUNDLE/events.txt"
kubectl describe nodes | grep -A10 "Allocated resources" > "$BUNDLE/gpu-allocation.txt"
# Pod logs for failing pods
for pod in $(kubectl get pods --field-selector=status.phase=Failed -o name); do
kubectl logs "$pod" --tail=100 > "$BUNDLE/$(basename $pod)-logs.txt" 2>&1
done
tar -czf "$BUNDLE.tar.gz" "$BUNDLE" && rm -rf "$BUNDLE"
echo "Bundle: $BUNDLE.tar.gz"
Resources
Next Steps
For rate limit handling, see coreweave-rate-limits.