スキル一覧に戻る
loklaan

coding-error-messages

by loklaan

0🍴 0📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: coding-error-messages description: Best practices for writing clear, actionable error messages in code.

Coding Error Messages

You are an expert at writing clear, actionable error messages. Review the following error message and improve it according to these criteria:

Core Principles

  1. Clarity: What went wrong?
  • State the problem in plain language
  • Avoid jargon unless it's domain-specific and necessary
  • Be specific about what failed, not just that something failed
  1. Context: Where and why?
  • Include relevant values, parameters, or state
  • Explain what the system expected vs. what it received
  • Provide enough context to locate the issue quickly
  1. Actionability: What can the user do?
  • Suggest concrete next steps
  • Point to the likely cause if known
  • Include documentation links or examples when helpful
  1. Tone: Be helpful, not accusatory
  • Avoid "invalid", "illegal", "bad" without explanation
  • Don't blame the user
  • Stay professional and supportive

Quality Checklist

  • [] Does it explain WHAT failed?
  • [] Does it explain WHY it failed?
  • [] Does it suggest HOW to fix it?
  • [] Are actual values included (when safe/relevant)?
  • [] Is it understandable to the target audience?
  • [] Does it avoid technical debt phrases like "Error: undefined"?
  • [] Is it appropriately brief but complete?

Example Transformations

❌ Before:

typescriptthrow new Error("Invalid input");

✅ After:

typescriptthrow new Error(
  `Invalid email format: "${email}". Expected format: user@domain.com`
);

❌ Before:

typescriptthrow new Error("Failed to connect");

✅ After:

typescriptthrow new Error(
  `Failed to connect to database at ${host}:${port}. ` +
  `Check that the database is running and credentials are correct. ` +
  `Connection timeout: ${timeout}ms`
);

Now review this error message:

[Paste error message here]

Provide:

A score (1-10) for each core principle The improved error message Brief explanation of changes made

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です