Self-contained mini-backends that bundle schema, functions, and data with clear API boundaries.
Works with
Components encapsulate features like storage, payments, and notifications as reusable backend modules, reducing monolithic code and improving maintainability
Sibling components pattern allows multiple components to work together at the same level, with the main app orchestrating calls across them
Official component library includes authentication, storage, payments, AI, and utility compone
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versioncomponents-guideExecute the skills CLI command in your project's root directory to begin installation:
Fetches components-guide from get-convex/agent-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate components-guide. Access via /components-guide in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
21
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
21
stars
Use components to encapsulate features and build maintainable, reusable backends.
Components are self-contained mini-backends that bundle:
Think of them as: npm packages for your backend, or microservices without the deployment complexity.
convex/
users.ts (500 lines)
files.ts (600 lines - upload, storage, permissions, rate limiting)
payments.ts (400 lines - Stripe, webhooks, billing)
notifications.ts (300 lines)
analytics.ts (200 lines)
Total: One big codebase, everything mixed together
convex/
components/
storage/ (File uploads - reusable)
billing/ (Payments - reusable)
notifications/ (Alerts - reusable)
analytics/ (Tracking - reusable)
convex.config.ts (Wire components together)
domain/ (Your actual business logic)
users.ts (50 lines - uses components)
projects.ts (75 lines - uses components)
Total: Clean, focused, reusable
# Official components from npm
npm install @convex-dev/ratelimiter
import { defineApp } from "convex/server";
import ratelimiter from "@convex-dev/ratelimiter/convex.config";
export default defineApp({
components: {
ratelimiter,
},
});
import { components } from "./_generated/api";
export const createPost = mutation({
handler: async (ctx, args) => {
// Use the component
await components.ratelimiter.check(ctx, {
key: `user:${ctx.user._id}`,
limit: 10,
period: 60000, // 10 requests per minute
});
return await ctx.db.insert("posts", args);
},
});
Multiple components working together at the same level:
// convex.config.ts
export default defineApp({
components: {
// Sibling components - each handles one concern
auth: authComponent,
storage: storageComponent,
payments: paymentsComponent,
emails: emailComponent,
analytics: analyticsComponent,
},
});
// convex/subscriptions.ts
import { components } from "./_generated/api";
export const subscribe = mutation({
args: { plan: v.string() },
handler: async (ctx, args) => {
// 1. Verify authentication (auth component)
const user = await components.auth.getCurrentUser(ctx);
// 2. Create payment (payments component)
const subscription = await components.payments.createSubscription(ctx, {
userId: user._id,
plan: args.plan,
amount: getPlanAmount(args.plan),
});
// 3. Track conversion (analytics component)
await components.analytics.track(ctx, {
event: "subscription_created",
userId: user._id,
plan: args.plan,
});
// 4. Send confirmation (emails component)
await components.emails.send(ctx, {
to: user.email,
template: "subscription_welcome",
data: { plan: args.plan },
});
// 5. Store subscription in main app
await ctx.db.insert("subscriptions", {
userId: user._id,
paymentId: subscription.id,
plan: args.plan,
status: "active",
});
return subscription;
},
});
Browse Component Directory:
Good reasons:
Not good reasons:
mkdir -p convex/components/notifications
// convex/components/notifications/convex.config.ts
import { defineComponent } from "convex/server";
export default defineComponent("notifications");
// convex/components/notifications/schema.ts
import { defineSchema, defineTable } from "convex/server";
import { v } from "convex/values";
export default defineSchema({
notifications: defineTable({
userId: v.id("users"),
message: v.string(),
read: v.boolean(),
createdAt: v.number(),
})
.index("by_user", ["userId"])
.index("by_user_and_read", ["userId", "read"]),
});
// convex/components/notifications/send.ts
import { mutation } from "./_generated/server";
import { v } from Implementation Guide
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Steps
- 1Install skill using provided installation command
- 2Test with simple use case relevant to your work
- 3Evaluate output quality and relevance
- 4Iterate on prompts to improve results
- 5Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Related Skills
frontend-design
633anthropics/claude-code
Frontendsame categoryui-animation
230mblode/agent-skills
Frontendsame categorypremium-frontend-ui
228github/awesome-copilot
Frontendsame categoryhigh-end-visual-design
183leonxlnx/taste-skill
Frontendsame categoryantigravity-design-expert
182sickn33/antigravity-awesome-skills
Frontendsame categoryinterior-design-expert
133erichowens/some_claude_skills
Frontendsame categoryReviews
4.7★★★★★65 reviews- HHenry Thompson★★★★★Dec 28, 2024
Useful defaults in components-guide — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- AAdvait Nasser★★★★★Dec 24, 2024
Solid pick for teams standardizing on skills: components-guide is focused, and the summary matches what you get after install.
- HHenry Bhatia★★★★★Dec 16, 2024
components-guide is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- OOlivia Johnson★★★★★Dec 8, 2024
Keeps context tight: components-guide is the kind of skill you can hand to a new teammate without a long onboarding doc.
- CCharlotte Sethi★★★★★Nov 27, 2024
I recommend components-guide for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- LLayla Ndlovu★★★★★Nov 19, 2024
components-guide is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- JJames Iyer★★★★★Nov 7, 2024
Useful defaults in components-guide — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- JJames Robinson★★★★★Oct 26, 2024
I recommend components-guide for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- CCharlotte Taylor★★★★★Oct 18, 2024
Useful defaults in components-guide — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- KKofi Shah★★★★★Oct 10, 2024
Keeps context tight: components-guide is the kind of skill you can hand to a new teammate without a long onboarding doc.
showing 1-10 of 65
1 / 7Discussion
Comments — not star reviews- No comments yet — start the thread.