meta__cheat_sheet — event sourcing meta__cheat_sheet, BookStore, aalmada, community, event sourcing, ai agent skill, ide skills, agent automation, CQRS architecture, Blazor development, Wolverine integration, Postgres database

v1.0.0
GitHub

About this Skill

Perfect for Full-Stack Agents needing event-sourced backend API and Blazor frontend development capabilities. meta__cheat_sheet is a .NET application that demonstrates event-sourced architecture with CQRS and Blazor

Features

Event-sourced backend API
Blazor frontend
CQRS architecture
Wolverine integration
Postgres database support
Marten event sourcing

# Core Topics

aalmada aalmada
[15]
[0]
Updated: 3/10/2026

Quality Score

Top 5%
36
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
> npx killer-skills add aalmada/BookStore/meta__cheat_sheet
Supports 19+ Platforms
Cursor
Windsurf
VS Code
Trae
Claude
OpenClaw
+12 more

Agent Capability Analysis

The meta__cheat_sheet skill by aalmada is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for event sourcing, CQRS architecture, Blazor development.

Ideal Agent Persona

Perfect for Full-Stack Agents needing event-sourced backend API and Blazor frontend development capabilities.

Core Value

Empowers agents to develop scalable .NET applications using CQRS, event sourcing, and Wolverine, providing a robust framework for managing complex data workflows and event-driven architectures with Guid-based IDs and UTC timestamps.

Capabilities Granted for meta__cheat_sheet

Implementing event-sourced backend APIs with CQRS
Developing Blazor frontend applications with real-time data updates
Generating unique IDs using UUIDv7 and handling UTC timestamps

! Prerequisites & Limits

  • .NET framework required
  • Blazor and Wolverine dependencies needed
  • Event sourcing and CQRS patterns must be understood
SKILL.md
Readonly

BookStore Cheat Sheet

IDs & Timestamps

csharp
1var id = Guid.CreateVersion7(); // ✅ UUIDv7 2var now = DateTimeOffset.UtcNow; // ✅ UTC timestamp

Event (past tense, record)

csharp
1public record BookAdded(Guid Id, string Title, decimal Price);

Command (record)

csharp
1public record AddBookCommand(string Title, decimal Price);

Aggregate Apply Method

csharp
1public void Apply(BookAdded @event) 2{ 3 Id = @event.Id; 4 Title = @event.Title; 5}

Handler (static, Wolverine)

csharp
1public static class AddBookHandler 2{ 3 public static BookAdded Handle(AddBookCommand cmd) => 4 new(Guid.CreateVersion7(), cmd.Title, cmd.Price); 5}

HybridCache Query

csharp
1var result = await cache.GetOrCreateAsync( 2 $"books:{culture}", 3 async ct => await session.Query<BookProjection>().ToListAsync(ct), 4 tags: [CacheTags.BookList], 5 cancellationToken: ct);

Cache Invalidation

csharp
1await cache.RemoveByTagAsync(CacheTags.BookList, ct);

SSE Notification

csharp
1public record BookUpdatedNotification(Guid Id) : IDomainEventNotification;

TUnit Test

csharp
1[Test] 2public async Task Should_Create_Book() 3{ 4 var result = await client.CreateBookAsync(request); 5 await Assert.That(result.Id).IsNotNull(); 6}

Namespace

csharp
1namespace BookStore.ApiService.Handlers; // ✅ File-scoped

Related Skills

  • /wolverine__guide - All Wolverine write operations (create, update, delete)
  • /marten__guide - Aggregates, projections, and query endpoints

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is meta__cheat_sheet?

Perfect for Full-Stack Agents needing event-sourced backend API and Blazor frontend development capabilities. meta__cheat_sheet is a .NET application that demonstrates event-sourced architecture with CQRS and Blazor

How do I install meta__cheat_sheet?

Run the command: npx killer-skills add aalmada/BookStore/meta__cheat_sheet. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for meta__cheat_sheet?

Key use cases include: Implementing event-sourced backend APIs with CQRS, Developing Blazor frontend applications with real-time data updates, Generating unique IDs using UUIDv7 and handling UTC timestamps.

Which IDEs are compatible with meta__cheat_sheet?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for meta__cheat_sheet?

.NET framework required. Blazor and Wolverine dependencies needed. Event sourcing and CQRS patterns must be understood.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add aalmada/BookStore/meta__cheat_sheet. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use meta__cheat_sheet immediately in the current project.

Related Skills

Looking for an alternative to meta__cheat_sheet or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
Design

linear

Logo of lobehub
lobehub

Linear issue management. MUST USE when: (1) user mentions LOBE-xxx issue IDs (e.g. LOBE-4540), (2) user says linear, linear issue, link linear, (3) creating PRs that reference Linear issues. Provides

73.4k
0
Communication

testing

Logo of lobehub
lobehub

Testing guide using Vitest. Use when writing tests (.test.ts, .test.tsx), fixing failing tests, improving test coverage, or debugging test issues. Triggers on test creation, test debugging, mock setup

73.3k
0
Communication

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication