nw-ab-critique-dimensi…
Review dimensions for validating agent quality - template compliance, safety, testing, and priority validation
Advanced distributed patterns - event sourcing, CQRS, saga, stream processing, append-only log, exactly-once delivery, sequencer, double-entry ledger, erasure coding, order book, watermarks
$ npx -y skills add nWave-ai/nWave --skill nw-sd-patterns-advanced --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/nw-sd-patterns-advancedContext preview
The summary Claude sees to decide when to auto-load this skill.
Advanced distributed patterns - event sourcing, CQRS, saga, stream processing, append-only log, exactly-once delivery, sequencer, double-entry ledger, erasure coding, order book, watermarks
name: nw-sd-patterns-advanced description: Advanced distributed patterns - event sourcing, CQRS, saga, stream processing, append-only log, exactly-once delivery, sequencer, double-entry ledger, erasure coding, order book, watermarks user-invocable: false disable-model-invocation: true
**Problem**: need audit trail, state reconstruction, temporal queries.
**Core idea**: store every state change as immutable event, not current state.
Events: [WalletCreated: balance=0] [Deposited: +100] [Transferred: -30] [Deposited: +50] Current state: 0 + 100 - 30 + 50 = 120
**Benefits**: complete audit trail | temporal queries ("balance on Jan 15?") | rebuild state from scratch | debug by replay | event-driven architecture
**Challenges**: computing state requires replaying all events -- use snapshots | schema evolution (events immutable) | store grows indefinitely -- compaction/archiving | eventual consistency for read models
**Snapshots**: periodically save computed state | current state = latest snapshot + events after it | trade-off: recovery speed vs storage
**Used in**: payment systems, banking, trading platforms, audit-critical systems
**Problem**: read and write models have different optimization needs.
**Architecture**: Commands -> Write Model (normalized, consistency) -> events/CDC -> Read Model (denormalized, query-optimized) <- Queries
**When**: very different read/write patterns | read model needs heavy denormalization | different scaling for reads vs writes | paired with Event Sourcing
**Trade-offs**: eventual consistency between models | increased complexity (two models) | sync lag
**Problem**: distributed transactions across services without 2PC.
**Core idea**: sequence of local transactions, each with compensating action.
Each service listens for events and acts | no central coordinator | simpler but harder to track/debug
Central orchestrator coordinates sequence | more control, easier to reason about | orchestrator is SPOF
**Example -- money transfer**: 1. Debit A $100 -> success | 2. Credit B $100 -> FAIL | 3. Compensate: credit A back $100
**TCC variant (Try-Confirm/Cancel)**: Try: reserve resources | Confirm: finalize | Cancel: release. Better for inventory/booking.
**Trade-offs**: no ACID across services | compensating actions must be idempotent | temporary inconsistency visible | complex failure scenarios
**Windowing**: Tumbling (fixed, non-overlapping) | Sliding (fixed, overlapping) | Session (gap-based, closes after inactivity)
**Processing guarantees**: at-most-once (fire-and-forget, may lose) | at-least-once (retry, may duplicate) | exactly-once (hardest, checkpointing + idempotent sinks)
**Checkpointing**: periodically save processor state | on failure restart from checkpoint | Flink: barrier-based (Chandy-Lamport)
**Backpressure**: consumer slower than producer | buffer, drop, or slow producer | Kafka handles naturally (consumer pulls at own pace)
**Structure**: segments of sequential offsets | Segment 0: [0..999] | Segment 1: [1000..1999]
**Why fast**: sequential writes only (saturates disk) | OS page cache for reads | zero-copy (sendfile) disk-to-network | batch writes amortize syscalls
**Retention**: time-based (delete old segments) | size-based (cap total) | compaction (keep latest per key)
True exactly-once is theoretically impossible. Achieve effectively-once through:
**Idempotent producer**: sequence number per message, broker deduplicates | Kafka supports natively
**Transactional processing**: read -> process -> write output + commit offset atomically | crash mid-tx -> abort -> replay
**Idempotent consumer**: track processed message IDs | check before processing, skip if seen | DB unique constraint or dedup cache
**End-to-end**: idempotent producer + transactional processing + idempotent consumer
**Problem**: multiple inputs need deterministic ordered processing.
All events pass through single sequencer | assigns monotonic sequence number | downstream processes in order | deterministic: same sequence = same state
**Properties**: single-threaded (ordering guarantee) | append to durable log | throughput limited -- shard by entity (per-symbol in exchange)
**Recovery**: standby reads same log | on primary failure: standby continues | downstream replays from last processed sequence
**Used in**: stock exchanges, matching engines, event sourcing
**Rule**: every transaction produces exactly two entries -- debit and credit of equal amount.
Transaction: A pays $100 to B Entry 1: DEBIT A $100 Entry 2: CREDIT B $100 Invariant: SUM(debits) = SUM(credits) -- always
Immutable entries (corrections via counter-entries) | balance = SUM(credits) - SUM(debits) | self-balancing: errors immediately detectable | regulatory requirement for financial systems
Export records from each system | match by transaction_id | identify: missing records, amount mismatches, status discrepancies | alert on mismatches
**Schedule**: T+1 (most common) | real-time (critical systems) | monthly full balance
**Problem**: high durability without 3x storage overhead.
Split data into k data + m parity chunks (Reed-Solomon) | store k+m across nodes | any k of k+m can reconstruct
**Example (4+2)**: 6 chunks total, 1.5x overhead (vs 3x for triple replication), tolerates 2 failures
**Trade-offs**: storage efficient | higher CPU for encode/decode | higher read latency (multiple nodes) | expensive repair
**Used in**: S3, HDFS, Azure Storage, Google Colossus
**Write**: append-only, batch, compress (delta-of-delta timestamps, XOR values)
**Storage tiering**: Hot (<24h, raw, memory/SSD) | Warm (1-
AI agents that guide you from idea to working code, with human judgment at every gate. nWave runs inside Claude Code. It breaks feature delivery into seven waves (discover, diverge, discuss, design, devops, distill, deliver).
Repo: nWave-ai/nWave
Review dimensions for validating agent quality - template compliance, safety, testing, and priority validation
Review dimensions for validating agent quality - template compliance, safety, testing, and priority validation
Review dimensions for acceptance test quality - happy path bias, GWT compliance, business language purity, coverage completeness, walking skeleton…
Detailed 5-phase workflow for creating agents - from requirements analysis through validation and iterative refinement
5-layer testing approach for agent validation including adversarial testing, security validation, and prompt injection resistance
Architectural style selection decision matrices, trade-off analysis, structural enforcement rules, and combination patterns. Load when choosing or evaluating…