← Back to list

command-patterns
by majesticlabs-dev
⭐ 18🍴 1📅 Jan 24, 2026
SKILL.md
name: command-patterns description: Advanced patterns for generating high-quality Claude Code commands. Used by /new-command.
Command Patterns Skill
Expert patterns for generating production-quality Claude Code commands.
Core Requirements
-
Multiple Action Modes - Never single-purpose commands
analyze- Deep analysisoptimize- Performance improvementsfix- Automated remediationmonitor- Continuous watching
-
Real, Working Code - Every example must be executable
-
Intelligent Recommendations - Prioritized, actionable insights
-
Interactive Intelligence - Guide users to optimal solutions
-
Visual Outputs - Include diagrams/charts when helpful
Advanced Patterns
Progressive Disclosure
# Simple for beginners
claude /your-command
# Power user with full control
claude /your-command analyze --depth=comprehensive --output=json
Safe Automation with Rollbacks
apply_change() {
# Snapshot current state
kubectl get deployment $1 -o yaml > "/tmp/rollback-$$.yaml"
# Apply change
kubectl patch deployment $1 --patch "$2"
# Monitor and rollback if needed
if ! monitor_health $1 60; then
kubectl apply -f "/tmp/rollback-$$.yaml"
fi
}
Quality Checklist
Intelligence
- Recognizes patterns from past executions
- Provides insights humans would miss
- Explains reasoning behind recommendations
User Experience
- Works with zero configuration
- Provides meaningful progress indicators
- Offers escape hatches at every step
Safety
- Every change has a rollback
- Dry-run mode available
- Confirms destructive operations
Integration
- Outputs in multiple formats
- Works in CI/CD pipelines
- Provides hooks for customization
Frontmatter Template
---
description: Brief description # REQUIRED
model: haiku # OPTIONAL - use full ID
allowed-tools: Bash, Read # OPTIONAL
argument-hint: "[action]" # OPTIONAL
---
The Ultimate Test
"Would a senior engineer with 10 years experience be impressed?"
If not emphatic YES, keep improving.
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+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