The parallel code review process expands from 3 to 5 reviewers to enhance code quality. This introduces `ring:test-reviewer` and `ring:nil-safety-reviewer` to provide deeper analysis of test coverage and null safety patterns, improving overall reliability. The `dev-cycle` workflow is upgraded from a 6-gate to a 10-gate process, incorporating a sophisticated suite of automated testing gates: - Unit Testing (Gate 3) - Fuzz Testing (Gate 4) - Property-based Testing (Gate 5) - Integration Testing (Gate 6) - Chaos Testing (Gate 7) This change establishes a much higher standard for testing and ensures features are more resilient and production-ready. Finally, new agents and commands are added to the PMO and Product plugins to support delivery tracking, design validation, and reporting, further extending the system's capabilities across the development lifecycle. All documentation is updated to reflect these enhancements.
31 KiB
Ring Architecture Documentation
Table of Contents
- Overview
- Marketplace Structure
- Component Hierarchy
- Core Components
- Data & Control Flow
- Integration with Claude Code
- Execution Patterns
- Component Relationships
Overview
Ring is a Claude Code plugin marketplace that provides a comprehensive skills library and workflow system with 6 active plugins. 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:
- Mandatory Workflows - Critical skills (like ring:using-ring) enforce specific behaviors
- Parallel Execution - Review systems run concurrently for speed
- Session Context - Skills load automatically at session start
- Modular Plugins - Specialized plugins for different domains and teams
System Boundaries
┌─────────────────────────────────────────────────────────────────────────────────┐
│ Claude Code │
│ ┌───────────────────────────────────────────────────────────────────────────┐ │
│ │ Ring Marketplace │ │
│ │ ┌──────────────────────┐ ┌──────────────────────┐ │ │
│ │ │ ring-default │ │ ring-dev-team │ │ │
│ │ │ Skills(25) Agents(7) │ │ Skills(13) Agents(10)│ │ │
│ │ │ Cmds(12) Hooks/Lib │ │ Cmds(5) │ │ │
│ │ └──────────────────────┘ └──────────────────────┘ │ │
│ │ ┌──────────────────────┐ ┌──────────────────────┐ │ │
│ │ │ ring-pm-team │ │ ring-tw-team │ │ │
│ │ │ Skills(13) Agents(4) │ │ Skills(7) Agents(3) │ │ │
│ │ │ Cmds(3) │ │ Cmds(3) │ │ │
│ │ └──────────────────────┘ └──────────────────────┘ │ │
│ │ ┌──────────────────────┐ ┌──────────────────────┐ │ │
│ │ │ ring-finops-team │ │ ring-pmo-team │ │ │
│ │ │ Skills(7) Agents(3) │ │ Skills(9) Agents(6) │ │ │
│ │ └──────────────────────┘ │ Cmds(4) │ │ │
│ │ └──────────────────────┘ │ │
│ └───────────────────────────────────────────────────────────────────────────┘ │
│ │
│ Native Tools: Skill, Task, TodoWrite, SlashCommand │
└─────────────────────────────────────────────────────────────────────────────────┘
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 | 25 skills, 7 agents, 12 commands |
| ring-dev-team | Developer agents | 13 skills, 10 agents, 5 commands |
| ring-finops-team | FinOps regulatory compliance | 7 skills, 3 agents |
| ring-pm-team | Product planning workflows | 13 skills, 4 agents, 3 commands |
| ring-pmo-team | PMO portfolio management specialists | 9 skills, 6 agents, 4 commands |
| ring-tw-team | Technical writing specialists | 7 skills, 3 agents, 3 commands |
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.mdfiles - YAML frontmatter:
name,description,when_to_use - Invoked via Claude's
Skilltool - 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/
├── ring:code-reviewer.md # Foundation review (architecture, patterns)
├── ring:business-logic-reviewer.md # Correctness review (requirements, edge cases)
├── ring:security-reviewer.md # Safety review (OWASP, auth, validation)
├── ring:test-reviewer.md # Test coverage and quality review
├── ring:nil-safety-reviewer.md # Null/nil safety analysis
├── ring:write-plan.md # Implementation planning
└── ring:codebase-explorer.md # Deep architecture analysis (Opus)
Structure (ring-dev-team plugin):
dev-team/agents/
├── ring:backend-engineer-golang.md # Go backend specialist for financial systems
├── ring:backend-engineer-typescript.md # TypeScript/Node.js backend specialist
├── ring:devops-engineer.md # DevOps infrastructure specialist
├── ring:frontend-bff-engineer-typescript.md # BFF & React/Next.js frontend specialist
├── ring:frontend-designer.md # Visual design specialist
├── ring:frontend-engineer.md # General frontend development
├── ring:prompt-quality-reviewer.md # AI prompt quality review
├── ring:qa-analyst.md # Quality assurance specialist
├── ring:sre.md # Site reliability engineer
└── ring:ui-engineer.md # UI component specialist
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
Tasktool withsubagent_type - Must specify model (typically "opus" for comprehensive analysis)
- Review agents run in parallel (5 reviewers dispatch simultaneously via
/ring:codereviewcommand) - Developer agents provide specialized domain expertise
- Return structured reports with severity-based findings
Note: Parallel review orchestration is handled by the /ring:codereview command
Standards Compliance Output (ring-dev-team agents):
All ring-dev-team agents include a ## Standards Compliance section in their output schema:
- 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 │
│ ↓ │
│ 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→ loadsgolang.mdring:backend-engineer-typescript→ loadstypescript.mdring:devops-engineer→ loadsdevops.mdfrontend-bff-engineer-typescript→ loadsfrontend.mdring:frontend-designer→ loadsfrontend.mdring:qa-analyst→ loadsqa.mdring:sre→ loadssre.md
Output Format (when non-compliant):
## 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 requirementdev-team/hooks/session-start.sh: Injects guidance at session start
3. Commands (commands/)
Purpose: Slash commands that provide shortcuts to skills/workflows
Structure:
default/commands/
├── brainstorm.md # /ring:brainstorm - Socratic design refinement
├── codereview.md # /ring:codereview - Parallel 5-reviewer dispatch
├── commit.md # /ring:commit - Git commit with trailers
├── create-handoff.md # /ring:create-handoff - Create session handoff
├── execute-plan.md # /ring:execute-plan - Batch execution
├── explore-codebase.md # /ring:explore-codebase - Deep architecture analysis
├── interview-me.md # /ring:interview-me - Interactive interview
├── lint.md # /ring:lint - Run linters and fix issues
├── release-guide.md # /ring:release-guide - Release guidance
├── resume-handoff.md # /ring:resume-handoff - Resume from handoff
├── worktree.md # /ring:worktree - Git worktree creation
└── write-plan.md # /ring:write-plan - Implementation planning
pm-team/commands/
├── delivery-status.md # /ring:delivery-status - Delivery status tracking
├── pre-dev-feature.md # /ring:pre-dev-feature - 5-gate workflow
└── pre-dev-full.md # /ring:pre-dev-full - 10-gate workflow
pmo-team/commands/
├── delivery-report.md # /ring:delivery-report - PMO delivery reporting
├── dependency-analysis.md # /ring:dependency-analysis - Dependency analysis
├── executive-summary.md # /ring:executive-summary - Executive summary
└── portfolio-review.md # /ring:portfolio-review - Portfolio review
dev-team/commands/
├── dev-cancel.md # /ring:dev-cancel - Cancel dev cycle
├── dev-cycle.md # /ring:dev-cycle - 10-gate development cycle
├── dev-refactor.md # /ring:dev-refactor - Standards refactoring
├── dev-report.md # /ring:dev-report - Development reporting
└── dev-status.md # /ring:dev-status - Development status
tw-team/commands/
├── review-docs.md # /ring:review-docs - Documentation review
├── write-api.md # /ring:write-api - API documentation
└── write-guide.md # /ring:write-guide - Guide writing
Key Characteristics:
- Simple
.mdfiles with YAML frontmatter - Invoked via
/{command}syntax - Typically reference a corresponding skill
- Expand into full skill/agent invocation
4. 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
5. 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:
{
"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
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
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
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
User->>Claude: /ring:codereview
Note over Claude: Command provides<br/>parallel review workflow
Claude->>Task Tool: Dispatch 5 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
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
Note over Claude: Aggregate & prioritize by severity
Claude->>User: Consolidated report
Integration with Claude Code
Native Tool Integration
Ring leverages four primary Claude Code tools:
-
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
- Invokes skills by name:
-
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
- Dispatches agents to subagent instances:
-
TodoWrite Tool
- Tracks multi-step workflows:
TodoWrite(todos=[...]) - Integrates with skills via shared patterns
- Provides progress visibility to users
- Tracks multi-step workflows:
-
SlashCommand Tool
- Executes commands:
SlashCommand(command="/ring:brainstorm") - Commands expand to skill/agent invocations
- Provides user-friendly shortcuts
- Executes commands:
Session Context Injection
At session start, Ring injects two critical pieces of context:
- Skills Quick Reference - Auto-generated overview of all available skills
- 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 → Dispatch 5 Tasks (parallel)
├─ ring:code-reviewer ─┐
├─ ring:business-logic-reviewer │
├─ ring:security-reviewer ┼─→ Aggregate findings → Handle by severity
├─ ring:test-reviewer │
└─ ring:nil-safety-reviewer ─┘
Implementation: Single message with 5 Task tool calls ensures parallel execution. All reviewers work independently and return simultaneously.
Pattern 3: Skill-to-Command Mapping
User: /ring:brainstorm
↓
SlashCommand Tool
↓
commands/brainstorm.md
↓
"Use and follow the ring:brainstorming skill"
↓
Skill Tool: ring:brainstorming
↓
skills/brainstorming/SKILL.md
Implementation: Commands are thin wrappers that immediately invoke corresponding skills.
Pattern 4: 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:requesting-code-review skill dispatches review agents)
- Agents don't typically invoke skills (they're independent analyzers)
Skills ↔ Commands
Relationship: One-to-one or one-to-many mapping
- Most commands map directly to a single skill
- Some commands (like review) orchestrate multiple components
Example Mappings:
/ring:brainstorm→ring:brainstormingskill/ring:write-plan→ring:writing-plansskill/ring:codereview→ dispatches 5 parallel review agents (ring:code-reviewer,ring:business-logic-reviewer,ring:security-reviewer,ring:test-reviewer,ring:nil-safety-reviewer)
Skills ↔ Shared Patterns
Relationship: Inheritance/composition
- Skills reference shared patterns for common behaviors
- Patterns provide reusable workflows (state tracking, failure recovery)
Example:
# 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 ↔ Models
Relationship: Model requirement specification
- Agents specify required AI model in frontmatter
- Review agents typically require "opus" for comprehensive analysis
- Model choice affects 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
- Create
skills/{name}/SKILL.mdwith frontmatter - Skills auto-discovered by generate-skills-ref.py
- Available immediately after session restart
Adding New Agents
- Create
{plugin}/agents/{name}.mdwith model specification - Include YAML frontmatter:
name,description,model,version - Invoke via Task tool with
subagent_type="ring:{name}" - Review agents can run in parallel via
/ring:codereview - Developer agents provide domain expertise via direct Task invocation
Adding New Commands
- Create
commands/{name}.md - Reference skill or agent to invoke
- Available via
/{name}
Adding Shared Patterns
- Create
skills/shared-patterns/{pattern}.md - Reference from skills that need the pattern
- Maintains consistency across skills
Adding New Plugins
- Create plugin directory:
mkdir -p {plugin-name}/{skills,agents,commands,hooks,lib} - Register in
.claude-plugin/marketplace.json:
(Note: Initial version is 0.1.0, then managed via version bumps){ "name": "ring-{plugin-name}", "version": "0.1.0", "source": "./{plugin-name}", "keywords": [...] } - Create
{plugin-name}/hooks/hooks.jsonfor initialization - 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
- Selective agent usage - Only invoke relevant reviewers
- Skill caching - Skills loaded once per session
- Parallel by default - Never chain reviewers sequentially
- 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
- Check hooks/hooks.json configuration
- Verify session-start.sh is executable
- Ensure SKILL.md has valid frontmatter
Parallel Reviews Not Working
- Ensure all Task calls in single message
- Verify model specification (opus required)
- Check agent names match exactly
Commands Not Recognized
- Verify command file exists in commands/
- Check command name matches file name
- Ensure proper frontmatter in command file
Context Overflow
- Consider selective skill loading
- Use focused agent invocations
- 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/commands/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) | 25 | default/skills/ |
| Skills (ring-dev-team) | 13 | dev-team/skills/ |
| Skills (ring-finops-team) | 7 | finops-team/skills/ |
| Skills (ring-pm-team) | 13 | pm-team/skills/ |
| Skills (ring-pmo-team) | 9 | pmo-team/skills/ |
| Skills (ring-tw-team) | 7 | tw-team/skills/ |
| Total Skills | 74 | All plugins |
| Agents (ring-default) | 7 | default/agents/ |
| Agents (ring-dev-team) | 10 | 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 | 33 | All plugins |
| Commands (ring-default) | 12 | default/commands/ |
| Commands (ring-dev-team) | 5 | dev-team/commands/ |
| Commands (ring-pm-team) | 3 | pm-team/commands/ |
| Commands (ring-pmo-team) | 4 | pmo-team/commands/ |
| Commands (ring-tw-team) | 3 | tw-team/commands/ |
| Total Commands | 27 | 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.