structure_reference.md
1 # Repository Structure Reference 2 3 ```text 4 alpha-delta-context/ 5 ├── CLAUDE.md # Root context file 6 ├── project/ 7 │ ├── architecture/ 8 │ │ ├── overview.md # High-level system design (adnet unified binary) 9 │ │ ├── alpha-chain.md # ALPHA chain: credits-only, AlphaVM, privacy 10 │ │ ├── delta-chain.md # DELTA chain: exchange, perpetuals, governance 11 │ │ ├── bridge.md # Cross-chain attestation (internal IPC) 12 │ │ └── governance.md # GCI and DX governance systems 13 │ ├── descriptive-docs/ 14 │ │ ├── ALPHA_DELTA_Technical_Specification_v3_0.md # MASTER SPEC 15 │ │ └── source-materials/ # Original documentation sources 16 │ ├── implementation/ 17 │ │ ├── status.md # Current state of implementation 18 │ │ ├── blockers.md # Active blockers and dependencies 19 │ │ └── next-steps.md # Prioritized task queue 20 │ ├── tokenomics.md # AX/DX/sAX token economics 21 │ └── decisions.md # Architectural Decision Records (15+ decisions) 22 ├── devops/ 23 │ ├── workflows.md # Git workflows, PR processes 24 │ ├── repo-standards/ 25 │ │ ├── structure.md # Standard repo layout 26 │ │ ├── branching.md # Branch naming, merge strategy 27 │ │ └── naming.md # Naming conventions 28 │ ├── ci-templates/ 29 │ │ ├── rust-native.yml # Forgejo workflow for Rust 30 │ │ └── README.md # How to use templates 31 │ └── troubleshooting/ 32 │ ├── index.md # Quick lookup by symptom 33 │ ├── radicle.md # Radicle-specific issues 34 │ ├── forgejo.md # Forgejo/runner issues 35 │ └── rust-builds.md # Build/compilation issues 36 ├── infra/ 37 │ ├── overview.md # How all pieces connect 38 │ ├── bootstrap/ 39 │ │ ├── base-server.md # Fresh droplet → baseline 40 │ │ └── scripts/ # Automation scripts 41 │ ├── tools/ 42 │ │ ├── rust-toolchain.md # Rust setup, version pinning 43 │ │ └── dependencies.md # System packages 44 │ ├── radicle/ 45 │ │ ├── install.md # Installation procedure 46 │ │ ├── config/ # Template configurations 47 │ │ ├── seeding.md # Seeding and replication 48 │ │ └── android-backup.md # Termux node setup 49 │ ├── forgejo/ 50 │ │ ├── install.md # Server installation 51 │ │ ├── config/ # app.ini templates 52 │ │ ├── runner/ 53 │ │ │ ├── install.md # Runner setup 54 │ │ │ ├── config/ # Runner configurations 55 │ │ │ └── native-builds.md # Non-Docker build setup 56 │ │ └── backup-restore.md # Backup procedures 57 │ ├── networking/ 58 │ │ ├── dns.md # Domain configuration 59 │ │ ├── caddy/ # Reverse proxy configuration 60 │ │ └── certificates.md # TLS/cert management (auto via Caddy) 61 │ └── environments/ 62 │ ├── dev.md # Dev-specific setup 63 │ └── production.md # Prod hardening 64 ├── runbooks/ 65 │ ├── new-dev-server.md # Zero → working dev environment 66 │ ├── new-prod-server.md # Zero → production server 67 │ ├── disaster-recovery.md # Recovery procedures 68 │ └── onboard-new-repo.md # Adding repos to ecosystem 69 ├── build-history/ 70 │ ├── README.md # How to use this section 71 │ ├── index.md # Master chronological timeline 72 │ ├── alpha/ 73 │ ├── delta/ 74 │ ├── bridge/ 75 │ ├── infra/ 76 │ └── rebuild-from-scratch.md # Generated: full rebuild recipe 77 └── sessions/ 78 └── .gitkeep # Session logs go here