← Back to list

workspace-spec-linter
by hohai99
⭐ 0🍴 1📅 Jan 22, 2026
SKILL.md
name: workspace-spec-linter description: Lints specifications against project-specific rules to detect ambiguity, enforce structure, and ensure testability. Use before spec freeze. triggers: [pre-implementation, migration-planning, spec-review] outputs: [lint-report, ambiguity-log]
Workspace Spec Linter
Purpose
Ensures that specifications are high-quality, unambiguous, and ready for implementation. This skill prevents downstream errors caused by vague or contradictory requirements.
When to use this skill
- Before implementation starts
- During migration design phases
- When reviewing specification updates
Linting Steps
- Detect Ambiguity: Look for words like "maybe", "approximately", "should probably". Replace with absolute constraints.
- Enforce Project Structure: Ensure the spec follows the spec-template.
- Flag Missing Decisions: Identify any [ ] Open Questions that haven't been resolved.
- Ensure Testability: Verify that every behavior has a clear "Expected Outcome" that can be asserted in a test.
Decision Tree
flowchart TD
A[Start Linter] --> B{Structure Correct?}
B -->|No| C[Flag Structure Violation]
B -->|Yes| D{Any Ambiguity?}
D -->|Yes| E[Log Ambiguity Warnings]
D -->|No| F{Open Questions?}
F -->|Yes| G[Flag Blocked Spec]
F -->|No| H[Approve Spec for Freeze]
Review Checklist
- Completeness: Are all critical paths covered?
- Clarity: Could a developer implement this without asking a question?
- Traceability: Does every requirement have a unique ID?
- Consistency: Does it contradict any existing specs?
How to provide feedback
- Be specific: Instead of "Spec is vague", say "The rate limit in AUTH-001 is not specified."
- Explain why: "Without a specific limit, the self-test-generator cannot assert correct behavior."
- Suggest alternatives: "Suggest adding '5 requests per 60 seconds' to clause AUTH-001."
If spec is unclear, implementation must stop.
Score
Total Score
50/100
Based on repository quality metrics
✓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
Reviews
💬
Reviews coming soon