ring/ARCHITECTURE.md
Fred Amaral 2712c23e2d
docs: sync plugin counts and add performance-reviewer as 8th codereview reviewer
Sweep all documentation to match filesystem ground truth:
- ring-default: 22→23 skills (added pr-review-multi-source)
- ring-dev-team: 31→33 skills (added dev-licensing, dev-verify-code), 12→13 agents (added performance-reviewer)
- ring-pm-team: 15→16 skills (added deep-doc-review)
- Total: 90→94 skills, 38→39 agents

Add ring:performance-reviewer as 8th parallel codereview reviewer across
codereview SKILL.md (dispatch block, state, metrics, verdicts, anti-rationalization)
and all documentation (CLAUDE.md, README.md, MANUAL.md, ARCHITECTURE.md).

Fix ARCHITECTURE.md finops/tw-team skill count swap in ASCII diagram.
Fix codereview metrics bug (X/6→X/8).
Remove phantom skill references (verification-before-completion, root-cause-tracing) from MANUAL.md.

X-Lerian-Ref: 0x1
2026-04-14 13:31:29 -03:00

727 lines
29 KiB
Markdown

# Ring Architecture Documentation
## Table of Contents
1. [Overview](#overview)
2. [Marketplace Structure](#marketplace-structure)
3. [Component Hierarchy](#component-hierarchy)
4. [Core Components](#core-components)
5. [Data & Control Flow](#data--control-flow)
6. [Integration with Claude Code](#integration-with-claude-code)
7. [Execution Patterns](#execution-patterns)
8. [Component Relationships](#component-relationships)
## Overview
Ring is a **Claude Code plugin marketplace** that provides a comprehensive skills library and workflow system with **6 active plugins** (94 skills, 39 agents). It extends Claude Code's capabilities through structured, reusable patterns that enforce proven software engineering practices across the software delivery value chain: Product Planning → Development → Documentation.
### Architecture Philosophy
Ring operates on three core principles:
1. **Mandatory Workflows** - Critical skills (like ring:using-ring) enforce specific behaviors
2. **Parallel Execution** - Review systems run concurrently for speed
3. **Session Context** - Skills load automatically at session start
4. **Modular Plugins** - Specialized plugins for different domains and teams
### System Boundaries
```
┌─────────────────────────────────────────────────────────────────────────────────┐
│ Claude Code │
│ ┌───────────────────────────────────────────────────────────────────────────┐ │
│ │ Ring Marketplace │ │
│ │ ┌──────────────────────┐ ┌──────────────────────┐ │ │
│ │ │ ring-default │ │ ring-dev-team │ │ │
│ │ │ Skills(23) Agents(10)│ │ Skills(33) Agents(13)│ │ │
│ │ │ Hooks/Lib │ │ │ │ │
│ │ └──────────────────────┘ └──────────────────────┘ │ │
│ │ ┌──────────────────────┐ ┌──────────────────────┐ │ │
│ │ │ ring-pm-team │ │ ring-tw-team │ │ │
│ │ │ Skills(16) Agents(4) │ │ Skills(6) Agents(3) │ │ │
│ │ └──────────────────────┘ └──────────────────────┘ │ │
│ │ ┌──────────────────────┐ ┌──────────────────────┐ │ │
│ │ │ ring-finops-team │ │ ring-pmo-team │ │ │
│ │ │ Skills(7) Agents(3) │ │ Skills(9) Agents(6) │ │ │
│ │ └──────────────────────┘ └──────────────────────┘ │ │
│ └───────────────────────────────────────────────────────────────────────────┘ │
│ │
│ Native Tools: Skill, Task, TodoWrite │
└─────────────────────────────────────────────────────────────────────────────────┘
```
## Marketplace Structure
Ring is organized as a monorepo marketplace with multiple plugin collections:
```
ring/ # Monorepo root
├── .claude-plugin/
│ └── marketplace.json # Multi-plugin registry (6 active plugins)
├── default/ # Core plugin: ring-default
├── dev-team/ # Developer agents: ring-dev-team
├── finops-team/ # FinOps & regulatory: ring-finops-team
├── pm-team/ # Product planning: ring-pm-team
├── pmo-team/ # PMO specialists: ring-pmo-team
└── tw-team/ # Technical writing: ring-tw-team
```
### Active Plugins
_Versions managed in `.claude-plugin/marketplace.json`_
| Plugin | Description | Components |
| -------------------- | ------------------------------------ | -------------------------------- |
| **ring-default** | Core skills library | 23 skills, 10 agents |
| **ring-dev-team** | Developer agents | 33 skills, 13 agents |
| **ring-finops-team** | FinOps regulatory compliance | 7 skills, 3 agents |
| **ring-pm-team** | Product planning workflows | 16 skills, 4 agents |
| **ring-pmo-team** | PMO portfolio management specialists | 9 skills, 6 agents |
| **ring-tw-team** | Technical writing specialists | 6 skills, 3 agents |
## Component Hierarchy
### 1. Skills (`skills/`)
**Purpose:** Core instruction sets that define workflows and best practices
**Structure:**
```
skills/
├── {skill-name}/
│ └── SKILL.md # Skill definition with frontmatter
├── shared-patterns/ # Reusable patterns across skills
│ ├── state-tracking.md
│ ├── failure-recovery.md
│ ├── exit-criteria.md
│ └── todowrite-integration.md
```
**Key Characteristics:**
- Self-contained directories with `SKILL.md` files
- YAML frontmatter: `name`, `description`, `when_to_use`
- Invoked via Claude's `Skill` tool
- Can reference shared patterns for common behaviors
### 2. Agents (`agents/`)
**Purpose:** Specialized agents that analyze code/designs or provide domain expertise using AI models
**Structure (ring-default plugin):**
```
default/agents/
├── code-reviewer.md # Foundation review (`ring:code-reviewer`)
├── business-logic-reviewer.md # Correctness review (`ring:business-logic-reviewer`)
├── security-reviewer.md # Safety review (`ring:security-reviewer`)
├── test-reviewer.md # Test coverage and quality review (`ring:test-reviewer`)
├── nil-safety-reviewer.md # Null/nil safety analysis (`ring:nil-safety-reviewer`)
├── consequences-reviewer.md # Ripple effect review (`ring:consequences-reviewer`)
├── dead-code-reviewer.md # Dead code analysis (`ring:dead-code-reviewer`)
├── review-slicer.md # Thematic file grouping for large PRs (`ring:review-slicer`)
├── write-plan.md # Implementation planning (`ring:write-plan`)
└── codebase-explorer.md # Deep architecture analysis (`ring:codebase-explorer`)
```
**Structure (ring-dev-team plugin):**
```
dev-team/agents/
├── backend-engineer-golang.md # Go backend specialist (`ring:backend-engineer-golang`)
├── backend-engineer-typescript.md # TypeScript backend specialist (`ring:backend-engineer-typescript`)
├── devops-engineer.md # DevOps specialist (`ring:devops-engineer`)
├── frontend-bff-engineer-typescript.md # BFF specialist (`ring:frontend-bff-engineer-typescript`)
├── frontend-designer.md # Visual design specialist (`ring:frontend-designer`)
├── frontend-engineer.md # Frontend engineer (`ring:frontend-engineer`)
├── helm-engineer.md # Helm chart specialist (`ring:helm-engineer`)
├── performance-reviewer.md # Performance review (`ring:performance-reviewer`)
├── prompt-quality-reviewer.md # Prompt quality specialist (`ring:prompt-quality-reviewer`)
├── qa-analyst.md # Backend QA specialist (`ring:qa-analyst`)
├── qa-analyst-frontend.md # Frontend QA specialist (`ring:qa-analyst-frontend`)
├── sre.md # Site reliability engineer (`ring:sre`)
└── ui-engineer.md # UI component specialist (`ring:ui-engineer`)
```
**Structure (ring-pmo-team plugin):**
```
pmo-team/agents/
├── delivery-reporter.md # Delivery progress reporting
├── executive-reporter.md # Executive dashboards and communications
├── governance-specialist.md # Gate reviews and process compliance
├── portfolio-manager.md # Portfolio-level planning and coordination
├── resource-planner.md # Capacity planning and allocation
└── risk-analyst.md # Portfolio risk identification and mitigation
```
**Key Characteristics:**
- Invoked via Claude's `Task` tool with `subagent_type`
- Invoked with specialized subagent_type for domain-specific analysis
- Review agents run in parallel (8 reviewers dispatch simultaneously via `ring:codereview` skill)
- Developer agents provide specialized domain expertise
- Return structured reports with severity-based findings
**Note:** Parallel review orchestration is handled by the `ring:codereview` skill
**Standards Compliance Output (ring-dev-team agents):**
All ring-dev-team agents include a `## Standards Compliance` section in their output schema:
```yaml
- name: "Standards Compliance"
pattern: "^## Standards Compliance"
required: false # In schema, but MANDATORY when invoked from ring:dev-refactor
description: "MANDATORY when invoked from ring:dev-refactor skill"
```
**Conditional Requirement: `invoked_from_dev_refactor`**
| Invocation Context | Standards Compliance | Detection Mechanism |
| ----------------------------- | -------------------- | ----------------------------------------- |
| Direct agent call | Optional | N/A |
| Via `ring:dev-cycle` skill | Optional | N/A |
| Via `ring:dev-refactor` skill | **MANDATORY** | Prompt contains `**MODE: ANALYSIS ONLY**` |
**How Enforcement Works:**
```
┌─────────────────────────────────────────────────────────────────────┐
│ User invokes: ring:dev-refactor skill │
│ ↓ │
│ ring:dev-refactor skill dispatches agents with prompt: │
│ "**MODE: ANALYSIS ONLY** - Compare codebase with Ring standards" │
│ ↓ │
│ Agent detects "**MODE: ANALYSIS ONLY**" in prompt │
│ ↓ │
│ Agent loads Ring standards via WebFetch │
│ ↓ │
│ Agent produces Standards Compliance output (MANDATORY) │
└─────────────────────────────────────────────────────────────────────┘
```
**Affected Agents:**
- `ring:backend-engineer-golang` → loads `golang.md`
- `ring:backend-engineer-typescript` → loads `typescript.md`
- `ring:devops-engineer` → loads `devops.md`
- `ring:frontend-bff-engineer-typescript` → loads `typescript.md`
- `ring:frontend-designer` → loads `frontend.md`
- `ring:qa-analyst` → loads `testing-*.md` (unit/fuzz/property/integration/chaos)
- `ring:qa-analyst-frontend` → loads `frontend/testing-*.md` (accessibility/visual/e2e/performance)
- `ring:sre` → loads `sre.md`
**Output Format (when non-compliant):**
```markdown
## Standards Compliance
### Lerian/Ring Standards Comparison
| Category | Current Pattern | Expected Pattern | Status | File/Location |
| -------- | --------------- | ---------------- | ---------------- | ------------- |
| Logging | fmt.Println | lib-commons/zap | ⚠️ Non-Compliant | service/\*.go |
### Compliance Summary
- Total Violations: N
- Critical: N, High: N, Medium: N, Low: N
### Required Changes for Compliance
1. **Category Migration**
- Replace: `current pattern`
- With: `expected pattern`
- Files affected: [list]
```
**Cross-References:**
- CLAUDE.md: Standards Compliance (Conditional Output Section)
- `dev-team/skills/dev-refactor/SKILL.md`: HARD GATES defining requirement
- `dev-team/hooks/session-start.sh`: Injects guidance at session start
### 3. Hooks (`hooks/`)
**Purpose:** Session lifecycle management and automatic initialization
**Structure:**
```
default/hooks/
├── hooks.json # Hook configuration (SessionStart, UserPromptSubmit)
├── session-start.sh # Main initialization script
├── generate-skills-ref.py # Dynamic skill reference generator
└── claude-md-reminder.sh # CLAUDE.md reminder on prompt submit
```
**Key Characteristics:**
- Triggers on SessionStart events (startup|resume, clear|compact)
- Triggers on UserPromptSubmit for reminders
- Injects skills context into Claude's memory
- Auto-generates skills quick reference from frontmatter
- Ensures mandatory workflows are loaded
### 4. Plugin Configuration (`.claude-plugin/`)
**Purpose:** Integration metadata for Claude Code marketplace
**Structure:**
```
.claude-plugin/
└── marketplace.json # Multi-plugin registry
├── ring-default # Core skills library
├── ring-dev-team # Developer agents
├── ring-finops-team # FinOps regulatory
├── ring-pm-team # Product planning
├── ring-pmo-team # PMO specialists
└── ring-tw-team # Technical writing
```
**marketplace.json Schema:**
```json
{
"name": "ring",
"description": "...",
"owner": { "name": "...", "email": "..." },
"plugins": [
{
"name": "ring-default",
"version": "...",
"source": "./default",
"keywords": ["skills", "tdd", "debugging", ...]
},
{
"name": "ring-dev-team",
"version": "...",
"source": "./dev-team",
"keywords": ["developer", "agents"]
},
{
"name": "ring-finops-team",
"version": "...",
"source": "./finops-team",
"keywords": ["finops", "regulatory", "compliance"]
},
{
"name": "ring-pm-team",
"version": "...",
"source": "./pm-team",
"keywords": ["product", "planning"]
},
{
"name": "ring-pmo-team",
"version": "...",
"source": "./pmo-team",
"keywords": ["pmo", "portfolio", "governance"]
},
{
"name": "ring-tw-team",
"version": "...",
"source": "./tw-team",
"keywords": ["technical-writing", "documentation"]
}
]
}
```
## Data & Control Flow
### Session Initialization Flow
```mermaid
sequenceDiagram
participant User
participant Claude Code
participant hooks.json
participant session-start.sh
participant generate-skills-ref.py
participant Claude Context
User->>Claude Code: Start new session
Claude Code->>hooks.json: Check SessionStart hooks
hooks.json->>session-start.sh: Execute initialization
session-start.sh->>generate-skills-ref.py: Generate skills overview
generate-skills-ref.py-->>session-start.sh: Return formatted reference
session-start.sh->>Claude Context: Inject skills + ring:using-ring content
Claude Context-->>User: Session ready with skills loaded
```
### Skill Invocation Flow
```mermaid
sequenceDiagram
participant User
participant Claude
participant Skill Tool
participant SKILL.md
participant TodoWrite
User->>Claude: Request task
Claude->>Claude: Check ring:using-ring mandatory workflow
Claude->>Skill Tool: Invoke relevant skill
Skill Tool->>SKILL.md: Load skill instructions
SKILL.md-->>Claude: Return structured workflow
Claude->>TodoWrite: Create task tracking (if multi-step)
Claude->>User: Execute skill with progress updates
```
### Parallel Review Flow
```mermaid
sequenceDiagram
participant User
participant Claude
participant Task Tool
participant ring:code-reviewer
participant ring:business-logic-reviewer
participant ring:security-reviewer
participant ring:test-reviewer
participant ring:nil-safety-reviewer
participant ring:consequences-reviewer
participant DCR as ring:dead-code-reviewer
participant PR as ring:performance-reviewer
User->>Claude: Use ring:codereview skill
Note over Claude: Skill provides<br/>parallel review workflow
Claude->>Task Tool: Dispatch 8 parallel tasks
par Parallel Execution
Task Tool->>ring:code-reviewer: Review architecture
and
Task Tool->>ring:business-logic-reviewer: Review correctness
and
Task Tool->>ring:security-reviewer: Review vulnerabilities
and
Task Tool->>ring:test-reviewer: Review test coverage
and
Task Tool->>ring:nil-safety-reviewer: Review nil safety
and
Task Tool->>ring:consequences-reviewer: Review ripple effects
and
Task Tool->>DCR: Review dead code
and
Task Tool->>PR: Review performance
end
ring:code-reviewer-->>Claude: Return findings
ring:business-logic-reviewer-->>Claude: Return findings
ring:security-reviewer-->>Claude: Return findings
ring:test-reviewer-->>Claude: Return findings
ring:nil-safety-reviewer-->>Claude: Return findings
ring:consequences-reviewer-->>Claude: Return findings
DCR-->>Claude: Return findings
PR-->>Claude: Return findings
Note over Claude: Aggregate & prioritize by severity
Claude->>User: Consolidated report
```
## Integration with Claude Code
### Native Tool Integration
Ring leverages three primary Claude Code tools:
1. **Skill Tool**
- Invokes skills by name: `skill: "ring:test-driven-development"`
- Skills expand into full instructions within conversation
- Skill content becomes part of Claude's working context
2. **Task Tool**
- Dispatches agents to subagent instances: `Task(subagent_type="ring:code-reviewer")`
- Enables parallel execution (multiple Tasks in one message)
- Returns structured reports from independent analysis
3. **TodoWrite Tool**
- Tracks multi-step workflows: `TodoWrite(todos=[...])`
- Integrates with skills via shared patterns
- Provides progress visibility to users
### Session Context Injection
At session start, Ring injects two critical pieces of context:
1. **Skills Quick Reference** - Auto-generated overview of all available skills
2. **ring:using-ring Skill** - Mandatory workflow that enforces skill checking
This context becomes part of Claude's memory for the entire session, ensuring:
- Claude knows which skills are available
- Mandatory workflows are enforced
- Skills are checked before any task
## Execution Patterns
### Pattern 1: Mandatory Skill Checking
```
User Request → ring:using-ring check → Relevant skill?
├─ Yes → Invoke skill → Follow workflow
└─ No → Proceed with task
```
**Implementation:** The ring:using-ring skill is loaded at session start and contains strict instructions to check for relevant skills before ANY task.
### Pattern 2: Parallel Review Execution
```
Review Request → ring:codereview skill → ring:review-slicer (classify)
├─ Small/focused PR → 8 Tasks in parallel (full diff)
└─ Large/multi-theme PR → For EACH slice:
├─ ring:code-reviewer ─┐
├─ ring:business-logic-reviewer │
├─ ring:security-reviewer │
├─ ring:test-reviewer │
├─ ring:nil-safety-reviewer ┼─→ Merge + dedup → Handle by severity
├─ ring:dead-code-reviewer │
├─ ring:consequences-reviewer │
└─ ring:performance-reviewer ─┘
```
**Implementation:** The `ring:review-slicer` agent classifies files into thematic slices for large PRs (15+ files). For each slice, all 8 reviewers dispatch in parallel via a single message with 8 Task tool calls. Results are merged and deduplicated before consolidation. Small PRs skip slicing entirely (zero overhead).
### Pattern 3: Progressive Skill Execution
```
Complex Skill → TodoWrite tracking
├─ Phase 1: Understanding [in_progress]
├─ Phase 2: Exploration [pending]
├─ Phase 3: Design [pending]
└─ Phase 4: Documentation [pending]
```
**Implementation:** Multi-phase skills use TodoWrite to track progress through structured workflows.
## Component Relationships
### Skills ↔ Agents
**Difference:**
- **Skills:** Instructions executed by current Claude instance
- **Agents:** Specialized reviewers executed by separate Claude instances
**Interaction:**
- Skills can invoke agents (e.g., ring:codereview skill dispatches review agents)
- Agents don't typically invoke skills (they're independent analyzers)
### Skills ↔ Shared Patterns
**Relationship:** Inheritance/composition
- Skills reference shared patterns for common behaviors
- Patterns provide reusable workflows (state tracking, failure recovery)
**Example:**
```markdown
# In a skill:
See `skills/shared-patterns/todowrite-integration.md` for tracking setup
```
### Hooks ↔ Skills
**Relationship:** Initialization and context loading
- Hooks load skill metadata at session start
- generate-skills-ref.py scans all SKILL.md frontmatter
- session-start.sh injects ring:using-ring skill content
**Data Flow:**
```
SKILL.md frontmatter → generate-skills-ref.py → formatted overview → session context
```
### Agents ↔ Orchestrator
**Relationship:** Agent dispatch via Task tool
- Agents are invoked via `Task(subagent_type: "ring:{agent-name}")`
- Review agents run in parallel for comprehensive analysis
- Agent specialization determines depth and quality of analysis
### TodoWrite ↔ Skills
**Relationship:** Progress tracking integration
- Multi-step skills create TodoWrite items
- Each phase updates todo status (pending → in_progress → completed)
- Provides user visibility into workflow progress
## Key Architectural Decisions
### 1. Parallel vs Sequential Reviews
**Decision:** Reviews run in parallel, not sequentially
**Rationale:** 3x faster feedback, comprehensive coverage, easier prioritization
**Implementation:** Single message with multiple Task calls
### 2. Session Context Injection
**Decision:** Load all skills metadata at session start
**Rationale:** Ensures Claude always knows available capabilities
**Trade-off:** Larger initial context vs. consistent skill awareness
### 3. Mandatory Workflows
**Decision:** Some skills (ring:using-ring) are non-negotiable
**Rationale:** Prevents common failures, enforces best practices
**Enforcement:** Loaded automatically, contains strict instructions
### 4. Skill vs Agent Separation
**Decision:** Skills for workflows, agents for analysis
**Rationale:** Different execution models (local vs. subagent)
**Benefit:** Clear separation of concerns
### 5. Frontmatter-Driven Discovery
**Decision:** All metadata in YAML frontmatter
**Rationale:** Single source of truth, easy parsing, consistent structure
**Usage:** Auto-generation of documentation, skill matching
## Extension Points
### Adding New Skills
1. Create `skills/{name}/SKILL.md` with frontmatter
2. Skills auto-discovered by generate-skills-ref.py
3. Available immediately after session restart
### Adding New Agents
1. Create `{plugin}/agents/{name}.md` with agent definition
2. Include YAML frontmatter: `name`, `description`, `version`
3. Invoke via Task tool with `subagent_type="ring:{name}"`
4. Review agents can run in parallel via `ring:codereview` skill
5. Developer agents provide domain expertise via direct Task invocation
### Adding Shared Patterns
1. Create `skills/shared-patterns/{pattern}.md`
2. Reference from skills that need the pattern
3. Maintains consistency across skills
### Adding New Plugins
1. Create plugin directory: `mkdir -p {plugin-name}/{skills,agents,hooks,lib}`
2. Register in `.claude-plugin/marketplace.json`:
```json
{
"name": "ring-{plugin-name}",
"version": "0.1.0",
"source": "./{plugin-name}",
"keywords": [...]
}
```
(Note: Initial version is 0.1.0, then managed via version bumps)
3. Create `{plugin-name}/hooks/hooks.json` for initialization
4. Add skills/agents following same structure as `default/`
## Performance Considerations
### Parallel Execution Benefits
- **3x faster reviews** - All reviewers run simultaneously
- **No blocking** - Independent agents don't wait for each other
- **Better resource utilization** - Multiple Claude instances work concurrently
### Context Management
- **Session start overhead** - One-time loading of skills context
- **Skill invocation** - Skills expand inline, no additional calls
- **Agent invocation** - Separate instances, clean context per agent
### Optimization Strategies
1. **Selective agent usage** - Only invoke relevant reviewers
2. **Skill caching** - Skills loaded once per session
3. **Parallel by default** - Never chain reviewers sequentially
4. **Early validation** - Preflight checks prevent wasted work
## Common Patterns and Anti-Patterns
### Patterns to Follow
✅ Check for relevant skills before any task
✅ Run reviewers in parallel for speed
✅ Use TodoWrite for multi-step workflows
✅ Reference shared patterns for consistency
✅ Specify models explicitly for agents
### Anti-Patterns to Avoid
❌ Skipping skill checks (violates ring:using-ring)
❌ Running reviewers sequentially (3x slower)
❌ Implementing without tests (violates TDD)
❌ Claiming completion without verification
❌ Hardcoding workflows instead of using skills
## Troubleshooting Guide
### Skills Not Loading
1. Check hooks/hooks.json configuration
2. Verify session-start.sh is executable
3. Ensure SKILL.md has valid frontmatter
### Parallel Reviews Not Working
1. Ensure all Task calls in single message
2. Verify agent names match exactly
3. Check agent names match exactly
### Context Overflow
1. Consider selective skill loading
2. Use focused agent invocations
3. Clear completed todos regularly
## Summary
Ring's architecture is designed for:
- **Modularity** - Independent, composable components across multiple plugins
- **Performance** - Parallel execution wherever possible (3x faster reviews)
- **Reliability** - Mandatory workflows prevent failures
- **Extensibility** - Easy to add new skills/agents/plugins
- **Scalability** - Marketplace structure supports product and team-specific plugins
- **Integration** - Seamless with Claude Code's native tools
### Current State
_Component counts reflect current state; plugin versions managed in `.claude-plugin/marketplace.json`_
| Component | Count | Location |
| ------------------------- | ---------- | ---------------------- |
| Active Plugins | 6 | All plugin directories |
| Skills (ring-default) | 23 | `default/skills/` |
| Skills (ring-dev-team) | 33 | `dev-team/skills/` |
| Skills (ring-finops-team) | 7 | `finops-team/skills/` |
| Skills (ring-pm-team) | 16 | `pm-team/skills/` |
| Skills (ring-pmo-team) | 9 | `pmo-team/skills/` |
| Skills (ring-tw-team) | 6 | `tw-team/skills/` |
| **Total Skills** | **94** | **All plugins** |
| Agents (ring-default) | 10 | `default/agents/` |
| Agents (ring-dev-team) | 13 | `dev-team/agents/` |
| Agents (ring-finops-team) | 3 | `finops-team/agents/` |
| Agents (ring-pm-team) | 4 | `pm-team/agents/` |
| Agents (ring-pmo-team) | 6 | `pmo-team/agents/` |
| Agents (ring-tw-team) | 3 | `tw-team/agents/` |
| **Total Agents** | **39** | **All plugins** |
| Hooks | Per plugin | `{plugin}/hooks/` |
The system achieves these goals through clear component separation, structured workflows, automatic context management, and a modular marketplace architecture, creating a robust foundation for AI-assisted software development.