Agent Skillsintercom/2x-skills › tool-misses

tool-misses

GitHub

扫描近期会话中的命令缺失和BSD/GNU兼容性问题,通过Homebrew修复并记录状态。支持开关建议钩子及查看状态,自动检测未找到命令及版本错误并提供解决方案。

plugins/claude-code-tools/skills/tool-misses/SKILL.md intercom/2x-skills

触发场景

用户报告命令未找到或工具运行失败 在macOS环境下遇到BSD与GNU命令差异问题 用户显式调用/tool-misses指令进行扫描或管理

安装

npx skills add intercom/2x-skills --skill tool-misses -g -y
更多选项

非标准路径

npx skills add https://github.com/intercom/2x-skills/tree/main/plugins/claude-code-tools/skills/tool-misses -g -y

不安装直接使用

npx skills use intercom/2x-skills@tool-misses

指定 Agent (Claude Code)

npx skills add intercom/2x-skills --skill tool-misses -a claude-code -g -y

安装 repo 全部 skill

npx skills add intercom/2x-skills --all -g -y

预览 repo 内 skill

npx skills add intercom/2x-skills --list

SKILL.md

Frontmatter
{
    "name": "tool-misses",
    "metadata": {
        "keywords": [
            "gsed",
            "ggrep",
            "gnu-sed"
        ],
        "user-invocable": true
    },
    "description": "Scan recent Claude Code sessions for \"command not found\" errors and BSD\/GNU incompatibilities on macOS, fix them via Homebrew, and record availability in CLAUDE.md; runs only when the user invokes \/tool-misses (scan | on | off | status).\n",
    "allowed-tools": "Bash Read Edit Write AskUserQuestion",
    "disable-model-invocation": true
}

Tool Misses

Scan recent Claude Code sessions for tool failures — missing commands and BSD/GNU incompatibilities — then fix them with Homebrew and record availability in CLAUDE.md.

Response Style

Skip narration and transitional commentary. Run each step, then present the findings or ask the user directly. Do not preface tool calls with sentences like "Now I'll run the scanner" or "Let me check whether Homebrew is installed", and do not paraphrase script output the user can already see — show the tables and the questions, nothing else.

Workflow

Step 0: Handle enable/disable arguments

This skill accepts an optional argument that controls its companion PostToolUse hook (suggest-tool-misses.sh), which nudges the user toward this skill when a tool failure is detected in Bash output. The hook reads a persistent marker file at ~/.claude/.disable-tool-misses-hook and stays silent whenever it exists.

Dispatch on the argument before doing anything else:

  • off, disable, stop, mute, or silence → silence the hook:
    touch ~/.claude/.disable-tool-misses-hook
    
    Confirm suggestions are off until re-enabled with /tool-misses on, then STOP (do not run a scan).
  • on, enable, start, or unmute → re-enable the hook:
    rm -f ~/.claude/.disable-tool-misses-hook
    
    Confirm suggestions are back on, then STOP (do not run a scan).
  • status → report whether the hook is on or off:
    test -f ~/.claude/.disable-tool-misses-hook && echo "off" || echo "on"
    
    Report the result, then STOP.
  • No argument, scan, or anything else → proceed to Step 1.

Step 1: Detect tool misses

Run the scanner script against recent session transcripts:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/tool-misses/scripts/detect-tool-misses.py

