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

v1.0.0

이 스킬 정보

이벤트 소스 백엔드 API 및 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

이벤트 소스 백엔드 API 및 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.

이 스킬을 사용하는 이유

에이전트가 CQRS, 이벤트 소싱 및 Wolverine를 사용하여 확장 가능한 .NET 애플리케이션을 개발할 수 있도록 하며, Guid 기반 ID 및 UTC 타임스탬프를 갖는 복잡한 데이터 워크플로 및 이벤트 驱动 아키텍처를 관리하기 위한 강력한 프레임워크를 제공합니다.

최적의 용도

이벤트 소스 백엔드 API 및 Blazor 프런트엔드 개발 기능이 필요한 풀스택 에이전트에게 적합합니다.

실행 가능한 사용 사례 for meta__cheat_sheet

CQRS를 사용하여 이벤트 소스 백엔드 API를 구현하는 것
실시간 데이터 업데이트를 갖춘 Blazor 프런트엔드 애플리케이션을 개발하는 것
UUIDv7를 사용하여 고유한 ID를 생성하고 UTC 타임스탬프를 처리하는 것

! 보안 및 제한 사항

  • .NET 프레임워크가 필요합니다
  • Blazor 및 Wolverine 종속성이 필요합니다
  • 이벤트 소싱 및 CQRS 패턴을 이해해야 합니다

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?

이벤트 소스 백엔드 API 및 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: CQRS를 사용하여 이벤트 소스 백엔드 API를 구현하는 것, 실시간 데이터 업데이트를 갖춘 Blazor 프런트엔드 애플리케이션을 개발하는 것, UUIDv7를 사용하여 고유한 ID를 생성하고 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?

.NET 프레임워크가 필요합니다. Blazor 및 Wolverine 종속성이 필요합니다. 이벤트 소싱 및 CQRS 패턴을 이해해야 합니다.

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

관련 스킬

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

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자