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

v1.0.0

Über diesen Skill

Perfekt für Full-Stack-Agenten, die Backend-API- und Blazor-Frontend-Entwicklungsfähigkeiten benötigen. 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

Perfekt für Full-Stack-Agenten, die Backend-API- und Blazor-Frontend-Entwicklungsfähigkeiten benötigen. 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.

Warum diese Fähigkeit verwenden

Ermächtigt Agenten, skalierbare .NET-Anwendungen mithilfe von CQRS, Ereignisquellen und Wolverine zu entwickeln, wodurch ein robustes Framework für die Verwaltung komplexer Datenworkflows und ereignisgesteuerter Architekturen mit Guid-basierten IDs und UTC-Timestamps bereitgestellt wird.

Am besten geeignet für

Perfekt für Full-Stack-Agenten, die Backend-API- und Blazor-Frontend-Entwicklungsfähigkeiten benötigen.

Handlungsfähige Anwendungsfälle for meta__cheat_sheet

Implementierung von Backend-APIs mit Ereignissen mithilfe von CQRS
Entwicklung von Blazor-Frontend-Anwendungen mit Echtzeit-Datenaktualisierungen
Generierung eindeutiger IDs unter Verwendung von UUIDv7 und Verwaltung von UTC-Timestamps

! Sicherheit & Einschränkungen

  • Das .NET-Framework ist erforderlich
  • Blazor- und Wolverine-Abhängigkeiten sind erforderlich
  • Die Muster für Ereignisquellen und CQRS müssen verstanden werden

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?

Perfekt für Full-Stack-Agenten, die Backend-API- und Blazor-Frontend-Entwicklungsfähigkeiten benötigen. 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: Implementierung von Backend-APIs mit Ereignissen mithilfe von CQRS, Entwicklung von Blazor-Frontend-Anwendungen mit Echtzeit-Datenaktualisierungen, Generierung eindeutiger IDs unter Verwendung von UUIDv7 und Verwaltung von 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?

Das .NET-Framework ist erforderlich. Blazor- und Wolverine-Abhängigkeiten sind erforderlich. Die Muster für Ereignisquellen und CQRS müssen verstanden werden.

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

Verwandte Fähigkeiten

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

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
Künstliche Intelligenz

widget-generator

Logo of f
f

Erzeugen Sie anpassbare Widget-Plugins für das Prompts.Chat-Feed-System

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Das React-Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensor und dynamische neuronale Netze in Python mit starker GPU-Beschleunigung

98.6k
0
Entwickler