<< All versions
Skill v1.0.2
currentAutomated scan100/100a5c-ai/babysitter/error-messages
~4 modified
──Details
PublishedJune 30, 2026 at 10:11 AM
Content Hashsha256:83c08fa07b01cfa4...
Git SHA0c70bfb344b9
Bump Typepatch
──Files
Files (1 file, 1.9 KB)
SKILL.md1.9 KBactive
SKILL.md · 79 lines · 1.9 KB
version: "1.0.2" name: Error Messages description: Expert skill for designing and implementing high-quality compiler error messages category: User Experience allowed-tools:
- Read
- Write
- Edit
- Glob
- Grep
- Bash
graph: domains: [domain:software-engineering] specializations: [specialization:programming-languages] skillAreas: [skill-area:compiler-implementation, skill-area:language-design] roles: [role:backend-engineer]
Error Messages Skill
Overview
Expert skill for designing and implementing high-quality compiler error messages.
Capabilities
- Design clear, actionable error message templates
- Implement source context display with underlines
- Generate fix suggestions and quick fixes
- Handle error cascades and suppression
- Implement multi-span error annotations
- Support machine-readable error output (JSON)
- Implement color/styled terminal output
- Design error recovery strategies for better diagnostics
Target Processes
- error-message-enhancement.js
- parser-development.js
- type-system-implementation.js
- semantic-analysis.js
- lsp-server-implementation.js
Dependencies
Elm/Rust error message guidelines
Usage Guidelines
- Clarity: Make error messages clear and actionable
- Context: Show relevant source code context with precise location
- Suggestions: Provide fix suggestions when possible
- Cascades: Suppress cascading errors to avoid overwhelming users
- Machine-Readable: Support JSON output for tooling integration
Output Schema
json
{"type": "object","properties": {"errorFormat": {"type": "string","enum": ["human", "json", "sarif"]},"features": {"type": "array","items": { "type": "string" }},"colorSupport": { "type": "boolean" },"generatedFiles": {"type": "array","items": { "type": "string" }}}}