Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:24:17 +08:00
commit c57945c290
12 changed files with 370 additions and 0 deletions

25
commands/async.md Normal file
View File

@@ -0,0 +1,25 @@
---
model: claude-sonnet-4-0
allowed-tools: Task, Bash, Read, Write
argument-hint: <task> [pattern]
description: Asynchronous processing patterns and worker orchestration
---
# Async Command
Asynchronous processing patterns and worker orchestration
## Arguments
**$1 (Required)**: task
**$2 (Optional)**: pattern
## Examples
```bash
/async "Implement background jobs" workers
/async "Design retry strategy" exponential-backoff
```
Invoke the async-specialist agent with: $ARGUMENTS

25
commands/backpressure.md Normal file
View File

@@ -0,0 +1,25 @@
---
model: claude-sonnet-4-0
allowed-tools: Task, Bash, Read, Write
argument-hint: <system> [strategy]
description: Backpressure and rate limiting strategies for system stability
---
# Backpressure Command
Backpressure and rate limiting strategies for system stability
## Arguments
**$1 (Required)**: system
**$2 (Optional)**: strategy
## Examples
```bash
/backpressure "Handle API rate limits" circuit-breaker
/backpressure "Implement flow control" token-bucket
```
Invoke the backpressure-expert agent with: $ARGUMENTS

25
commands/distributed.md Normal file
View File

@@ -0,0 +1,25 @@
---
model: claude-sonnet-4-0
allowed-tools: Task, Bash, Read, Write
argument-hint: <requirement> [focus]
description: Distributed systems design and consensus patterns
---
# Distributed Command
Distributed systems design and consensus patterns
## Arguments
**$1 (Required)**: requirement
**$2 (Optional)**: focus
## Examples
```bash
/distributed "Design distributed cache" consistency
/distributed "Implement leader election" consensus
```
Invoke the distributed-systems-expert agent with: $ARGUMENTS

25
commands/queue.md Normal file
View File

@@ -0,0 +1,25 @@
---
model: claude-sonnet-4-0
allowed-tools: Task, Bash, Read, Write
argument-hint: <requirement> [system]
description: Message queue design and optimization with queue theory
---
# Queue Command
Message queue design and optimization with queue theory
## Arguments
**$1 (Required)**: requirement
**$2 (Optional)**: system
## Examples
```bash
/queue "Design job processing system" rabbitmq
/queue "Optimize queue throughput" sqs
```
Invoke the queue-theorist agent with: $ARGUMENTS