Agent skill
convex-components-guide
Use Convex components for encapsulation, reuse, and feature isolation. Use when deciding between local code, helpers, and components.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/convex-components-guide
Metadata
Additional technical details for this skill
- author
- agentforge
- source
- get-convex/convex-agent-plugins@f104efb49a787a1ef4a6c84df496d58800ce334a
SKILL.md
Convex Components Guide
Use this when the task involves reusable backend capabilities or when a feature is growing too monolithic.
Prefer components for
- feature encapsulation,
- reusable infrastructure-like backend capabilities,
- isolated integrations,
- sibling services such as storage, billing, analytics, notifications, or AI-support utilities.
Do not overuse components for
- trivial one-off helpers,
- tightly coupled core domain logic that is simpler as local app code.
Decision rule
- If the capability should be reusable or independently maintained, consider a component.
- If the capability is just a few local helpers, keep it in app code or use
convex-helpers.
References
- Read components-catalog.md for examples and selection guidance.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?