Skip to main content

Agent Consolidation - Complete Agent List

Comprehensive list of all agents to be created in the centralized structure

Date: January 8, 2026


Agent Organization Structure

juniro-docs/docs/agents/
├── agent-overview.md (central index)
├── ORCHESTRATION.md (collaboration protocol - optional)
├── _TEMPLATE.md (for creating new agents)
├── shared-agents/ (agents used across multiple repos)
│ ├── [base definitions]
│ └── [domain variants]
└── domain-agents/ (single-instance, domain-specific)
└── [domain-specific agents]

Complete Agent List

📋 Index & Documentation (3 files)

FilePurposeStatus
agent-overview.mdCentral index, quick reference, how to use🆕 New
ORCHESTRATION.mdCollaboration protocol (optional)🆕 New
_TEMPLATE.mdTemplate for creating new agents🆕 New

🔄 Shared Agents (Base + Variants)

These agents are used across multiple repos. We'll create:

  1. Base definition (common protocol, mindset, report format)
  2. Domain variants (repo-specific customizations)

1. Verifier Agent (9 copies → 1 base + 4 variants)

FilePurposeUsed In
shared-agents/verifier.mdBase definition - common protocolAll repos
shared-agents/verifier-api.mdAPI-specific variantjuniro-api
shared-agents/verifier-frontend.mdFrontend-specific variantAll web repos
shared-agents/verifier-e2e.mdE2E testing variantWeb repos (optional)
shared-agents/verifier-design.mdDesign system variantjuniro-design
shared-agents/verifier-docs.mdDocumentation variantjuniro-docs
shared-agents/verifier-infra.mdInfrastructure variantjuniro-infra

Current State: 9 copies across all repos
New State: 1 base + 6 variants = 7 files (reduces duplication by 22%)


2. Ship-Check Agent (6 copies → 1 base + 2 variants)

FilePurposeUsed In
shared-agents/ship-check.mdBase definition - release gatekeeperAll repos
shared-agents/ship-check-design.mdDesign system variantjuniro-design
shared-agents/ship-check-web.mdWeb app variantAll web repos

Current State: 6 copies (design + all web repos)
New State: 1 base + 2 variants = 3 files (reduces duplication by 50%)


3. Design-Audit Agent (5 copies → 1 base + 2 variants)

FilePurposeUsed In
shared-agents/design-audit.mdBase definition - design system complianceAll repos
shared-agents/design-audit-design.mdDesign system variant (full context)juniro-design
shared-agents/design-audit-web.mdWeb app variant (simplified)All web repos

Current State: 5 copies (design + all web repos)
Note: Delete orphaned designaudit.mdc
New State: 1 base + 2 variants = 3 files (reduces duplication by 40%)


4. API-Wirer Agent (4 copies → 1 shared)

FilePurposeUsed In
shared-agents/api-wirer.mdReplaces mock data with API callsAll web repos

Current State: 4 copies (all web repos)
New State: 1 shared file (reduces duplication by 75%)


5. Auth-Implementer Agent (4 copies → 1 shared)

FilePurposeUsed In
shared-agents/auth-implementer.mdWires Supabase AuthAll web repos

Current State: 4 copies (all web repos)
New State: 1 shared file (reduces duplication by 75%)


6. Security-Audit Agent (3 copies → 1 base + 2 variants)

FilePurposeUsed In
shared-agents/security-audit.mdBase definition - security checksAll repos
shared-agents/security-audit-api.mdAPI-specific variantjuniro-api
shared-agents/security-audit-web.mdWeb app variantjuniro-web-launch
shared-agents/security-audit-design.mdDesign system variantjuniro-design

Current State: 3 copies (design, api, launch)
New State: 1 base + 3 variants = 4 files


7. Reviewer Agent (2 copies → 1 shared)

FilePurposeUsed In
shared-agents/reviewer.mdSenior Engineer code reviewjuniro-design, juniro-web-launch

Current State: 2 copies
New State: 1 shared file (reduces duplication by 50%)


8. SEO-Audit Agent (2 copies → 1 shared)

FilePurposeUsed In
shared-agents/seo-audit.mdSEO optimization checkjuniro-web-public, juniro-web-launch

Current State: 2 copies
New State: 1 shared file (reduces duplication by 50%)


9. A11y-Audit Agent (2 copies → 1 shared)

FilePurposeUsed In
shared-agents/a11y-audit.mdAccessibility audit (WCAG 2.1 AA)juniro-design, juniro-web-launch

Current State: 2 copies
New State: 1 shared file (reduces duplication by 50%)


🎯 Domain-Specific Agents (Single Instance)

These agents are unique to specific domains/repos.

Design System Agents (juniro-design)

FilePurposeStatus
domain-agents/component-builder.mdCreates new components following conventions✅ Exists
domain-agents/qa-coverage.mdQA Coverage - test, story, and theme coverage audit✅ Exists
domain-agents/storybook-audit.mdStorybook Quality - story coverage, play functions✅ Exists
domain-agents/responsive-audit.mdResponsive Auditor - mobile/tablet visual testing✅ Exists
domain-agents/perf-audit.mdPerformance - Core Web Vitals, bundle size✅ Exists

Backend API Agents (juniro-api)

FilePurposeStatus
domain-agents/endpoint-builder.mdCreates API endpoints with OpenAPI/Zod✅ Exists

Documentation Agents (juniro-docs)

