|
| 1 | +<!-- SPDX-License-Identifier: PMPL-1.0-or-later --> |
| 2 | +<!-- TOPOLOGY.md — Project architecture map and completion dashboard --> |
| 3 | +<!-- Last updated: 2026-02-19 --> |
| 4 | + |
| 5 | +# conflow — Project Topology |
| 6 | + |
| 7 | +## System Architecture |
| 8 | + |
| 9 | +``` |
| 10 | + ┌─────────────────────────────────────────┐ |
| 11 | + │ OPERATOR / CLI │ |
| 12 | + │ (conflow run / init / watch) │ |
| 13 | + └───────────────────┬─────────────────────┘ |
| 14 | + │ |
| 15 | + ▼ |
| 16 | + ┌─────────────────────────────────────────┐ |
| 17 | + │ CONFLOW ORCHESTRATOR │ |
| 18 | + │ (Rust, Pipeline Mgmt, Caching) │ |
| 19 | + └──────────┬───────────────────┬──────────┘ |
| 20 | + │ │ |
| 21 | + ▼ ▼ |
| 22 | + ┌───────────────────────┐ ┌────────────────────────────────┐ |
| 23 | + │ CONFIG ANALYSIS │ │ RSR COMPLIANCE ENGINE │ |
| 24 | + │ - Tool Recommendation │ │ - Validation & Auto-fix │ |
| 25 | + │ - Dependency Graph │ │ - Badge Generation │ |
| 26 | + └──────────┬────────────┘ └──────────┬─────────────────────┘ |
| 27 | + │ │ |
| 28 | + └────────────┬─────────────┘ |
| 29 | + ▼ |
| 30 | + ┌─────────────────────────────────────────┐ |
| 31 | + │ TOOLCHAIN INTERFACE │ |
| 32 | + │ ┌───────────┐ ┌───────────┐ ┌───────┐│ |
| 33 | + │ │ Nickel │ │ CUE │ │ Shell ││ |
| 34 | + │ │ (Gen) │ │ (Vet/Exp) │ │ (Hook)││ |
| 35 | + │ └─────┬─────┘ └─────┬─────┘ └───────┘│ |
| 36 | + └────────│──────────────│─────────────────┘ |
| 37 | + │ │ |
| 38 | + ▼ ▼ |
| 39 | + ┌─────────────────────────────────────────┐ |
| 40 | + │ CONFIGURATION ASSETS │ |
| 41 | + │ (config.ncl, schema.cue, etc.) │ |
| 42 | + └─────────────────────────────────────────┘ |
| 43 | +
|
| 44 | + ┌─────────────────────────────────────────┐ |
| 45 | + │ REPO INFRASTRUCTURE │ |
| 46 | + │ Justfile / Nix .machine_readable/ │ |
| 47 | + │ ClusterFuzzLite RSR Silver Tier │ |
| 48 | + └─────────────────────────────────────────┘ |
| 49 | +``` |
| 50 | + |
| 51 | +## Completion Dashboard |
| 52 | + |
| 53 | +``` |
| 54 | +COMPONENT STATUS NOTES |
| 55 | +───────────────────────────────── ────────────────── ───────────────────────────────── |
| 56 | +CORE ORCHESTRATOR |
| 57 | + Pipeline Runner (Rust) ██████████ 100% Dependency stages stable |
| 58 | + Smart Caching ████████░░ 80% Hashing logic refining |
| 59 | + Config Analyzer ██████████ 100% Nickel vs CUE heuristic verified |
| 60 | + CLI Interface (conflow) ██████████ 100% Full command set active |
| 61 | +
|
| 62 | +RSR INTEGRATION |
| 63 | + Compliance Engine ██████████ 100% Silver tier rules verified |
| 64 | + Auto-remediation ██████░░░░ 60% Fix patterns expanding |
| 65 | + Badge Generation ██████████ 100% SVG templates stable |
| 66 | +
|
| 67 | +REPO INFRASTRUCTURE |
| 68 | + Justfile / Nix ██████████ 100% Reproducible build env |
| 69 | + .machine_readable/ ██████████ 100% STATE.a2ml tracking |
| 70 | + Fuzz Testing ████████░░ 80% ClusterFuzzLite active |
| 71 | +
|
| 72 | +───────────────────────────────────────────────────────────────────────────── |
| 73 | +OVERALL: █████████░ ~90% v0.1.0 RSR Silver Compliant |
| 74 | +``` |
| 75 | + |
| 76 | +## Key Dependencies |
| 77 | + |
| 78 | +``` |
| 79 | +conflow.yaml ───► Dependency Graph ───► Nickel Export ───► CUE Vet |
| 80 | + │ │ │ │ |
| 81 | + ▼ ▼ ▼ ▼ |
| 82 | +Cache Store ─────► Action Plan ───────► JSON Output ────► Deployment |
| 83 | +``` |
| 84 | + |
| 85 | +## Update Protocol |
| 86 | + |
| 87 | +This file is maintained by both humans and AI agents. When updating: |
| 88 | + |
| 89 | +1. **After completing a component**: Change its bar and percentage |
| 90 | +2. **After adding a component**: Add a new row in the appropriate section |
| 91 | +3. **After architectural changes**: Update the ASCII diagram |
| 92 | +4. **Date**: Update the `Last updated` comment at the top of this file |
| 93 | + |
| 94 | +Progress bars use: `█` (filled) and `░` (empty), 10 characters wide. |
| 95 | +Percentages: 0%, 10%, 20%, ... 100% (in 10% increments). |
0 commit comments