Claude Code Plugins

Community-maintained marketplace

Feedback

sea-flow-annotations

@GodSpeedAI/SEA
1
0

Enforce Flow-only CQRS tagging and recommended metadata.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name sea-flow-annotations
description Enforce Flow-only CQRS tagging and recommended metadata.

SEA Flow annotation contract

Mandatory

Every Flow includes:

@cqrs { "kind": "command" }

Recommended templates

Command:

@cqrs { "kind": "command" }
@tx { "transactional": true }
@idempotency { "enabled": true, "key": "header:X-Idempotency-Key" }

Event:

@cqrs { "kind": "event" }
@outbox { "mode": "required" }

Query:

@cqrs { "kind": "query" }
@read_model { "name": "CustomerSummary" }

Rules

  • JSON must be valid
  • Use nested JSON only