FilePurposeStatus
domain-agents/docs-sync.mdAuto-syncs docs with code changes✅ Exists
domain-agents/roadmap-updater.mdUpdates product-status.md✅ Exists
domain-agents/component-tracker.mdTracks design system changes✅ Exists
domain-agents/launch-tracker.mdTracks 45-day launch countdown✅ Exists
domain-agents/agent-registry-sync.mdQuick agent-only registry sync✅ Exists
domain-agents/claude-audit.mdAudits CLAUDE.md accuracy across repos✅ Exists

Infrastructure Agents (juniro-infra)

FilePurposeStatus
domain-agents/sync-runner.mdRuns/validates design system syncs✅ Exists

Summary Statistics

Current State

  • Total .mdc files: 51
  • Unique agent types: 23
  • Duplicated files: 28 (55%)

New State (After Consolidation)

  • Total agent definition files: ~35
    • Shared agents: ~25 files (base + variants)
    • Domain agents: ~10 files
  • Reduction: ~31% fewer files
  • Duplication reduction: 55% → ~10% (only intentional variants)

File Count Breakdown

CategoryCurrentNewReduction
Verifier9 files7 files22%
Ship-Check6 files3 files50%
Design-Audit5 files3 files40%
API-Wirer4 files1 file75%
Auth-Implementer4 files1 file75%
Security-Audit3 files4 files-33% (better organization)
Reviewer2 files1 file50%
SEO-Audit2 files1 file50%
A11y-Audit2 files1 file50%
Domain Agents14 files10 files29%
Index/Docs0 files3 filesNew
TOTAL51 files~35 files31% reduction

Complete File List

Index & Documentation (3)

  1. agent-overview.md
  2. ORCHESTRATION.md (optional)
  3. _TEMPLATE.md

Shared Agents - Base Definitions (9)

  1. shared-agents/verifier.md
  2. shared-agents/ship-check.md
  3. shared-agents/design-audit.md
  4. shared-agents/api-wirer.md
  5. shared-agents/auth-implementer.md
  6. shared-agents/security-audit.md
  7. shared-agents/reviewer.md
  8. shared-agents/seo-audit.md
  9. shared-agents/a11y-audit.md

Shared Agents - Domain Variants (16)

  1. shared-agents/verifier-api.md
  2. shared-agents/verifier-frontend.md
  3. shared-agents/verifier-e2e.md
  4. shared-agents/verifier-design.md
  5. shared-agents/verifier-docs.md
  6. shared-agents/verifier-infra.md
  7. shared-agents/ship-check-design.md
  8. shared-agents/ship-check-web.md
  9. shared-agents/design-audit-design.md
  10. shared-agents/design-audit-web.md
  11. shared-agents/security-audit-api.md
  12. shared-agents/security-audit-web.md
  13. shared-agents/security-audit-design.md

Domain-Specific Agents (10)

  1. domain-agents/component-builder.md
  2. domain-agents/qa-coverage.md
  3. domain-agents/storybook-audit.md
  4. domain-agents/responsive-audit.md
  5. domain-agents/perf-audit.md
  6. domain-agents/endpoint-builder.md
  7. domain-agents/docs-sync.md
  8. domain-agents/roadmap-updater.md
  9. domain-agents/component-tracker.md
  10. domain-agents/launch-tracker.md
  11. domain-agents/agent-registry-sync.md
  12. domain-agents/claude-audit.md
  13. domain-agents/sync-runner.md

Total: ~38 agent definition files


Agent Categories

Quality & Compliance Agents

  • @verifier (base + variants)
  • @ship-check (base + variants)
  • @design-audit (base + variants)
  • @reviewer
  • @qa-coverage
  • @storybook-audit
  • @a11y-audit
  • @responsive-audit
  • @perf-audit
  • @security-audit (base + variants)
  • @seo-audit

Development Agents

  • @component-builder
  • @endpoint-builder
  • @api-wirer
  • @auth-implementer

Operations Agents

  • @docs-sync
  • @roadmap-updater
  • @component-tracker
  • @launch-tracker
  • @agent-registry-sync
  • @claude-audit
  • @sync-runner

Implementation Priority

Phase 1: Foundation (High Priority)

  1. agent-overview.md - Central index
  2. _TEMPLATE.md - Template for new agents
  3. shared-agents/verifier.md - Most duplicated agent
  4. shared-agents/verifier-api.md - API variant
  5. shared-agents/verifier-frontend.md - Frontend variant

Phase 2: High-Duplication Agents

  1. shared-agents/ship-check.md + variants
  2. shared-agents/design-audit.md + variants
  3. shared-agents/api-wirer.md
  4. shared-agents/auth-implementer.md

Phase 3: Remaining Shared Agents

  1. shared-agents/security-audit.md + variants
  2. shared-agents/reviewer.md
  3. shared-agents/seo-audit.md
  4. shared-agents/a11y-audit.md

Phase 4: Domain Agents

  1. All domain-specific agents (migrate existing)

Phase 5: Optional

  1. ORCHESTRATION.md - If orchestration model desired

Notes

Agents to Delete

  • juniro-design/.cursor/rules/designaudit.mdc (orphaned, use design-audit.mdc instead)

Agents Not in Current List

  • No new agents planned beyond consolidating existing ones
  • Future agents can be added using _TEMPLATE.md

Variant Strategy

  • Base definitions contain 80-90% shared content
  • Variants add 10-20% domain-specific customizations
  • Repo .mdc files become lightweight references

Total Agents to Create: ~38 files Reduction from Current: 51 files → ~35 files (31% reduction) Duplication Reduction: 55% → ~10% (only intentional variants)