# ============================================================================ # Read-Only Action — Investigation / Audit Use Case # ============================================================================ # An action that only performs read operations. Useful for investigations, # architecture reviews, or dry-run planning. # Create: agents action create --config examples/actions/read-only.yaml # ============================================================================ name: local/architecture-review description: "Review project architecture and produce a report" long_description: | Analyzes the project structure, dependency graph, and code patterns to produce an architecture review report. Does not modify any files. strategy_actor: local/strategist execution_actor: local/executor definition_of_done: | Architecture review report generated covering: - Module dependency graph - Layer boundary compliance - Circular dependency detection - Code duplication analysis reusable: true read_only: true state: available