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
AI

widget-generator

Logo of f
f

カスタマイズ可能なウィジェットプラグインをprompts.chatのフィードシステム用に生成する

149.6k
0
AI

flags

Logo of vercel
vercel

React フレームワーク

138.4k
0
ブラウザ

pr-review

Logo of pytorch
pytorch

Pythonにおけるテンソルと動的ニューラルネットワーク(強力なGPUアクセラレーション)

98.6k
0
開発者