claude-code-features
Guide for distinguishing Claude Code features (Commands, Skills, Agents, Hooks, Rules) and selection criteria. Use when decomposing context files, deciding where to add new features, or customizing Claude Code.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install masseater-claude-code-plugin-claude-code-features
Repository
Skill path: plugins/mutils/skills/claude-code-features
Guide for distinguishing Claude Code features (Commands, Skills, Agents, Hooks, Rules) and selection criteria. Use when decomposing context files, deciding where to add new features, or customizing Claude Code.
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: masseater.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install claude-code-features into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/masseater/claude-code-plugin before adding claude-code-features to shared team environments
- Use claude-code-features for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
--- name: claude-code-features description: Guide for distinguishing Claude Code features (Commands, Skills, Agents, Hooks, Rules) and selection criteria. Use when decomposing context files, deciding where to add new features, or customizing Claude Code. --- # Claude Code Features Guide Guide for choosing between 5 major Claude Code features. ## Feature Overview | Feature | Trigger | Essence | Best For | |---------|---------|---------|----------| | **Commands** | Manual (`/command`) | Inject saved prompts instantly | Repeatable **standard workflows** by user execute | | **Skills** | Auto (Claude decides) | Knowledge loaded on demand | **On-demand knowledge** (tool usage, guidelines) | | **Agents** | Manual/delegation | Specialists with independent context | **Bulk data processing** & parallel tasks | | **Hooks** | Event-driven | Shell scripts auto-executed around tools | **Deterministic automation** | | **Rules** | Conditional/always | Modularized rules | **Path-conditional constraints** | ## Decision Flowchart ``` 1. "Should it auto-execute on events like file edits?" → Yes: Hooks (implement as shell commands) 2. "Needs independent context for bulk data processing?" → Yes: Agents (don't pollute main conversation) 3. "Knowledge not always needed, but should surface when relevant?" → Yes: Skills (tool usage guides, domain expertise, patterns) 4. "Standard procedure user explicitly executes?" → Yes: Commands (instant /command execution) 5. "Constraints for specific paths or entire project?" → Yes: Rules (conditional with paths:) 6. Cannot classify → Keep in CLAUDE.md ``` ## Feature Details - @./commands.md - @./skills.md - @./agents.md - @./hooks.md - @./rules.md ## References @./references.md