CC-SK-012: Argument Hint Without $ARGUMENTS - Claude Skills
Summary
- Rule ID:
CC-SK-012 - Severity:
MEDIUM - Category:
Claude Skills - Normative Level:
SHOULD - Auto-Fix:
No - Verified On:
2026-02-07
Applicability
- Tool:
claude-code - Version Range:
unspecified - Spec Revision:
unspecified
Evidence Sources
Test Coverage Metadata
- Unit tests:
true - Fixture tests:
true - E2E tests:
false
Examples
The following examples demonstrate what triggers this rule and how to fix it.
Invalid
---
name: greet-user
description: Use when greeting a user by name
argument-hint: Enter the user's name
---
Greet the user with a friendly message.
Valid
---
name: greet-user
description: Use when greeting a user by name
argument-hint: Enter the user's name
---
Greet the user: Hello, $ARGUMENTS!