Skip to content
This repository was archived by the owner on Apr 15, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions docs/context-engineering/project-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ Guild-Scroll/
│ ├── platform_detect.py # Detect HTB / THM CTF platform from network interfaces
│ ├── updater.py # Self-update: compare version, install via pip
│ ├── utils.py # Shared helpers: timestamps, UUID, name sanitization
│ ├── web.py # Web-server launcher (TLS-capable)
│ ├── exporters/
│ │ ├── __init__.py
│ │ ├── markdown.py # Markdown report generator
Expand Down Expand Up @@ -189,7 +188,7 @@ output path.

### User Interface Layer

- **`web.py` + `web/app.py`** — HTTP server and JSON API. Routes:
- **`web/app.py`** — HTTP server and JSON API. Routes:
`GET /api/sessions` (list), `GET /api/session/<name>` (load),
`GET /api/search` (filter), `POST /api/note` (add annotation). Supports
optional TLS 1.2+ via `--tls-cert` / `--tls-key`.
Expand Down Expand Up @@ -242,7 +241,7 @@ graph TD
CLI --> Validator["validator.py\nintegrity check"]
CLI --> Merge["merge.py\nmulti-part join"]
CLI --> Sharing["sharing.py\narchive pack/unpack"]
CLI --> Web["web.py + web/app.py\nHTTP + JSON API"]
CLI --> Web["web/app.py\nHTTP + JSON API"]
CLI --> TUI["tui/\nTextual dashboard"]
CLI --> Replay["replay.py\nscriptreplay"]
CLI --> Updater["updater.py\nself-update"]
Expand Down
4 changes: 2 additions & 2 deletions docs/diagrams.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ graph LR
cli["cli.py\nClick commands"]
exporters["exporters/\nmd | html | cast | obsidian"]
tui["tui/\nTextual dashboard"]
web["web.py + web/\nlocal viewer + API"]
web["web/app.py\nlocal viewer + API"]
replay["replay.py\nscriptreplay wrapper"]
sharing["sharing.py\narchive + uploads"]
updater["updater.py\nself-update"]
Expand Down Expand Up @@ -90,7 +90,7 @@ graph TD
src --> security_mod["validator.py / integrity.py\ncrypto.py / signer.py"]
src --> exporters_mod["exporters/\nmd | html | cast | obsidian"]
src --> tui_mod["tui/\nTextual dashboard"]
src --> web_mod["web/ + web.py\nLocal viewer & API"]
src --> web_mod["web/app.py\nLocal viewer & API"]

docs --> ctx["context-engineering/\nDesign decisions"]
docs --> docker_docs["docker/\nDeployment guides"]
Expand Down
Loading