agent-afk 5.96.0 → 5.96.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/index.d.ts +1 -1
- package/dist/agent/mcp/transport.d.ts +0 -4
- package/dist/agent/plugins/tool-injector.d.ts +0 -4
- package/dist/agent/shadow-verify-nudge.d.ts +0 -1
- package/dist/cli/palette.d.ts +0 -1
- package/dist/cli.mjs +519 -519
- package/dist/index.mjs +158 -158
- package/dist/telegram.mjs +210 -210
- package/package.json +1 -1
- package/dist/agent/providers/anthropic-direct/query/date-rollover.d.ts +0 -1
- package/dist/cli/commands/skill-router.d.ts +0 -8
|
@@ -4,5 +4,5 @@ export { McpManager, type McpManagerInitOptions } from './manager.js';
|
|
|
4
4
|
export { loadMcpConfig, loadMcpConfigFile, getMcpConfigPath, getProjectMcpConfigPath, discoverPluginMcpConfigs, type LoadedMcpConfig, type LoadMcpConfigOptions, type McpConfigFile, } from './config-loader.js';
|
|
5
5
|
export { buildMcpToolName, isMcpToolName, buildMcpNameRegistry, sanitizeNameSegment, type McpNameRegistry, } from './naming.js';
|
|
6
6
|
export { expandEnvString, expandEnvRecord, type EnvExpansionResult } from './env.js';
|
|
7
|
-
export { createTransport,
|
|
7
|
+
export { createTransport, expandHeaders, type CreateTransportResult, } from './transport.js';
|
|
8
8
|
export { KeychainOAuthProvider, readOauthPending, clearOauthPending, type KeychainBackend, type OauthPendingEntry, } from './oauth.js';
|
|
@@ -10,7 +10,3 @@ export interface CreateTransportResult {
|
|
|
10
10
|
isSSE: boolean;
|
|
11
11
|
}
|
|
12
12
|
export declare function createTransport(serverName: string, config: McpServerConfig, oauthProvider?: OAuthClientProvider): CreateTransportResult;
|
|
13
|
-
export declare function createTransportWithFallbackHint(serverName: string, config: McpServerConfig, oauthProvider?: OAuthClientProvider): {
|
|
14
|
-
primary: CreateTransportResult;
|
|
15
|
-
fallback: () => CreateTransportResult;
|
|
16
|
-
};
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import type { AnthropicToolDef } from '../providers/anthropic-direct/types.js';
|
|
2
|
-
import type { SdkPluginConfig } from '../types/sdk-types.js';
|
|
3
1
|
export interface PluginSkillMetadata {
|
|
4
2
|
name?: string;
|
|
5
3
|
description?: string;
|
|
@@ -14,6 +12,4 @@ export interface PluginSkillMetadata {
|
|
|
14
12
|
export declare function normalizeToolToken(token: string, knownToolNames: ReadonlySet<string>): string | undefined;
|
|
15
13
|
export declare function parseToolsField(inlineValue: string, remainingLines: string[]): string[];
|
|
16
14
|
export declare function extractPluginSkills(pluginPath: string, knownToolNames?: ReadonlySet<string>): PluginSkillMetadata[];
|
|
17
|
-
export declare function extractPluginTools(pluginPath: string, pluginName: string): AnthropicToolDef[];
|
|
18
|
-
export declare function extractAllPluginTools(plugins: SdkPluginConfig[]): AnthropicToolDef[];
|
|
19
15
|
export declare function extractPluginName(pluginPath: string): string;
|