ワンクリックで
tools-diagnostics
Interactive system resource analysis and troubleshooting for memory, disk, CPU, and performance issues
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Interactive system resource analysis and troubleshooting for memory, disk, CPU, and performance issues
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Issue-driven development with worktree isolation. 5-stage pipeline (new, plan, work, review, merge) with human gates between stages. Use when creating tasks, planning, implementing, reviewing, or merging.
Start or join an inter-agent chat session. Two Claude Code sessions communicate via a shared markdown file in tmp/. Use when the user says "ai-chat", "start a chat", "agent chat", or provides a chat slug to join.
View and manage configurations and skills for AI agent CLI tools (Claude Code, Opencode). Use when checking config files, listing or managing skills, viewing model settings, comparing configs across tools, or performing common config operations.
Orchestrate external AI agent instances (Claude Code, Opencode, Gemini CLI) via SDK or CLI. This skill NEVER does work itself — it always delegates to an external agent.
Parse Word documents (.docx) into repository-friendly markdown artifacts. Use when users need to extract content from Word files, convert to markdown, or batch process document directories.
Parse Power BI files (.pbix) into repository-friendly JSON and CSV artifacts. Use when users need to extract metadata, measures, or data model structure from Power BI files.
| name | tools-diagnostics |
| description | Interactive system resource analysis and troubleshooting for memory, disk, CPU, and performance issues |
Interactive skill for diagnosing system resource issues. Detects OS and applies appropriate diagnostic patterns. Focuses on real-world lessons from production incidents rather than generic command documentation.
Expects a Unix-like system (Linux or macOS). User describes a resource problem (memory, disk, CPU, or general slowness).
uname -s (Linux or Darwin)sudo for accurate disk usage on Linux (non-root du under-reports)nix.gc.automatic is disabled by policy - use explicit nix-collect-garbage -d/var/lib/containers, rootless storage) as disk pressure sourceAssess state:
df -h / /nix # disk usage
du -sh ~/.Trash ~/.cache ~/Library/Caches /nix/store 2>/dev/null # top consumers
Safe cleanup (macOS):
rm -rf ~/.Trash/*
rm -rf ~/Library/Caches/*
uv cache clean && brew cleanup --prune=all
nix-collect-garbage -d
Safe cleanup (Linux, as root):
sudo du -xhd 1 / | sort -hr | head -20 # find top consumers
sudo nix-collect-garbage -d
sudo nix-store --gc
sudo podman system prune --volumes -f # if containers present
When determinateNix.enable = true on macOS hosts, nix-darwin's nix.gc module is disabled. Determinate Nixd handles GC policy instead. Do not assume timer-based GC is running.
Reference: dragonix/modules/base/nix-settings/darwin.nix
Large Nix store after GC usually means:
~/.local/state/nix/profiles//proc roots# Per-user profile pruning
nix-env -p ~/.local/state/nix/profiles/profile --delete-generations old
nix-env -p ~/.local/state/nix/profiles/home-manager --delete-generations old
Low risk, high value: trash, caches, uv cache clean, brew cleanup
Medium risk with verification: nix-collect-garbage -d, playwright cache, mediaanalysisd
Do not delete: /System, /usr, /bin, /sbin, APFS system volumes, app databases