CC-SK-007: Unrestricted Bash - Claude Skills
Summary
- Rule ID:
CC-SK-007 - Severity:
MEDIUM - Category:
Claude Skills - Normative Level:
SHOULD - Auto-Fix:
Yes (unsafe) - Verified On:
2026-02-09
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: git-status
description: Use when checking git status
allowed-tools: Bash, Read
---
Run git status and read the output.
Valid
---
name: git-status
description: Use when checking git status
allowed-tools: Bash(git:*), Read
---
Run git status and read the output.