-
Notifications
You must be signed in to change notification settings - Fork 10
Fix documentation discrepancies: payload threshold and internal directories #889
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -211,26 +211,42 @@ awmg/ | |||||||||||||||||||||
| ├── Dockerfile # Container image | ||||||||||||||||||||||
| ├── Makefile # Build automation | ||||||||||||||||||||||
| └── internal/ | ||||||||||||||||||||||
| ├── auth/ # Authentication header parsing and middleware | ||||||||||||||||||||||
| ├── cmd/ # CLI commands (cobra) | ||||||||||||||||||||||
| ├── config/ # Configuration loading (TOML/JSON) | ||||||||||||||||||||||
| ├── difc/ # Data Information Flow Control | ||||||||||||||||||||||
|
Comment on lines
213
to
+217
|
||||||||||||||||||||||
| └── internal/ | |
| ├── auth/ # Authentication header parsing and middleware | |
| ├── cmd/ # CLI commands (cobra) | |
| ├── config/ # Configuration loading (TOML/JSON) | |
| ├── difc/ # Data Information Flow Control | |
| └── internal/ | |
| ├── auth/ # Authentication header parsing and middleware | |
| ├── cmd/ # CLI commands (cobra) | |
| ├── config/ # Configuration loading (TOML/JSON) | |
| ├── difc/ # Decentralized Information Flow Control |
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -202,7 +202,7 @@ See **[Configuration Specification](https://github.com/github/gh-aw/blob/main/do | |||||||||
|
|
||||||||||
| **Configuration Alternatives**: | ||||||||||
| - **`payloadSizeThreshold`** is not supported in JSON stdin format. Use: | ||||||||||
| - CLI flag: `--payload-size-threshold <bytes>` (default: 1024) | ||||||||||
| - CLI flag: `--payload-size-threshold <bytes>` (default: 10240) | ||||||||||
| - Environment variable: `MCP_GATEWAY_PAYLOAD_SIZE_THRESHOLD=<bytes>` | ||||||||||
|
Comment on lines
+205
to
206
|
||||||||||
| - CLI flag: `--payload-size-threshold <bytes>` (default: 10240) | |
| - Environment variable: `MCP_GATEWAY_PAYLOAD_SIZE_THRESHOLD=<bytes>` | |
| - CLI flag: `--payload-size-threshold <bytes>` (default value is implementation-defined) | |
| - Environment variable: `MCP_GATEWAY_PAYLOAD_SIZE_THRESHOLD=<bytes>` (uses the same default as the CLI flag when unset) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
internal/difc/is described as “Data Information Flow Control”, but the package docs define DIFC as “Decentralized Information Flow Control” (seeinternal/difc/DIFC_RULES.md). Please update the wording here for accuracy/consistency.