meta__cheat_sheet — aspire meta__cheat_sheet, BookStore, community, aspire, ide skills, aspire-dotnet, blazor, dotnet, dotnet-core, dotnetcore, Claude Code

v1.0.0

À propos de ce Skill

Parfait pour les agents Full-Stack nécessitant des capacités de développement de backend API avec des événements et de frontend Blazor. Quick reference for BookStore code rules and patterns. Use this when you need a fast lookup of conventions for IDs (Guid.CreateVersion7), timestamps (DateTimeOffset.UtcNow), event naming, logging (LoggerMessage), caching, or multi-tenancy. DO NOT USE FOR: step-by-step workflows — use the relevant scaffold skill instead.

# Core Topics

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

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
7/11
Quality Score
36
Canonical Locale
en
Detected Body Locale
en

Parfait pour les agents Full-Stack nécessitant des capacités de développement de backend API avec des événements et de frontend Blazor. Quick reference for BookStore code rules and patterns. Use this when you need a fast lookup of conventions for IDs (Guid.CreateVersion7), timestamps (DateTimeOffset.UtcNow), event naming, logging (LoggerMessage), caching, or multi-tenancy. DO NOT USE FOR: step-by-step workflows — use the relevant scaffold skill instead.

Pourquoi utiliser cette compétence

Permet aux agents de développer des applications .NET évolutives en utilisant CQRS, des sources d'événements et Wolverine, fournissant un cadre robuste pour gérer des flux de données complexes et des architectures à événements avec des IDs basés sur Guid et des horodatages UTC.

Meilleur pour

Parfait pour les agents Full-Stack nécessitant des capacités de développement de backend API avec des événements et de frontend Blazor.

Cas d'utilisation exploitables for meta__cheat_sheet

Mettre en œuvre des API de backend avec des événements à l'aide de CQRS
Développer des applications de frontend Blazor avec des mises à jour de données en temps réel
Générer des IDs uniques en utilisant UUIDv7 et gérer les horodatages UTC

! Sécurité et Limitations

  • Le framework .NET est requis
  • Les dépendances Blazor et Wolverine sont nécessaires
  • Les modèles de sources d'événements et CQRS doivent être compris

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

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?

Parfait pour les agents Full-Stack nécessitant des capacités de développement de backend API avec des événements et de frontend Blazor. Quick reference for BookStore code rules and patterns. Use this when you need a fast lookup of conventions for IDs (Guid.CreateVersion7), timestamps (DateTimeOffset.UtcNow), event naming, logging (LoggerMessage), caching, or multi-tenancy. DO NOT USE FOR: step-by-step workflows — use the relevant scaffold skill instead.

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: Mettre en œuvre des API de backend avec des événements à l'aide de CQRS, Développer des applications de frontend Blazor avec des mises à jour de données en temps réel, Générer des IDs uniques en utilisant UUIDv7 et gérer les horodatages UTC.

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?

Le framework .NET est requis. Les dépendances Blazor et Wolverine sont nécessaires. Les modèles de sources d'événements et CQRS doivent être compris.

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.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

meta__cheat_sheet

Install meta__cheat_sheet, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

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
  • /wolverine__guide - All Wolverine write operations (create, update, delete)
  • /marten__guide - Aggregates, projections, and query endpoints

Compétences associées

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

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

widget-generator

Logo of f
f

Générez des plugins de widgets personnalisables pour le système de flux prompts.chat

flags

Logo of vercel
vercel

Le Cadre de Réaction

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Tenseurs et réseaux neuronaux dynamiques en Python avec une forte accélération GPU

98.6k
0
Développeur