agent-afk 5.47.0 → 5.48.1
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/dist/agent/mcp/config-loader.d.ts +1 -1
- package/dist/cli/commands/insights.d.ts +2 -0
- package/dist/cli.mjs +609 -452
- package/dist/index.mjs +58 -58
- package/dist/insights/aggregators/daemon.d.ts +4 -0
- package/dist/insights/aggregators/index.d.ts +7 -0
- package/dist/insights/aggregators/routing.d.ts +3 -0
- package/dist/insights/aggregators/sessions.d.ts +3 -0
- package/dist/insights/aggregators/traces.d.ts +3 -0
- package/dist/insights/constants.d.ts +11 -0
- package/dist/insights/html.d.ts +3 -0
- package/dist/insights/index.d.ts +5 -0
- package/dist/insights/open.d.ts +1 -0
- package/dist/insights/recommendations.d.ts +2 -0
- package/dist/insights/types.d.ts +79 -0
- package/dist/paths.d.ts +1 -0
- package/dist/telegram/handlers/message.d.ts +1 -0
- package/dist/telegram.mjs +191 -191
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ export interface LoadedMcpConfig {
|
|
|
8
8
|
warnings: string[];
|
|
9
9
|
}
|
|
10
10
|
export declare function getMcpConfigPath(): string;
|
|
11
|
-
export declare function getProjectMcpConfigPath(cwd?: string): string;
|
|
11
|
+
export declare function getProjectMcpConfigPath(cwd?: string): string | null;
|
|
12
12
|
export declare function discoverPluginMcpConfigs(pluginsRoot?: string): string[];
|
|
13
13
|
export declare function loadMcpConfigFile(path: string): LoadedMcpConfig;
|
|
14
14
|
export interface LoadMcpConfigOptions {
|