This scans ~/.claude/projects/*/*.jsonl files from the last 14 days. It looks at Bash tool_use + tool_result pairs and matches error output against two pattern sets:

  • Missing tools: command not found errors
  • Wrong version / incompatibility: BSD vs GNU errors (e.g., grep -P failing, sed -i syntax differences, find -printf not supported)

Output is JSON with missing_tools[], wrong_version_tools[], and scan_summary{}.

If the script finds no misses, report that and stop.

Step 2: Check current state

For each detected tool, check whether it has already been resolved:

command -v <tool>        # Is it installed now?
command -v g<tool>       # Is the GNU version available?
brew --prefix 2>/dev/null # Is Homebrew installed?

Categorize each tool as: still missing, now installed but not in CLAUDE.md, or fully resolved.

Step 3: Look up fixes

Consult references/tool-database.md for each detected tool to find:

  • The correct Homebrew formula
  • The g-prefix command name (for GNU tools)
  • Guidance text for CLAUDE.md

For tools not in the database, note them as "unknown — manual resolution needed".

Step 4: Present report

Show the findings in tables grouped by status:

## Missing Tools (not currently installed)
| Tool | Error | Homebrew Formula | Occurrences |
|------|-------|------------------|-------------|
| filterdiff | command not found | patchutils | 3 |

## BSD/GNU Incompatibilities
| Tool | Error Pattern | Fix | g-prefix |
|------|---------------|-----|----------|
| grep | invalid option -- P | brew install grep | ggrep |

## Already Resolved (installed since the error)
| Tool | Status |
|------|--------|
| jq   | Now installed |

## GNU Tools Available but Not in CLAUDE.md
| Tool | g-prefix | Formula |
|------|----------|---------|
| gsed | gsed     | gnu-sed |

Only show sections that have entries. If everything is resolved, say so and skip to Step 8.

If the scanner output includes ignored_tools, mention how many were skipped:

(3 previously dismissed tools hidden — edit ~/.claude/tool-misses-ignored.json to reset)

Step 5: Prompt for action — per tool

Present each detected tool individually for the user to decide. For each tool, use AskUserQuestion with these options:

  • Install + add to CLAUDE.md (Recommended) — Install via Homebrew and record in CLAUDE.md
  • Install only — Install but don't modify CLAUDE.md
  • CLAUDE.md only — Already installed, just add the CLAUDE.md entry
  • Dismiss permanently — Not needed; hide from future scans

If a tool has no known Homebrew formula, adjust options to only show "Dismiss permanently" and "Skip for now".

Dismiss behavior: When the user dismisses a tool, add it to ~/.claude/tool-misses-ignored.json:

{
  "ignored": ["qmd", "init_common"],
  "notes": {
    "qmd": "Dismissed 2026-02-08 — short-term experiment",
    "init_common": "Dismissed 2026-02-08 — shell function, not a tool"
  }
}

Read the file first (or start with empty {"ignored":[], "notes":{}}) and merge. The scanner automatically filters out tools in this list on future runs.

Step 6: Install tools

For each tool the user approved for installation:

brew install <formula>

After each install, verify it worked:

command -v <tool> && echo "OK" || echo "FAILED"

If a GNU tool was installed, also verify the g-prefix command:

command -v g<tool> && echo "OK" || echo "FAILED"

Report any install failures and continue with the rest.

Step 7: Update CLAUDE.md

Add a ## Tool Availability (macOS) section to ~/.claude/CLAUDE.md (global config, since these are system-wide tools). Follow these rules:

  • Consult references/claude-md-templates.md for entry format
  • Show proposed additions before writing — never write without confirmation
  • Don't duplicate entries that already exist in CLAUDE.md
  • If the section already exists, append new entries to it
  • If the file doesn't exist, create it with just the tool availability section

Read the current file first:

cat ~/.claude/CLAUDE.md 2>/dev/null || echo ""

Show the proposed changes as a diff-style preview before applying.

Step 8: Summarize

Show a final summary:

## Summary

Installed: filterdiff (patchutils), rg (ripgrep)
CLAUDE.md: Added 3 entries to ~/.claude/CLAUDE.md
  - GNU grep available as ggrep
  - GNU sed available as gsed
  - filterdiff available (patchutils)

Dismissed: qmd, init_common (won't appear in future scans)
No action needed: jq (already installed and in CLAUDE.md)

Error Handling

No session files found:

  • Check if ~/.claude/projects/ exists
  • Suggest the user has a new install or cleared history
  • Offer to scan a custom path

Homebrew not installed:

  • Warn that brew is required for installation
  • Still offer to update CLAUDE.md with manual install instructions
  • Provide the Homebrew install command: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Script errors:

  • If the Python script fails, show the error and suggest running it manually
  • Fall back to a simpler scan if needed

Additional Resources

  • references/tool-database.md — Complete error pattern → Homebrew formula mappings
  • references/claude-md-templates.md — Templates for CLAUDE.md entries
  • scripts/detect-tool-misses.py — Session scanner script

版本历史

  • 59213af 当前 2026-07-19 09:00

同 Skill 集合

plugins/claude-code-tools/skills/cc-cost-analysis/SKILL.md
plugins/claude-code-tools/skills/permissions-analyzer/SKILL.md
plugins/code-review-tools/skills/thermo-nuclear-code-review/SKILL.md
plugins/pr-tools/skills/attach-github-assets/SKILL.md
plugins/pr-tools/skills/create-pr/SKILL.md
plugins/security-tools/skills/secure-github-actions/SKILL.md
plugins/skill-tools/skills/skill-review/SKILL.md
plugins/test-tools/skills/fix-flaky-tests/SKILL.md

元信息

文件数
0
版本
59213af
Hash
2cf5f3a6
收录时间
2026-07-19 09:00

首页 - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-07-22 12:23
浙ICP备14020137号-1 $访客地图$