Claude Skills vs Projects vs Plugins: Which Feature to
By Dorian Laurenceau
Claude Skills vs Projects vs Plugins: Which Feature to Choose?
📅 Last reviewed: April 24, 2026. Updated with April 2026 findings and community feedback.
📚 Related articles: Skills User Guide | Building Skills, Technical Guide | Cowork Plugins
Overview: The 4 Features
Claude offers four customization mechanisms, each with a different scope:
| Feature | Scope | Persistence | Activation |
|---|---|---|---|
| Custom Instructions | Global | Permanent | Always active |
| Projects | Per project | Persistent | Manual (open the project) |
| Skills | Per task | On demand | Automatic (trigger) |
| Plugins | Per service | Installed | Manual or automatic |
The honest read on Claude's four customization layers, tracked across r/ClaudeAI, r/Anthropic, and the Anthropic Skills documentation: most users pick the wrong layer for their problem the first time, and the resulting frustration is usually blamed on the model. The canonical mistake is putting everything in Custom Instructions — because it's the first thing you see — until the instructions balloon past 1,500 tokens and Claude starts ignoring the middle of them (lost-in-the-middle again, Liu et al., 2023).
Where the community correctly pushes back on the "just use Skills for everything" take: Skills are the newest layer and they're excellent for deterministic, procedure-heavy tasks — but they require discipline to write (good YAML frontmatter, scoped triggers, clean references) and they don't replace the other three layers. The right mental model from people who've built real automation stacks: Custom Instructions for who you are, Projects for what you're working on, Skills for how to do a specific task, Plugins/MCP for what external systems you can reach. Mix up those axes and your setup will feel "almost working" forever.
Pragmatic rule: start with Custom Instructions, move repeated context into a Project, extract deterministic procedures into Skills, and add Plugins/MCP servers only when you need real data access. Adding the layers in reverse order is how people end up with brittle stacks that nobody else on the team can use.
Detailed Comparison Table
| Criterion | Custom Instructions | Projects | Skills | Plugins |
|---|---|---|---|---|
| Description | Global preferences applied to all conversations | Workspaces with shared context and files | Modular packages of specialized procedures | Connections to external services and APIs |
| Complexity | ⭐ Simple | ⭐⭐ Medium | ⭐⭐⭐ Advanced | ⭐⭐ Medium |
| Reusability | Global | Per project | Multi-project | Multi-context |
| Sharing | No | Team (Enterprise) | Marketplace / GitHub | Catalog |
| Attached files | No | Yes (PDFs, docs) | Yes (scripts, refs) | No (APIs) |
| Executable scripts | No | No | Yes | Via API |
| Automatic trigger | Always | No | Yes | Configurable |
| Versioning | No | No | Yes (semver) | By provider |
| API access | Limited | Yes | Yes | Yes |
| Typical use case | "Always respond in English" | "Website redesign project" | "Code review with checklist" | "Search Google Drive" |
When to Use Each Feature
Custom Instructions, Global Preferences
Use when: you want behaviors applied to all conversations.
Examples:
- →"Always respond in formal English"
- →"Use 2-space indentation for code"
- →"I'm a senior Python developer"
- →"Include code examples in every answer"
Limitations:
- →No attached files
- →No conditional logic
- →No scripts
- →Loaded for every conversation (wastes tokens if too long)
Projects, Workspaces
Use when: you're working on a long-term topic requiring shared context.
Examples:
- →Writing a book (chapters as files)
- →Developing an application (specs, architecture)
- →Academic research (papers, notes)
- →Project management (roadmap, meeting notes)
Limitations:
- →Static context (files are not auto-updated)
- →No automatic trigger
- →No executable scripts
Skills, Specialized Procedures
Use when: you have recurring tasks requiring a structured procedure.
Examples:
- →Code review with quality checklist
- →Content writing with brand voice
- →Data analysis with standardized reports
- →Technical documentation generation
Limitations:
- →Requires initial creation effort
- →Trigger must be well-calibrated
- →May not fire on ambiguous requests
Plugins, External Connections
Use when: you need external data or actions in third-party services.
Examples:
- →Search Google Drive / Notion
- →Send Slack messages
- →REST API queries
- →Database reads
Limitations:
- →Depends on plugin availability
- →Sensitive data passes through the plugin
- →Network latency
Decision Tree
Use this guide to choose the right feature:
Combining Features
The real power comes from combining them:
Example 1: Full-Stack Developer
| Layer | Feature | Configuration |
|---|---|---|
| Global | Custom Instructions | "I'm a TypeScript/React dev, use ESLint" |
| Project | Project | "E-commerce redesign, specs, architecture, components" |
| Task | Skill | "Code Reviewer" with quality checklist |
| External | Plugin | "GitHub Integration" to read issues |
Example 2: Marketing Writer
| Layer | Feature | Configuration |
|---|---|---|
| Global | Custom Instructions | "Write in professional tone, US English" |
| Project | Project | "Q2 2026 Campaign, brief, assets, calendar" |
| Task | Skill | "Brand Writer" with voice guide |
| External | Plugin | "Google Analytics" for metrics |
Example 3: Data Analyst
| Layer | Feature | Configuration |
|---|---|---|
| Global | Custom Instructions | "Always display statistics in tables" |
| Project | Project | "Customer retention analysis, datasets, reports" |
| Task | Skill | "Data Profiler" with automatic reporting |
| External | Plugin | "SQL Connector" for DB queries |
Concrete Use Cases
Case 1: "I want Claude to code like my team"
| Option | Suitable? | Why |
|---|---|---|
| Custom Instructions | ⚠️ Partially | Good for basic preferences (indentation, naming) |
| Project | ⚠️ Partially | Good for sharing guidelines as files |
| Skills | ✅ Ideal | Review checklist, lint scripts, PR templates |
| Plugins | ❌ No | No external service connection needed |
Case 2: "I want to connect Claude to our Notion"
| Option | Suitable? | Why |
|---|---|---|
| Custom Instructions | ❌ No | No access to external services |
| Project | ❌ No | Static files only |
| Skills | ❌ No | No native API connection |
| Plugins | ✅ Ideal | Notion plugin to read/write pages |
Case 3: "I'm writing a 100-page thesis"
| Option | Suitable? | Why |
|---|---|---|
| Custom Instructions | ⚠️ Supplement | Academic style preferences |
| Project | ✅ Ideal | Chapters, sources, notes as shared files |
| Skills | ⚠️ Supplement | "Academic Writer" Skill for formatting |
| Plugins | ⚠️ Optional | Zotero plugin for citations |
Limitations Summary Table
| Limitation | Custom Instructions | Projects | Skills | Plugins |
|---|---|---|---|---|
| Attached files | ❌ | ✅ | ✅ | ❌ |
| Executable scripts | ❌ | ❌ | ✅ | ❌ |
| Dynamic data | ❌ | ❌ | ❌ | ✅ |
| Automatic trigger | ✅ (always) | ❌ | ✅ | ⚠️ |
| Marketplace sharing | ❌ | ❌ | ✅ | ✅ |
| Setup effort | ⭐ | ⭐⭐ | ⭐⭐⭐ | ⭐ |
| Versioning | ❌ | ❌ | ✅ | ✅ |
In Summary
There's no "best" feature, each answers a specific need. The key is combining them intelligently:
- →Custom Instructions for your permanent preferences
- →Projects for your lasting work contexts
- →Skills for your reusable specialized procedures
- →Plugins for your external service connections
Start simple (Custom Instructions), then add layers as your needs grow.
Next steps:
- →Create your first Skill with our user guide
- →Discover available Cowork plugins
- →Read the technical Skills guide for developers
Module 0 — Prompting Fundamentals
Build your first effective prompts from scratch with hands-on exercises.
Dorian Laurenceau
Full-Stack Developer & Learning DesignerFull-stack web developer and learning designer. I spent 4 years as a freelance full-stack developer and 4 years teaching React, JavaScript, HTML/CSS and WordPress to adult learners. Today I design learning paths in web development and AI, grounded in learning science. I founded learn-prompting.fr to make AI practical and accessible, and built the Bluff app to gamify political transparency.
Weekly AI Insights
Tools, techniques & news — curated for AI practitioners. Free, no spam.
Free, no spam. Unsubscribe anytime.
→Related Articles
FAQ
What's the main difference between Skills and Projects?+
Skills are modular packages with automatic triggers that activate on demand. Projects are persistent workspaces with shared context for organizing files and conversations around a topic.
Can you combine Skills and Projects?+
Yes, and it's recommended. You can attach Skills to a Project to benefit from the project's persistent context and the Skills' specialized procedures.
Are Plugins different from Skills?+
Yes. Plugins connect Claude to external services (Google Drive, Slack, etc.) via APIs. Skills add internal procedures and knowledge. They are complementary.
Do Custom Instructions still exist?+
Yes, but they are now considered the simplest form of customization. For advanced needs, Skills offer more structure and maintainability.
How do I choose between these features?+
Use Custom Instructions for global preferences, Projects for contextual work, Skills for reusable specialized procedures, and Plugins for connecting external services.