jpskill.com
📦 その他 コミュニティ 🟡 少し慣れが必要 👤 幅広いユーザー

📦 Improve

improve

タスク完了後や引き継ぎ前に、セッションの観察に基づいた具体的な改善提案を生成するSkill。

⏱ 手作業のあれこれ 1日 → 1時間

📺 まず動画で見る(YouTube)

▶ 【Claude Code完全入門】誰でも使える/Skills活用法/経営者こそ使うべき ↗

※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。

📜 元の英語説明(参考)

Use after completing a task, before claiming done, before handoff, or when asked "what are some improvements?" Surfaces concrete suggestions grounded in session observations.

🇯🇵 日本人クリエイター向け解説

一言でいうと

タスク完了後や引き継ぎ前に、セッションの観察に基づいた具体的な改善提案を生成するSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-17
取得日時
2026-05-17
同梱ファイル
1

💬 こう話しかけるだけ — サンプルプロンプト

  • Improve の使い方を教えて
  • Improve で何ができるか具体例で見せて
  • Improve を初めて使う人向けにステップを案内して

これをClaude Code に貼るだけで、このSkillが自動発動します。

📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

Improve

Structured improvement pass grounded in what was observed during this session.

Principles (Always Active)

  • Every suggestion must cite a specific observation — file path, error seen, pattern noticed, or behavior verified. "I saw X" beats "common practice suggests Y."
  • Distinguish grounded suggestions (observed evidence) from speculative ones (general knowledge). Mark speculative suggestions explicitly.
  • Prioritize by impact to the user, not by ease of description.
  • Do not suggest improvements that would change public API contracts, auth boundaries, or data schemas without flagging as high-risk.
  • Simplicity is a feature. Do not suggest adding complexity unless it prevents a concrete problem observed in this session.

When to Use

  • User asks "knowing what you know now, what are some improvements?" or similar
  • Before claiming done in a ralph loop (self-check)
  • Before generating a handoff
  • After completing a significant chunk of work
  • When reviewing code that was just written or modified

When Not to Use

  • At the start of a session before meaningful work has been done
  • When the user explicitly asks to skip review and ship
  • For architectural redesigns (use spec/plan flow instead)

Dimensions

Analyze across these dimensions. Skip any dimension with nothing grounded to say.

Correctness

Error handling gaps, unhandled edge cases, type safety issues, race conditions, missing validation at system boundaries.

Simplicity

Unnecessary indirection, dead code, naming that obscures intent, over-engineered abstractions, complexity that doesn't earn its keep. Reference the simplify skill for implementation.

Security

Auth boundary gaps, input validation holes, secret handling issues, OWASP concerns observed in touched code.

Test Coverage

Untested code paths observed during the session, missing test layers (unit/integration/e2e), fixture realism gaps, assertions that don't verify meaningful behavior.

Performance

Bottlenecks observed during the session (slow queries, N+1 patterns, unnecessary recomputation). Only flag what was actually observed, not hypothetical.

Developer Experience

API ergonomics issues, missing documentation for non-obvious behavior, CLI friction, configuration that should be extracted.

Workflow

  1. Gather context: Review what happened this session — files changed, commands run, errors encountered, tests written, patterns established.

  2. Analyze each dimension: For each, check whether session observations surface anything concrete. Skip dimensions with nothing to say.

  3. Structure each suggestion:

[IMP-N] effort/gate: summary
  Observation: what was seen (file:line, error message, test gap, etc.)
  Suggestion: concrete change
  Grounded: yes/no

Where:

  • effort: trivial (< 5 min) | small (< 30 min) | medium (hours)
  • gate: which delivery gate this strengthens: TDD | DEV | E2E | REVIEW | CI
  1. Sort by impact (highest first), not by dimension.

  2. Present as actionable list. If in a ralph loop, address trivial/small improvements inline before claiming done. Log medium improvements as decisions for the user to prioritize.

Integration with Ralph Loops

When running inside a ralph loop (.rl/state.json exists):

  • Run the improvement pass before .rl/rl done
  • Address trivial improvements inline — just fix them
  • Address small improvements if they're within the current milestone scope
  • Log medium improvements: .rl/rl log decision "IMP-N deferred: [reason]"
  • Do not expand scope beyond the task's milestones for medium improvements

Integration with Handoffs

When generating a handoff, include unaddressed improvements in the <next_steps> section. Use the same [IMP-N] format so the receiving agent can reference them.

Output Format

## Improvements

N suggestions (X grounded, Y speculative)

[IMP-1] trivial/DEV: Extract magic number to config constant
  Observation: `src/server.ts:42` uses hardcoded port 3000, but other services read from env
  Suggestion: Read from `PORT` env var with 3000 as default
  Grounded: yes

[IMP-2] small/TDD: Add boundary test for empty input
  Observation: `processItems([])` path untested — saw it handle non-empty arrays only in test suite
  Suggestion: Add test case for empty array input in `process-items.test.ts`
  Grounded: yes

[IMP-3] medium/E2E: Add timeout handling for external API calls
  Observation: Catalog search took 1.2s avg in profiling — no timeout configured
  Suggestion: Add configurable timeout with bounded retry
  Grounded: yes

Red Flags

  • Suggestions without observations — if you can't point to something specific, don't suggest it
  • More than 10 suggestions — focus on the top 5-7 by impact
  • Suggestions that expand scope beyond what was touched — stay within the blast radius of the current work
  • Generic "add more tests" without specifying which paths are untested