agent-afk 5.15.5 → 5.15.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -146,6 +146,8 @@ afk chat "refactor this" --model gpt-5.5
146
146
 
147
147
  See [`docs/model-slots.md`](docs/model-slots.md) for the full configuration reference.
148
148
 
149
+ MCP servers (tool-providing plugins over stdio/HTTP) — see [`docs/mcp.md`](docs/mcp.md) for config, transports, OAuth, and security notes.
150
+
149
151
  ## Useful commands
150
152
 
151
153
  ```bash
@@ -4,3 +4,8 @@ export declare function applyParentCredentialFallback(args: {
4
4
  resolved: string | undefined;
5
5
  parentApiKey: string | undefined;
6
6
  }): string | undefined;
7
+ export declare function applyManagerApiKeyFallback(args: {
8
+ childModel: string | undefined;
9
+ configApiKey: string | undefined;
10
+ parentApiKey: string | undefined;
11
+ }): string | undefined;