ワンクリックで
debug
Diagnose and fix issues with the Pibox container environment — tools, paths, mounts, pi configuration.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Diagnose and fix issues with the Pibox container environment — tools, paths, mounts, pi configuration.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
ARCHIVED — project work items are tracked in GitHub Issues and GitHub Projects. Use the github-issues skill when installed, or use gh directly.
Diagnose and fix piclaw extension issues (imports, DB init errors, watcher perms), update skel, and restart safely.
Search the web via SearXNG (or DuckDuckGo fallback) and optionally fetch result pages as raw Markdown content.
Search via SearXNG (or DuckDuckGo fallback), fetch top results, and return sentence-level summaries plus optional converted page content.
Fetch a user's recent tweets (tweets, replies, retweets) using Playwright + Nitter fallbacks and produce compact JSON/Markdown summaries.
Write and review concise technical documentation using a plain-English voice guide and anti-trope filter. Use for READMEs, design notes, runbooks, API documentation, release notes, and pull-request text.
| name | debug |
| description | Diagnose and fix issues with the Pibox container environment — tools, paths, mounts, pi configuration. |
| distribution | public |
Use this skill to diagnose and fix Pibox container issues.
Check system basics:
uname -a && cat /etc/os-release | head -3
whoami && id
df -h / /workspace /home/agent 2>/dev/null
free -h
Check tool availability:
for cmd in bun brew git rg make pi vim tmux htop jq curl; do
printf "%-8s " "$cmd"; which "$cmd" 2>/dev/null && "$cmd" --version 2>/dev/null | head -1 || echo "NOT FOUND"
done
Check pi configuration:
echo "=== Global skills ===" && ls ~/.pi/agent/skills/ 2>/dev/null || echo "none"
echo "=== Global settings ===" && cat ~/.pi/agent/settings.json 2>/dev/null || echo "none"
echo "=== Project AGENTS.md ===" && head -5 AGENTS.md 2>/dev/null || echo "none"
echo "=== Project skills ===" && ls .pi/skills/ 2>/dev/null || echo "none"
Check piclaw (if running):
echo "=== Piclaw ===" && pgrep -af "bun.*piclaw" || echo "not running"
ls -la data/ipc/ 2>/dev/null || echo "no IPC directory"
Report the findings and suggest fixes.
source ~/.bashrc or check ~/.bun/bin is in PATHeval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"bun add -g @earendil-works/pi-coding-agentsudo chown -R agent:agent /workspace/config volume is mounted and ~/.pi is symlinked