@@ -26,6 +26,7 @@ wait0 is an ultra-fast cache-first HTTP reverse proxy written in Go that serves
2626│ ├── *_runtime_adapter.go # Root adapters that inject Service deps into modules
2727│ ├── auth/ # Shared bearer authentication
2828│ ├── invalidation/ # /wait0/invalidate API + async workers
29+ │ ├── statapi/ # /wait0 stats API endpoint + snapshot payloads
2930│ ├── dashboard/ # /wait0/dashboard HTML + stats/invalidation bridge handlers
3031│ ├── proxy/ # Request handling/origin fetch/response headers
3132│ ├── revalidation/ # Revalidate and warmup orchestration
@@ -34,14 +35,18 @@ wait0 is an ultra-fast cache-first HTTP reverse proxy written in Go that serves
3435│ └── cache/ # Cache internals (RAM + LevelDB + codec)
3536├── debug/
3637│ ├── debug-compose.yml # Local debug stack (origin + wait0)
37- │ ├── wait0.yaml # Debug configuration example
38- │ ├── debug.sh # Helper script for local debugging
38+ │ └── wait0.yaml # Debug configuration example
39+ ├── docs/
40+ │ ├── for-developers.md # Build, config, and operations guide
41+ │ └── api-endpoints.md # Endpoint and response reference
42+ ├── scripts/
43+ │ ├── coverage.sh # Coverage helper script
44+ │ ├── publish.sh # Publishing helper script
3945│ └── stress.sh # Stress/load helper script
4046├── Dockerfile # Container image build definition
4147├── README.md # Usage, config, behavior, and developer notes
4248├── go.mod # Go module definition and dependencies
43- ├── go.sum # Dependency checksums
44- └── publish.sh # Publishing helper script
49+ └── go.sum # Dependency checksums
4550```
4651
4752## Key Entry Points
@@ -65,11 +70,6 @@ wait0 is an ultra-fast cache-first HTTP reverse proxy written in Go that serves
6570| API Endpoints | docs/api-endpoints.md | Endpoint and response reference |
6671| Docker Hub notes | DOCKERHUB.md | Alias to README for Docker Hub presentation |
6772
68- ## AI Context Files
69- | File | Description |
70- | ------| -------------|
71- | .ai-factory/ARCHITECTURE.md | Architecture decisions and guidelines |
72-
7373## Build & Development Commands
7474This project uses a ` Makefile ` for build automation.
7575
0 commit comments