CC-SK-002: Invalid Context Value - Claude Skills
Summary
- Rule ID:
CC-SK-002 - Severity:
HIGH - Category:
Claude Skills - Normative Level:
MUST - Auto-Fix:
Yes (unsafe) - Verified On:
2026-02-04
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: parallel-task
description: Use when running tasks in parallel
context: spawn
agent: general-purpose
---
Run the task in a spawned context.
Valid
---
name: parallel-task
description: Use when running tasks in parallel
context: fork
agent: general-purpose
---
Run the task in a forked context.