Agent skill
marten__composite_projection
Create a Marten Composite Projection to chain multiple projections or group them for performance. Use this when you need to use the output of one projection as the input for another, or to optimize daemon throughput.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/marten-composite-projection
SKILL.md
Follow this guide to create a Composite Projection in Marten (v8.18+).
-
Define the Projection Class
- Create a
classinsrc/BookStore.ApiService/Projections/ - Naming:
{Summary}Projection(typically a View Projection) - Base Class:
MultiStreamProjection<T, TId>(usually) or custom. - Template:
templates/Projection.cs
- Create a
-
Configure in Marten
- Open
src/BookStore.ApiService/Infrastructure/Extensions/MartenConfigurationExtensions.cs - Register using
CompositeProjectionFor:csharpoptions.Projections.CompositeProjectionFor("GroupDetails", projection => { // Stage 1: Basic Projections projection.Add<UserProjection>(); projection.Add<OrderProjection>(); // Stage 2: Dependent Projections (inputs from Stage 1) projection.Add<UserDashboardProjection>(2); });
- Open
-
Indexing
- Configure indexes as usual in
ConfigureIndexes.
- Configure indexes as usual in
Related Skills
/marten__multi_stream_projection: For standard multi-stream aggregates./marten__single_stream_projection: For standard single-stream aggregates.
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?