From 0afa1d65e92571ab954ddb0d4b859f9a07cd524a Mon Sep 17 00:00:00 2001 From: Lars Simon Winzer Date: Thu, 9 Apr 2026 13:39:26 +0200 Subject: [PATCH] Docs: Link to protocol document from section README --- documents/docs/networking/commands/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/documents/docs/networking/commands/README.md b/documents/docs/networking/commands/README.md index 391ec9d..3a85340 100644 --- a/documents/docs/networking/commands/README.md +++ b/documents/docs/networking/commands/README.md @@ -17,6 +17,10 @@ The concrete implementations for each command live in `app/commands/` and are wi - [Command Infrastructure](./commands-deep-dive.md) - Technical deep-dive into the `CommandParser`, `CommandParserDispatcher`, `CommandHandler`, `CommandRouter`, `Request`, and the response hierarchy. +### Protocol document +- [Protocol Document](./protocol-document.md) - + List of all supported commands by the server, along with descriptions, required pre-execution checks, and an example for both request and response. + ## Key Concepts **Each command is self-contained.** A command's Parser, Request, Handler, and Response all live in the same package under `app/commands//`.