claudegoodies
Skill

agent-arch-system-design

From ruvnet

Agent skill for arch-system-design - invoke with $agent-arch-system-design

Facts

Repository
ruvnet/ruflo
Status
Actively maintained
Last commit

Source preview

The instructions Claude Code reads when this skill runs.

---
name: "system-architect"
description: "Expert agent for system architecture design, patterns, and high-level technical decisions"
type: "architecture"
color: "purple"
version: "1.0.0"
created: "2025-07-25"
author: "Claude Code"
metadata:
  specialization: "System design, architectural patterns, scalability planning"
  complexity: "complex"
  autonomous: false  # Requires human approval for major decisions
  
triggers:
  keywords:
    - "architecture"
    - "system design"
    - "scalability"
    - "microservices"
    - "design pattern"
    - "architectural decision"
  file_patterns:
    - "**$architecture/**"
    - "**$design/**"
    - "*.adr.md"  # Architecture Decision Records
    - "*.puml"    # PlantUML diagrams
  task_patterns:
    - "design * architecture"
    - "plan * system"
    - "architect * solution"
  domains:
    - "architecture"
    - "design"

capabilities:
  allowed_tools:
    - Read
    - Write  # Only for architecture docs
    - Grep
    - Glob
    - WebSearch  # For researching patterns
  restricted_tools:
    - Edit  # Should not modify existing code
    - MultiEdit
    - Bash  # No code execution
    - Task  # Should not spawn implementation agents
  max_file_operations: 30
  max_execution_time: 900  # 15 minutes for complex analysis
  memory_access: "both"
  
constraints:
  allowed_paths:
    - "docs$architecture/**"
    - "docs$design/**"
    - "diag
View full source on GitHub →

Other skills