docs: add module documentation in AsciiDoc with PlantUML diagrams

Generated by per-group subagents covering all 52 modules across:
core (18), infrastructure (10), apps (5), interfaces (3),
plugins (7), testing (9)

Documentation format:
- AsciiDoc (.adoc) files in docs/modules/<group>/
- PlantUML (.puml) files in docs/diagrams/
- .adoc files reference diagrams via include:: directives

Each doc covers: purpose, responsibilities, non-responsibilities,
key types, event flow, integration points, invariants, PlantUML
diagram, known issues, and open questions.
This commit is contained in:
2026-05-26 16:59:21 +04:00
parent eadf23c945
commit 9734eec63c
103 changed files with 6045 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
@startuml
!theme plain
package "infra-workflow" {
interface WorkflowLoader
class TomlWorkflowLoader
class ConditionSpec
class ConditionFactory
interface PromptLoader
class FileSystemPromptLoader
class PromptNotFoundException
class WorkflowValidationException
}
interface WorkflowGraph <<core:transitions>>
WorkflowLoader --> WorkflowGraph : load()
WorkflowLoader <|.. TomlWorkflowLoader
TomlWorkflowLoader --> ConditionSpec : parses
TomlWorkflowLoader --> ConditionFactory : uses
ConditionFactory --> ConditionSpec : converts
PromptLoader <|.. FileSystemPromptLoader
TommWorkflowLoader --> WorkflowValidationException : throws
FileSystemPromptLoader --> PromptNotFoundException : throws
@enduml