Concurrency Architecture Lens
Cognitive Mode: Physiological
Primary Question: "How does parallelism work?"
Focus: Parallel Execution, Thread Pools, Synchronization, Barriers
When to Use
- Need to understand concurrent execution patterns
- Documenting thread pools and worker management
- Analyzing synchronization and thread safety
- User invokes
/arch-lens-concurrency or /make-arch-diag concurrency
Critical Constraints
NEVER:
- Modify any source code files
- Conflate with general process flow (that's a different lens)
- Ignore thread safety implications
ALWAYS:
- Focus on PARALLEL execution specifically
- Show synchronization barriers and coordination
- Identify thread safety guarantees
- Document the concurrency MODEL used
- BEFORE creating any diagram, LOAD the
/mermaid skill using the Skill tool - this is MANDATORY
Analysis Workflow
Step 1: Launch Parallel Exploration Subagents
Spawn Explore subagents to investigate:
Concurrency Model
- Find the primary concurrency approach
- Is it threading, asyncio, multiprocessing, coroutines?
- Look for: ThreadPoolExecutor, asyncio, ProcessPoolExecutor, async/await, goroutines, threads
Worker Pools
- Find thread/process pool configurations
- Identify max_workers settings
- Look for: Executor, Pool, workers, max_*, thread pool, worker pool
Parallel Operations
- Find what work is parallelized
- Identify parallel patterns (map, submit, gather)
- Look for: executor.submit, asyncio.gather, pool.map, parallel processing
Synchronization Points
- Find barriers and coordination
- Identify how parallel work is collected
- Look for: as_completed, wait, gather, Lock, Semaphore, barriers, sync points
State Access
- Find shared state access
- Identify thread safety mechanisms
- Look for: Lock, RLock, Queue, thread-local, immutable, atomic, mutex
Sequential Boundaries
- Find what MUST run sequentially
- Identify the main thread/process responsibilities
- Look for: main(), single-threaded, atomic updates
Step 2: Map Concurrency Boundaries
Document:
- Main Thread: What runs sequentially
- Worker Pool: What runs in parallel
- Barriers: Where parallel work converges
- Atomic Operations: What requires exclusive access
CRITICAL - Analyze Read/Write Direction:
For EVERY concurrent component and shared resource:
- Reads from shared state: What data do workers READ?
- Writes to shared state: What data do workers WRITE?
- Return values: Do workers return data (read by main thread)?
- Side effects: Do workers write to storage directly?
Identify:
- Read-only access (safe for parallelism)
- Write access (needs synchronization)
- Worker isolation (no shared state during execution)
Step 3: Identify Thread Safety
For each shared resource:
- How is it protected?
- Who can read/write?
- Are there race conditions?
Step 4: Create the Diagram
Use flowchart with:
Direction: TB for spawn-barrier-collect pattern
Subgraphs:
- Main Thread (sequential operations)
- Thread/Process Pool (parallel workers)
- Subprocess/External (if spawned processes)
- Isolation (thread safety guarantees)
Node Styling:
terminal class: Start/end points
phase class: Sequential nodes
newComponent class: Parallel workers (green)
detector class: Spawn and barrier points
handler class: Processing within workers
output class: Atomic state updates
stateNode class: Thread safety mechanisms
Special Elements:
- Show fork/join points clearly
- Use edge labels for conditions
- Group parallel workers visually
Step 5: Write Output
Write the diagram to: temp/arch-lens-concurrency/arch_diag_concurrency_{YYYY-MM-DD_HHMMSS}.md
Output Template
# Concurrency Diagram: {System Name}
**Lens:** Concurrency (Physiological)
**Question:** How does parallelism work?
**Date:** {YYYY-MM-DD}
**Scope:** {What was analyzed}
## Concurrency Model
| Aspect | Value | Notes |
|--------|-------|-------|
| Primary Model | {threading/asyncio/multiprocessing} | |
| Worker Pool Type | {ThreadPoolExecutor/etc} | |
| Max Workers | {count} | |
| Parallel Operations | {what is parallelized} | |
## Concurrency Diagram
```mermaid
%%{init: {'flowchart': {'nodeSpacing': 40, 'rankSpacing': 50, 'curve': 'basis'}}}%%
flowchart TB
%% CLASS DEFINITIONS %%
classDef terminal fill:#1a237e,stroke:#7986cb,stroke-width:2px,color:#fff;
classDef stateNode fill:#004d40,stroke:#4db6ac,stroke-width:2px,color:#fff;
classDef handler fill:#e65100,stroke:#ffb74d,stroke-width:2px,color:#fff;
classDef phase fill:#6a1b9a,stroke:#ba68c8,stroke-width:2px,color:#fff;
classDef detector fill:#b71c1c,stroke:#ef5350,stroke-width:2px,color:#fff;
classDef output fill:#00695c,stroke:#4db6ac,stroke-width:2px,color:#fff;
classDef newComponent fill:#2e7d32,stroke:#81c784,stroke-width:2px,color:#fff;
subgraph MainThread ["MAIN THREAD (Sequential)"]
direction TB
START([START])
INIT["Initialize<br/>━━━━━━━━━━<br/>Setup state"]
DECISION{"Multiple<br/>items?"}
SEQ["Sequential Path<br/>━━━━━━━━━━<br/>Single thread"]
SPAWN["Spawn Workers<br/>━━━━━━━━━━<br/>Fork point"]
BARRIER["Barrier<br/>━━━━━━━━━━<br/>Wait for all"]
ATOMIC["Atomic Update<br/>━━━━━━━━━━<br/>Main thread only"]
COMPLETE([COMPLETE])
end
subgraph ThreadPool ["THREAD POOL (Parallel)"]
direction TB
W1["Worker 1<br/>━━━━━━━━━━<br/>Task execution"]
W2["Worker 2<br/>━━━━━━━━━━<br/>Task execution"]
WN["Worker N<br/>━━━━━━━━━━<br/>Task execution"]
end
subgraph Isolation ["THREAD SAFETY"]
direction TB
ISO1["Isolated state"]
ISO2["No shared writes"]
ISO3["Return data only"]
end
%% MAIN FLOW %%
START --> INIT
INIT --> DECISION
DECISION -->|"1 item"| SEQ
DECISION -->|"N items"| SPAWN
SEQ --> COMPLETE
%% PARALLEL FLOW %%
SPAWN --> W1
SPAWN --> W2
SPAWN --> WN
W1 --> BARRIER
W2 --> BARRIER
WN --> BARRIER
BARRIER --> ATOMIC
ATOMIC --> COMPLETE
%% ISOLATION %%
W1 -.-> ISO1
W2 -.-> ISO2
WN -.-> ISO3
%% CLASS ASSIGNMENTS %%
class START,COMPLETE terminal;
class INIT,SEQ phase;
class DECISION stateNode;
class SPAWN,BARRIER detector;
class W1,W2,WN newComponent;
class ATOMIC output;
class ISO1,ISO2,ISO3 stateNode;
Color Legend:
| Color |
Category |
Description |
| Dark Blue |
Terminal |
Start and end points |
| Purple |
Sequential |
Single-threaded nodes |
| Green |
Workers |
Parallel workers |
| Red |
Synchronization |
Spawn and barrier points |
| Dark Teal |
Atomic |
Main-thread-only state updates |
| Teal |
Isolation |
Thread safety guarantees |
Concurrency Boundaries
| Component |
Model |
Synchronization |
| {component} |
{single-threaded/parallel} |
{mechanism} |
Thread Safety Guarantees
- Isolation: {how workers are isolated}
- State Access: {who can modify shared state}
- Barrier: {how results are collected}
---
## Pre-Diagram Checklist
Before creating the diagram, verify:
- [ ] LOADED `/mermaid` skill using the Skill tool
- [ ] Using ONLY classDef styles from the mermaid skill (no invented colors)
- [ ] Diagram will include a color legend table
---
## Related Skills
- `/make-arch-diag` - Parent skill for lens selection
- `/mermaid` - MUST BE LOADED before creating diagram
- `/arch-lens-process-flow` - For general workflow view
- `/arch-lens-error-resilience` - For parallel failure handling
1---2name: arch-lens-concurrency3description: Create Concurrency architecture diagram showing parallel execution patterns, thread pools, synchronization, and barriers. Physiological lens answering "How does parallelism work?"4---56# Concurrency Architecture Lens78**Cognitive Mode:** Physiological9**Primary Question:** "How does parallelism work?"10**Focus:** Parallel Execution, Thread Pools, Synchronization, Barriers1112## When to Use1314- Need to understand concurrent execution patterns15- Documenting thread pools and worker management16- Analyzing synchronization and thread safety17- User invokes `/arch-lens-concurrency` or `/make-arch-diag concurrency`1819## Critical Constraints2021**NEVER:**22- Modify any source code files23- Conflate with general process flow (that's a different lens)24- Ignore thread safety implications2526**ALWAYS:**27- Focus on PARALLEL execution specifically28- Show synchronization barriers and coordination29- Identify thread safety guarantees30- Document the concurrency MODEL used31- BEFORE creating any diagram, LOAD the `/mermaid` skill using the Skill tool - this is MANDATORY3233---3435## Analysis Workflow3637### Step 1: Launch Parallel Exploration Subagents3839Spawn Explore subagents to investigate:4041**Concurrency Model**42- Find the primary concurrency approach43- Is it threading, asyncio, multiprocessing, coroutines?44- Look for: ThreadPoolExecutor, asyncio, ProcessPoolExecutor, async/await, goroutines, threads4546**Worker Pools**47- Find thread/process pool configurations48- Identify max_workers settings49- Look for: Executor, Pool, workers, max_*, thread pool, worker pool5051**Parallel Operations**52- Find what work is parallelized53- Identify parallel patterns (map, submit, gather)54- Look for: executor.submit, asyncio.gather, pool.map, parallel processing5556**Synchronization Points**57- Find barriers and coordination58- Identify how parallel work is collected59- Look for: as_completed, wait, gather, Lock, Semaphore, barriers, sync points6061**State Access**62- Find shared state access63- Identify thread safety mechanisms64- Look for: Lock, RLock, Queue, thread-local, immutable, atomic, mutex6566**Sequential Boundaries**67- Find what MUST run sequentially68- Identify the main thread/process responsibilities69- Look for: main(), single-threaded, atomic updates7071### Step 2: Map Concurrency Boundaries7273Document:74- **Main Thread**: What runs sequentially75- **Worker Pool**: What runs in parallel76- **Barriers**: Where parallel work converges77- **Atomic Operations**: What requires exclusive access7879**CRITICAL - Analyze Read/Write Direction:**80For EVERY concurrent component and shared resource:81- **Reads from shared state**: What data do workers READ?82- **Writes to shared state**: What data do workers WRITE?83- **Return values**: Do workers return data (read by main thread)?84- **Side effects**: Do workers write to storage directly?8586Identify:87- Read-only access (safe for parallelism)88- Write access (needs synchronization)89- Worker isolation (no shared state during execution)9091### Step 3: Identify Thread Safety9293For each shared resource:94- How is it protected?95- Who can read/write?96- Are there race conditions?9798### Step 4: Create the Diagram99100Use flowchart with:101102**Direction:** `TB` for spawn-barrier-collect pattern103104**Subgraphs:**105- Main Thread (sequential operations)106- Thread/Process Pool (parallel workers)107- Subprocess/External (if spawned processes)108- Isolation (thread safety guarantees)109110**Node Styling:**111- `terminal` class: Start/end points112- `phase` class: Sequential nodes113- `newComponent` class: Parallel workers (green)114- `detector` class: Spawn and barrier points115- `handler` class: Processing within workers116- `output` class: Atomic state updates117- `stateNode` class: Thread safety mechanisms118119**Special Elements:**120- Show fork/join points clearly121- Use edge labels for conditions122- Group parallel workers visually123124### Step 5: Write Output125126Write the diagram to: `temp/arch-lens-concurrency/arch_diag_concurrency_{YYYY-MM-DD_HHMMSS}.md`127128---129130## Output Template131132```markdown133# Concurrency Diagram: {System Name}134135**Lens:** Concurrency (Physiological)136**Question:** How does parallelism work?137**Date:** {YYYY-MM-DD}138**Scope:** {What was analyzed}139140## Concurrency Model141142| Aspect | Value | Notes |143|--------|-------|-------|144| Primary Model | {threading/asyncio/multiprocessing} | |145| Worker Pool Type | {ThreadPoolExecutor/etc} | |146| Max Workers | {count} | |147| Parallel Operations | {what is parallelized} | |148149## Concurrency Diagram150151```mermaid152%%{init: {'flowchart': {'nodeSpacing': 40, 'rankSpacing': 50, 'curve': 'basis'}}}%%153flowchart TB154 %% CLASS DEFINITIONS %%155 classDef terminal fill:#1a237e,stroke:#7986cb,stroke-width:2px,color:#fff;156 classDef stateNode fill:#004d40,stroke:#4db6ac,stroke-width:2px,color:#fff;157 classDef handler fill:#e65100,stroke:#ffb74d,stroke-width:2px,color:#fff;158 classDef phase fill:#6a1b9a,stroke:#ba68c8,stroke-width:2px,color:#fff;159 classDef detector fill:#b71c1c,stroke:#ef5350,stroke-width:2px,color:#fff;160 classDef output fill:#00695c,stroke:#4db6ac,stroke-width:2px,color:#fff;161 classDef newComponent fill:#2e7d32,stroke:#81c784,stroke-width:2px,color:#fff;162163 subgraph MainThread ["MAIN THREAD (Sequential)"]164 direction TB165 START([START])166 INIT["Initialize<br/>━━━━━━━━━━<br/>Setup state"]167 DECISION{"Multiple<br/>items?"}168 SEQ["Sequential Path<br/>━━━━━━━━━━<br/>Single thread"]169 SPAWN["Spawn Workers<br/>━━━━━━━━━━<br/>Fork point"]170 BARRIER["Barrier<br/>━━━━━━━━━━<br/>Wait for all"]171 ATOMIC["Atomic Update<br/>━━━━━━━━━━<br/>Main thread only"]172 COMPLETE([COMPLETE])173 end174175 subgraph ThreadPool ["THREAD POOL (Parallel)"]176 direction TB177 W1["Worker 1<br/>━━━━━━━━━━<br/>Task execution"]178 W2["Worker 2<br/>━━━━━━━━━━<br/>Task execution"]179 WN["Worker N<br/>━━━━━━━━━━<br/>Task execution"]180 end181182 subgraph Isolation ["THREAD SAFETY"]183 direction TB184 ISO1["Isolated state"]185 ISO2["No shared writes"]186 ISO3["Return data only"]187 end188189 %% MAIN FLOW %%190 START --> INIT191 INIT --> DECISION192 DECISION -->|"1 item"| SEQ193 DECISION -->|"N items"| SPAWN194 SEQ --> COMPLETE195196 %% PARALLEL FLOW %%197 SPAWN --> W1198 SPAWN --> W2199 SPAWN --> WN200201 W1 --> BARRIER202 W2 --> BARRIER203 WN --> BARRIER204205 BARRIER --> ATOMIC206 ATOMIC --> COMPLETE207208 %% ISOLATION %%209 W1 -.-> ISO1210 W2 -.-> ISO2211 WN -.-> ISO3212213 %% CLASS ASSIGNMENTS %%214 class START,COMPLETE terminal;215 class INIT,SEQ phase;216 class DECISION stateNode;217 class SPAWN,BARRIER detector;218 class W1,W2,WN newComponent;219 class ATOMIC output;220 class ISO1,ISO2,ISO3 stateNode;221```222223**Color Legend:**224| Color | Category | Description |225|-------|----------|-------------|226| Dark Blue | Terminal | Start and end points |227| Purple | Sequential | Single-threaded nodes |228| Green | Workers | Parallel workers |229| Red | Synchronization | Spawn and barrier points |230| Dark Teal | Atomic | Main-thread-only state updates |231| Teal | Isolation | Thread safety guarantees |232233## Concurrency Boundaries234235| Component | Model | Synchronization |236|-----------|-------|-----------------|237| {component} | {single-threaded/parallel} | {mechanism} |238239## Thread Safety Guarantees240241- **Isolation**: {how workers are isolated}242- **State Access**: {who can modify shared state}243- **Barrier**: {how results are collected}244```245246---247248## Pre-Diagram Checklist249250Before creating the diagram, verify:251252- [ ] LOADED `/mermaid` skill using the Skill tool253- [ ] Using ONLY classDef styles from the mermaid skill (no invented colors)254- [ ] Diagram will include a color legend table255256---257258## Related Skills259260- `/make-arch-diag` - Parent skill for lens selection261- `/mermaid` - MUST BE LOADED before creating diagram262- `/arch-lens-process-flow` - For general workflow view263- `/arch-lens-error-resilience` - For parallel failure handling