From 5dbc46f3c1c75bf922bcc1c3df342323c23c04ce Mon Sep 17 00:00:00 2001 From: James O'Doherty Date: Fri, 22 May 2026 10:14:03 -0400 Subject: docs: update README and AGENTS.md to reflect embedded launcher architecture --- AGENTS.md | 3 +++ 1 file changed, 3 insertions(+) (limited to 'AGENTS.md') diff --git a/AGENTS.md b/AGENTS.md index 3cdb6bd..8886c0b 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -10,11 +10,14 @@ The project follows a modern Go project structure to ensure scalability and a cl ```text . +├── Makefile # Handles the C-to-Go embedding build chain ├── cmd/ │ └── wg-wrap/ # CLI Entry point. Handles flag parsing and subcommand routing. ├── internal/ +│ ├── cli/ # Command line interface and bootstrap orchestration. │ ├── config/ # Application-wide configuration types. │ ├── namespace/ # Linux namespace management (unshare, setns, pinning). +│ │ └── launcher_src/ # C source for the rootless bootstrap helper. │ └── wireguard/ # Userspace WireGuard controller and TUN device binding. ├── pkg/ │ └── wgconf/ # WireGuard .conf parsing logic. Reusable library. -- cgit v1.2.3