From skill-analyzer
skill / MCP / prompt 統合改善提案 markdown (削除 / 統合 / 圧縮の 3 候補 + token 節約見積)。Triggers: 改善提案, skill 整理, 最適化提案, token 削減提案, improvement proposal, skill cleanup suggestions, cost reduction suggestions
How this skill is triggered — by the user, by Claude, or both
Slash command
/skill-analyzer:improvement-proposalThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
`skill-analyzer` plugin の最終 skill。`skill-usage-report` + `mcp-usage-report` + `prompt-redundancy-check` の 3 出力を統合し、優先順位付き改善提案 markdown を生成する。
skill-analyzer plugin の最終 skill。skill-usage-report + mcp-usage-report + prompt-redundancy-check の 3 出力を統合し、優先順位付き改善提案 markdown を生成する。
削除候補 (Deletion):
統合候補 (Consolidation):
REDUNDANCY_MIN_BYTES) の file ペア@import で参照圧縮候補 (Compression):
genshijin-compress 等で圧縮、または手動で 50% 削減対象期間 + 解析対象決定:
--since / --until 省略)$(pwd) 配下統合提案生成:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/proposal-generator.sh" \
--since 2026-05-01 --until 2026-05-08 \
--target /path/to/project
price-table 連携 (option、$ 節約額の精度向上):
bash "${CLAUDE_PLUGIN_ROOT}/scripts/proposal-generator.sh" \
--since ... --until ... --target ... \
--price-table $HOME/.claude/plugins/cost-monitor/scripts/price-table.json
または env で:
export PRICE_TABLE_PATH=$HOME/.claude/plugins/cost-monitor/scripts/price-table.json
出力 markdown をユーザーに表示。 ファイル保存推奨:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/proposal-generator.sh" ... > improvement-proposal.md
共有用 (受講者向け、サニタイズ済み):
bash "${CLAUDE_PLUGIN_ROOT}/scripts/proposal-generator.sh" ... \
--export ./share/
提案 markdown は 直接実行スクリプトではなく チェックリスト。 安全に適用するには:
skillOverrides で 1 週間 off に → 業務影響 0 確認後に物理削除/genshijin-compress で原始人モード圧縮 → 動作確認 → コミット自動適用に関する注意: Phase 3 cost-optimizer plugin は settings.json の Bash perms / 壊れた hook / env キー整理のみ を提供 (settings-optimize skill)。skill / MCP の削除候補や圧縮候補の自動適用は 未実装 (削除は手動 dry-run、圧縮は /genshijin-compress skill による手動圧縮)。本提案 markdown は チェックリスト であり、実行スクリプトではない。
# skill-analyzer improvement proposal
_period_: 2026-05-06 → 2026-05-08
_blended_price_: $9/M tokens
## 1. Deletion candidates
### Skills with 0 explicit Skill-tool invocations
| skill | est. tokens | est. monthly savings if removed |
|---|---:|---:|
| `<example-skill-A>` | 4,297 | $0.04 |
| `<example-skill-B>` | 3,449 | $0.03 |
| ...
## 2. Consolidation candidates (n-gram overlap)
| file A | file B | overlap (bytes) |
|---|---|---:|
| `.claude/skills/commit/SKILL.md` | `plugins/dev-workflow/skills/commit/SKILL.md` | 2,836 |
| ...
## 3. Compression candidates
| file | tokens | invocations | est. savings if -50% |
|---|---:|---:|---:|
| `plugins/<your-plugin>/skills/<your-skill>/SKILL.md` | 4,297 | 0 | $0.02 |
| ...
cost-monitor (Phase 1): 実 cost 値を提供、 $ 節約額推定の精度向上cost-optimizer (Phase 3): settings.json の Bash perms / 壊れた hook / env キー整理 (削除候補・圧縮候補の自動適用は未実装、手動レビュー前提)genshijin-compress (genshijin plugin): 圧縮候補の実適用ツール (手動起動)npx claudepluginhub arkatom/claude-plugins --plugin skill-analyzerCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.