wave-agent-sdk 0.0.7 → 0.0.8
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.d.ts +32 -20
- package/dist/agent.d.ts.map +1 -1
- package/dist/agent.js +202 -20
- package/dist/constants/events.d.ts +28 -0
- package/dist/constants/events.d.ts.map +1 -0
- package/dist/constants/events.js +27 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/managers/aiManager.d.ts +34 -1
- package/dist/managers/aiManager.d.ts.map +1 -1
- package/dist/managers/aiManager.js +243 -128
- package/dist/managers/backgroundBashManager.d.ts.map +1 -1
- package/dist/managers/backgroundBashManager.js +7 -6
- package/dist/managers/hookManager.d.ts +9 -4
- package/dist/managers/hookManager.d.ts.map +1 -1
- package/dist/managers/hookManager.js +62 -30
- package/dist/managers/liveConfigManager.d.ts +58 -0
- package/dist/managers/liveConfigManager.d.ts.map +1 -0
- package/dist/managers/liveConfigManager.js +160 -0
- package/dist/managers/messageManager.d.ts +38 -13
- package/dist/managers/messageManager.d.ts.map +1 -1
- package/dist/managers/messageManager.js +163 -30
- package/dist/managers/slashCommandManager.d.ts.map +1 -1
- package/dist/managers/slashCommandManager.js +4 -1
- package/dist/managers/subagentManager.d.ts +51 -0
- package/dist/managers/subagentManager.d.ts.map +1 -1
- package/dist/managers/subagentManager.js +189 -18
- package/dist/services/aiService.d.ts +13 -5
- package/dist/services/aiService.d.ts.map +1 -1
- package/dist/services/aiService.js +350 -74
- package/dist/services/configurationWatcher.d.ts +120 -0
- package/dist/services/configurationWatcher.d.ts.map +1 -0
- package/dist/services/configurationWatcher.js +439 -0
- package/dist/services/fileWatcher.d.ts +69 -0
- package/dist/services/fileWatcher.d.ts.map +1 -0
- package/dist/services/fileWatcher.js +213 -0
- package/dist/services/hook.d.ts +91 -9
- package/dist/services/hook.d.ts.map +1 -1
- package/dist/services/hook.js +393 -43
- package/dist/services/jsonlHandler.d.ts +62 -0
- package/dist/services/jsonlHandler.d.ts.map +1 -0
- package/dist/services/jsonlHandler.js +257 -0
- package/dist/services/memory.d.ts +9 -0
- package/dist/services/memory.d.ts.map +1 -1
- package/dist/services/memory.js +81 -12
- package/dist/services/memoryStore.d.ts +81 -0
- package/dist/services/memoryStore.d.ts.map +1 -0
- package/dist/services/memoryStore.js +200 -0
- package/dist/services/session.d.ts +64 -49
- package/dist/services/session.d.ts.map +1 -1
- package/dist/services/session.js +310 -132
- package/dist/tools/bashTool.d.ts.map +1 -1
- package/dist/tools/bashTool.js +5 -4
- package/dist/tools/deleteFileTool.d.ts.map +1 -1
- package/dist/tools/deleteFileTool.js +2 -1
- package/dist/tools/editTool.d.ts.map +1 -1
- package/dist/tools/editTool.js +3 -2
- package/dist/tools/multiEditTool.d.ts.map +1 -1
- package/dist/tools/multiEditTool.js +4 -3
- package/dist/tools/readTool.d.ts.map +1 -1
- package/dist/tools/readTool.js +2 -1
- package/dist/tools/writeTool.d.ts.map +1 -1
- package/dist/tools/writeTool.js +5 -6
- package/dist/types/commands.d.ts +4 -0
- package/dist/types/commands.d.ts.map +1 -1
- package/dist/types/core.d.ts +35 -0
- package/dist/types/core.d.ts.map +1 -1
- package/dist/types/environment.d.ts +42 -0
- package/dist/types/environment.d.ts.map +1 -0
- package/dist/types/environment.js +21 -0
- package/dist/types/hooks.d.ts +8 -2
- package/dist/types/hooks.d.ts.map +1 -1
- package/dist/types/hooks.js +8 -2
- package/dist/types/index.d.ts +2 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +2 -0
- package/dist/types/memoryStore.d.ts +82 -0
- package/dist/types/memoryStore.d.ts.map +1 -0
- package/dist/types/memoryStore.js +7 -0
- package/dist/types/messaging.d.ts +14 -2
- package/dist/types/messaging.d.ts.map +1 -1
- package/dist/types/session.d.ts +20 -0
- package/dist/types/session.d.ts.map +1 -0
- package/dist/types/session.js +7 -0
- package/dist/utils/bashHistory.d.ts.map +1 -1
- package/dist/utils/bashHistory.js +27 -26
- package/dist/utils/cacheControlUtils.d.ts +121 -0
- package/dist/utils/cacheControlUtils.d.ts.map +1 -0
- package/dist/utils/cacheControlUtils.js +367 -0
- package/dist/utils/commandPathResolver.d.ts +52 -0
- package/dist/utils/commandPathResolver.d.ts.map +1 -0
- package/dist/utils/commandPathResolver.js +145 -0
- package/dist/utils/configPaths.d.ts +85 -0
- package/dist/utils/configPaths.d.ts.map +1 -0
- package/dist/utils/configPaths.js +121 -0
- package/dist/utils/configResolver.d.ts +37 -10
- package/dist/utils/configResolver.d.ts.map +1 -1
- package/dist/utils/configResolver.js +127 -23
- package/dist/utils/constants.d.ts +1 -1
- package/dist/utils/constants.js +1 -1
- package/dist/utils/convertMessagesForAPI.d.ts.map +1 -1
- package/dist/utils/convertMessagesForAPI.js +7 -5
- package/dist/utils/customCommands.d.ts.map +1 -1
- package/dist/utils/customCommands.js +66 -21
- package/dist/utils/fileUtils.d.ts +15 -0
- package/dist/utils/fileUtils.d.ts.map +1 -0
- package/dist/utils/fileUtils.js +61 -0
- package/dist/utils/globalLogger.d.ts +102 -0
- package/dist/utils/globalLogger.d.ts.map +1 -0
- package/dist/utils/globalLogger.js +136 -0
- package/dist/utils/mcpUtils.d.ts.map +1 -1
- package/dist/utils/mcpUtils.js +25 -3
- package/dist/utils/messageOperations.d.ts +20 -8
- package/dist/utils/messageOperations.d.ts.map +1 -1
- package/dist/utils/messageOperations.js +25 -16
- package/dist/utils/pathEncoder.d.ts +104 -0
- package/dist/utils/pathEncoder.d.ts.map +1 -0
- package/dist/utils/pathEncoder.js +272 -0
- package/dist/utils/subagentParser.d.ts.map +1 -1
- package/dist/utils/subagentParser.js +2 -1
- package/dist/utils/tokenCalculation.d.ts +26 -0
- package/dist/utils/tokenCalculation.d.ts.map +1 -0
- package/dist/utils/tokenCalculation.js +36 -0
- package/package.json +6 -3
- package/src/agent.ts +298 -34
- package/src/constants/events.ts +38 -0
- package/src/index.ts +2 -0
- package/src/managers/aiManager.ts +323 -170
- package/src/managers/backgroundBashManager.ts +7 -6
- package/src/managers/hookManager.ts +83 -40
- package/src/managers/liveConfigManager.ts +248 -0
- package/src/managers/messageManager.ts +230 -63
- package/src/managers/slashCommandManager.ts +4 -1
- package/src/managers/subagentManager.ts +283 -21
- package/src/services/aiService.ts +474 -83
- package/src/services/configurationWatcher.ts +622 -0
- package/src/services/fileWatcher.ts +301 -0
- package/src/services/hook.ts +538 -47
- package/src/services/jsonlHandler.ts +319 -0
- package/src/services/memory.ts +92 -12
- package/src/services/memoryStore.ts +279 -0
- package/src/services/session.ts +381 -157
- package/src/tools/bashTool.ts +5 -4
- package/src/tools/deleteFileTool.ts +2 -1
- package/src/tools/editTool.ts +3 -2
- package/src/tools/multiEditTool.ts +4 -3
- package/src/tools/readTool.ts +2 -1
- package/src/tools/writeTool.ts +7 -6
- package/src/types/commands.ts +6 -0
- package/src/types/core.ts +44 -0
- package/src/types/environment.ts +60 -0
- package/src/types/hooks.ts +21 -8
- package/src/types/index.ts +2 -0
- package/src/types/memoryStore.ts +94 -0
- package/src/types/messaging.ts +14 -2
- package/src/types/session.ts +25 -0
- package/src/utils/bashHistory.ts +27 -27
- package/src/utils/cacheControlUtils.ts +540 -0
- package/src/utils/commandPathResolver.ts +189 -0
- package/src/utils/configPaths.ts +163 -0
- package/src/utils/configResolver.ts +182 -22
- package/src/utils/constants.ts +1 -1
- package/src/utils/convertMessagesForAPI.ts +7 -5
- package/src/utils/customCommands.ts +90 -22
- package/src/utils/fileUtils.ts +65 -0
- package/src/utils/globalLogger.ts +145 -0
- package/src/utils/mcpUtils.ts +34 -3
- package/src/utils/messageOperations.ts +42 -20
- package/src/utils/pathEncoder.ts +379 -0
- package/src/utils/subagentParser.ts +2 -1
- package/src/utils/tokenCalculation.ts +43 -0
package/dist/utils/constants.js
CHANGED
|
@@ -23,7 +23,7 @@ export const USER_MEMORY_FILE = path.join(DATA_DIRECTORY, "user-memory.md");
|
|
|
23
23
|
/**
|
|
24
24
|
* AI related constants
|
|
25
25
|
*/
|
|
26
|
-
export const DEFAULT_TOKEN_LIMIT =
|
|
26
|
+
export const DEFAULT_TOKEN_LIMIT = 96000; // Default token limit
|
|
27
27
|
/**
|
|
28
28
|
* @deprecated These constants are now legacy. Use ModelConfig through Agent constructor instead.
|
|
29
29
|
* They are maintained for backward compatibility with existing code that might still reference them,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"convertMessagesForAPI.d.ts","sourceRoot":"","sources":["../../src/utils/convertMessagesForAPI.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAIjD,OAAO,EAEL,0BAA0B,EAC3B,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"convertMessagesForAPI.d.ts","sourceRoot":"","sources":["../../src/utils/convertMessagesForAPI.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAIjD,OAAO,EAEL,0BAA0B,EAC3B,MAAM,qBAAqB,CAAC;AAwB7B;;;;GAIG;AACH,wBAAgB,qBAAqB,CACnC,QAAQ,EAAE,OAAO,EAAE,GAClB,0BAA0B,EAAE,CA+L9B"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { convertImageToBase64 } from "./messageOperations.js";
|
|
2
2
|
import { stripAnsiColors } from "./stringUtils.js";
|
|
3
|
+
import { logger } from "./globalLogger.js";
|
|
3
4
|
/**
|
|
4
5
|
* Safely handle tool call parameters, ensuring a legal JSON string is returned
|
|
5
6
|
* @param args Tool call parameters
|
|
@@ -14,8 +15,8 @@ function safeToolArguments(args) {
|
|
|
14
15
|
JSON.parse(args);
|
|
15
16
|
return args;
|
|
16
17
|
}
|
|
17
|
-
catch {
|
|
18
|
-
|
|
18
|
+
catch (error) {
|
|
19
|
+
logger.error(`Invalid tool arguments: ${args}`, error);
|
|
19
20
|
// If not valid JSON, return a fallback empty object
|
|
20
21
|
return "{}";
|
|
21
22
|
}
|
|
@@ -54,8 +55,8 @@ export function convertMessagesForAPI(messages) {
|
|
|
54
55
|
const completedToolIds = new Set(); // Record completed tool IDs
|
|
55
56
|
if (toolBlocks.length > 0) {
|
|
56
57
|
toolBlocks.forEach((toolBlock) => {
|
|
57
|
-
// Only add completed tool blocks (i.e.,
|
|
58
|
-
if (toolBlock.id &&
|
|
58
|
+
// Only add completed tool blocks (i.e., stage is 'end')
|
|
59
|
+
if (toolBlock.id && toolBlock.stage === "end") {
|
|
59
60
|
completedToolIds.add(toolBlock.id);
|
|
60
61
|
// Check for image data
|
|
61
62
|
if (toolBlock.images && toolBlock.images.length > 0) {
|
|
@@ -127,6 +128,7 @@ export function convertMessagesForAPI(messages) {
|
|
|
127
128
|
role: "assistant",
|
|
128
129
|
content,
|
|
129
130
|
tool_calls,
|
|
131
|
+
...(message.metadata ? { ...message.metadata } : {}),
|
|
130
132
|
};
|
|
131
133
|
recentMessages.unshift(assistantMessage);
|
|
132
134
|
}
|
|
@@ -155,7 +157,7 @@ export function convertMessagesForAPI(messages) {
|
|
|
155
157
|
finalImageUrl = convertImageToBase64(imageUrl);
|
|
156
158
|
}
|
|
157
159
|
catch (error) {
|
|
158
|
-
|
|
160
|
+
logger.error("Failed to convert image path to base64:", imageUrl, error);
|
|
159
161
|
// Skip this image, do not add to content
|
|
160
162
|
return;
|
|
161
163
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customCommands.d.ts","sourceRoot":"","sources":["../../src/utils/customCommands.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"customCommands.d.ts","sourceRoot":"","sources":["../../src/utils/customCommands.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAU5D;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAE7D;AAED;;GAEG;AACH,wBAAgB,kBAAkB,IAAI,MAAM,CAE3C;AA0GD;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,MAAM,GAAG,kBAAkB,EAAE,CAkB7E"}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import { existsSync, readdirSync } from "fs";
|
|
1
|
+
import { existsSync, readdirSync, statSync } from "fs";
|
|
2
2
|
import { join, extname, basename } from "path";
|
|
3
3
|
import { homedir } from "os";
|
|
4
4
|
import { parseMarkdownFile } from "./markdownParser.js";
|
|
5
|
+
import { generateCommandId, getCommandSegments, getNamespace, getDepth, } from "./commandPathResolver.js";
|
|
6
|
+
import { logger } from "./globalLogger.js";
|
|
5
7
|
/**
|
|
6
8
|
* Get the project-specific commands directory
|
|
7
9
|
*/
|
|
@@ -15,39 +17,82 @@ export function getUserCommandsDir() {
|
|
|
15
17
|
return join(homedir(), ".wave", "commands");
|
|
16
18
|
}
|
|
17
19
|
/**
|
|
18
|
-
* Scan a directory for markdown command files
|
|
20
|
+
* Scan a directory for markdown command files with nested directory support
|
|
21
|
+
* @param dirPath - Root commands directory path
|
|
22
|
+
* @param maxDepth - Maximum nesting depth to scan (default: 1)
|
|
19
23
|
*/
|
|
20
|
-
function scanCommandsDirectory(dirPath) {
|
|
24
|
+
function scanCommandsDirectory(dirPath, maxDepth = 1) {
|
|
21
25
|
if (!existsSync(dirPath)) {
|
|
22
26
|
return [];
|
|
23
27
|
}
|
|
28
|
+
return scanCommandsDirectoryRecursive(dirPath, dirPath, 0, maxDepth);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Recursively scan directory for commands with depth control
|
|
32
|
+
* @param currentPath - Current directory being scanned
|
|
33
|
+
* @param rootPath - Root commands directory (for relative path calculation)
|
|
34
|
+
* @param currentDepth - Current nesting depth
|
|
35
|
+
* @param maxDepth - Maximum allowed depth
|
|
36
|
+
*/
|
|
37
|
+
function scanCommandsDirectoryRecursive(currentPath, rootPath, currentDepth, maxDepth) {
|
|
24
38
|
const commands = [];
|
|
25
39
|
try {
|
|
26
|
-
const
|
|
27
|
-
for (const
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
const filePath = join(dirPath, file);
|
|
32
|
-
const commandName = basename(file, ".md");
|
|
40
|
+
const entries = readdirSync(currentPath);
|
|
41
|
+
for (const entryName of entries) {
|
|
42
|
+
const fullPath = join(currentPath, entryName);
|
|
43
|
+
let isDirectory = false;
|
|
44
|
+
let isFile = false;
|
|
33
45
|
try {
|
|
34
|
-
const
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
name: commandName,
|
|
38
|
-
description: config?.description, // Use description from frontmatter
|
|
39
|
-
filePath,
|
|
40
|
-
content,
|
|
41
|
-
config,
|
|
42
|
-
});
|
|
46
|
+
const stats = statSync(fullPath);
|
|
47
|
+
isDirectory = stats.isDirectory();
|
|
48
|
+
isFile = stats.isFile();
|
|
43
49
|
}
|
|
44
50
|
catch (error) {
|
|
45
|
-
|
|
51
|
+
// Skip entries that cannot be stat'd
|
|
52
|
+
logger.warn(`Cannot access ${fullPath}:`, error);
|
|
53
|
+
continue;
|
|
54
|
+
}
|
|
55
|
+
if (isDirectory) {
|
|
56
|
+
// Skip subdirectories if we're at max depth
|
|
57
|
+
if (currentDepth >= maxDepth) {
|
|
58
|
+
logger.warn(`Skipping directory ${fullPath}: exceeds maximum nesting depth of ${maxDepth}`);
|
|
59
|
+
continue;
|
|
60
|
+
}
|
|
61
|
+
// Recursively scan subdirectory
|
|
62
|
+
const nestedCommands = scanCommandsDirectoryRecursive(fullPath, rootPath, currentDepth + 1, maxDepth);
|
|
63
|
+
commands.push(...nestedCommands);
|
|
64
|
+
}
|
|
65
|
+
else if (isFile && extname(entryName) === ".md") {
|
|
66
|
+
// Process markdown file
|
|
67
|
+
try {
|
|
68
|
+
const commandId = generateCommandId(fullPath, rootPath);
|
|
69
|
+
const segments = getCommandSegments(fullPath, rootPath);
|
|
70
|
+
const namespace = getNamespace(segments);
|
|
71
|
+
const depth = getDepth(segments);
|
|
72
|
+
const { content, config } = parseMarkdownFile(fullPath);
|
|
73
|
+
commands.push({
|
|
74
|
+
id: commandId,
|
|
75
|
+
name: basename(entryName, ".md"),
|
|
76
|
+
description: config?.description,
|
|
77
|
+
filePath: fullPath,
|
|
78
|
+
content,
|
|
79
|
+
config,
|
|
80
|
+
// Nested command metadata
|
|
81
|
+
namespace,
|
|
82
|
+
isNested: depth > 0,
|
|
83
|
+
depth,
|
|
84
|
+
segments,
|
|
85
|
+
});
|
|
86
|
+
}
|
|
87
|
+
catch (error) {
|
|
88
|
+
logger.warn(`Failed to load custom command from ${fullPath}:`, error);
|
|
89
|
+
}
|
|
46
90
|
}
|
|
91
|
+
// Skip non-markdown files silently
|
|
47
92
|
}
|
|
48
93
|
}
|
|
49
94
|
catch (error) {
|
|
50
|
-
|
|
95
|
+
logger.warn(`Failed to scan commands directory ${currentPath}:`, error);
|
|
51
96
|
}
|
|
52
97
|
return commands;
|
|
53
98
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Reads the first line of a file efficiently using Node.js readline.
|
|
3
|
+
*
|
|
4
|
+
* @param {string} filePath - The path to the file.
|
|
5
|
+
* @return {Promise<string>} - The first non-empty line of the file, or an empty string otherwise.
|
|
6
|
+
*/
|
|
7
|
+
export declare function readFirstLine(filePath: string): Promise<string>;
|
|
8
|
+
/**
|
|
9
|
+
* Reads a file from the end and returns the first non-empty line.
|
|
10
|
+
*
|
|
11
|
+
* @param {string} filePath - The path to the file.
|
|
12
|
+
* @return {Promise<string>} - The last non-empty line of the file, or an empty string if no non-empty lines found.
|
|
13
|
+
*/
|
|
14
|
+
export declare function getLastLine(filePath: string): Promise<string>;
|
|
15
|
+
//# sourceMappingURL=fileUtils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fileUtils.d.ts","sourceRoot":"","sources":["../../src/utils/fileUtils.ts"],"names":[],"mappings":"AAEA;;;;;GAKG;AACH,wBAAsB,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAyBrE;AAED;;;;;GAKG;AACH,wBAAsB,WAAW,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAuBnE"}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import fs from "node:fs";
|
|
2
|
+
/**
|
|
3
|
+
* Reads the first line of a file efficiently using Node.js readline.
|
|
4
|
+
*
|
|
5
|
+
* @param {string} filePath - The path to the file.
|
|
6
|
+
* @return {Promise<string>} - The first non-empty line of the file, or an empty string otherwise.
|
|
7
|
+
*/
|
|
8
|
+
export async function readFirstLine(filePath) {
|
|
9
|
+
const { createReadStream } = fs;
|
|
10
|
+
const { createInterface } = await import("node:readline");
|
|
11
|
+
const fileStream = createReadStream(filePath);
|
|
12
|
+
const rl = createInterface({
|
|
13
|
+
input: fileStream,
|
|
14
|
+
crlfDelay: Infinity, // Handle \r\n properly
|
|
15
|
+
});
|
|
16
|
+
try {
|
|
17
|
+
for await (const line of rl) {
|
|
18
|
+
const trimmedLine = line.trim();
|
|
19
|
+
if (trimmedLine.length > 0) {
|
|
20
|
+
return trimmedLine;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
return "";
|
|
24
|
+
}
|
|
25
|
+
catch {
|
|
26
|
+
// If reading fails (e.g., file doesn't exist), return empty string
|
|
27
|
+
return "";
|
|
28
|
+
}
|
|
29
|
+
finally {
|
|
30
|
+
rl.close();
|
|
31
|
+
fileStream.destroy();
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Reads a file from the end and returns the first non-empty line.
|
|
36
|
+
*
|
|
37
|
+
* @param {string} filePath - The path to the file.
|
|
38
|
+
* @return {Promise<string>} - The last non-empty line of the file, or an empty string if no non-empty lines found.
|
|
39
|
+
*/
|
|
40
|
+
export async function getLastLine(filePath) {
|
|
41
|
+
const { exec } = await import("child_process");
|
|
42
|
+
const { promisify } = await import("util");
|
|
43
|
+
const execAsync = promisify(exec);
|
|
44
|
+
try {
|
|
45
|
+
// Use tail with multiple lines to handle cases where the last line might be empty
|
|
46
|
+
const { stdout } = await execAsync(`tail -n 3 "${filePath}"`);
|
|
47
|
+
const lines = stdout.split(/\r?\n/);
|
|
48
|
+
// Find the first non-empty line working backwards
|
|
49
|
+
for (let i = lines.length - 1; i >= 0; i--) {
|
|
50
|
+
const line = lines[i].trim();
|
|
51
|
+
if (line.length > 0) {
|
|
52
|
+
return line;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
return "";
|
|
56
|
+
}
|
|
57
|
+
catch {
|
|
58
|
+
// If tail fails (e.g., file doesn't exist), return empty string
|
|
59
|
+
return "";
|
|
60
|
+
}
|
|
61
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Global Logger Registry for Agent SDK
|
|
3
|
+
*
|
|
4
|
+
* Provides zero-overhead logging access for utility functions and services
|
|
5
|
+
* without requiring parameter passing. Maintains singleton logger instance
|
|
6
|
+
* accessible across all SDK modules.
|
|
7
|
+
*
|
|
8
|
+
* Features:
|
|
9
|
+
* - Zero overhead when no logger configured (single null check)
|
|
10
|
+
* - Thread-safe in Node.js single-threaded environment
|
|
11
|
+
* - Maintains backward compatibility with existing Logger interface
|
|
12
|
+
* - Direct function delegation when configured
|
|
13
|
+
*/
|
|
14
|
+
import type { Logger } from "../types/core.js";
|
|
15
|
+
/**
|
|
16
|
+
* Configure the global logger instance used by utility functions and services
|
|
17
|
+
*
|
|
18
|
+
* @param logger - Logger instance implementing the Logger interface, or null to disable logging
|
|
19
|
+
* @returns void
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
* ```typescript
|
|
23
|
+
* import { setGlobalLogger } from './utils/globalLogger.js';
|
|
24
|
+
*
|
|
25
|
+
* // Configure logger
|
|
26
|
+
* setGlobalLogger(myLogger);
|
|
27
|
+
*
|
|
28
|
+
* // Disable logging
|
|
29
|
+
* setGlobalLogger(null);
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
export declare function setGlobalLogger(logger: Logger | null): void;
|
|
33
|
+
/**
|
|
34
|
+
* Retrieve the current global logger instance
|
|
35
|
+
*
|
|
36
|
+
* @returns Current logger instance or null if unconfigured
|
|
37
|
+
*
|
|
38
|
+
* @example
|
|
39
|
+
* ```typescript
|
|
40
|
+
* const currentLogger = getGlobalLogger();
|
|
41
|
+
* if (currentLogger) {
|
|
42
|
+
* currentLogger.info('Direct logger access');
|
|
43
|
+
* }
|
|
44
|
+
* ```
|
|
45
|
+
*/
|
|
46
|
+
export declare function getGlobalLogger(): Logger | null;
|
|
47
|
+
/**
|
|
48
|
+
* Reset global logger to unconfigured state
|
|
49
|
+
* Equivalent to setGlobalLogger(null)
|
|
50
|
+
*
|
|
51
|
+
* @example
|
|
52
|
+
* ```typescript
|
|
53
|
+
* clearGlobalLogger(); // All subsequent logging calls become no-ops
|
|
54
|
+
* ```
|
|
55
|
+
*/
|
|
56
|
+
export declare function clearGlobalLogger(): void;
|
|
57
|
+
/**
|
|
58
|
+
* Check if global logger is currently configured
|
|
59
|
+
*
|
|
60
|
+
* @returns true if logger configured, false otherwise
|
|
61
|
+
*
|
|
62
|
+
* @example
|
|
63
|
+
* ```typescript
|
|
64
|
+
* if (isLoggerConfigured()) {
|
|
65
|
+
* // Perform expensive logging operation
|
|
66
|
+
* const debugInfo = generateDebugInfo();
|
|
67
|
+
* logger.debug(debugInfo);
|
|
68
|
+
* }
|
|
69
|
+
* ```
|
|
70
|
+
*/
|
|
71
|
+
export declare function isLoggerConfigured(): boolean;
|
|
72
|
+
/**
|
|
73
|
+
* Zero-overhead logging interface
|
|
74
|
+
*
|
|
75
|
+
* Performance characteristics:
|
|
76
|
+
* - Unconfigured: Single null check + early return (near-zero cost)
|
|
77
|
+
* - Configured: Null check + function delegation
|
|
78
|
+
* - No object creation or intermediate allocations
|
|
79
|
+
*/
|
|
80
|
+
export declare const logger: {
|
|
81
|
+
/**
|
|
82
|
+
* Log debug-level message through global logger
|
|
83
|
+
* No-op when global logger is null (zero overhead)
|
|
84
|
+
*/
|
|
85
|
+
readonly debug: (...args: unknown[]) => void;
|
|
86
|
+
/**
|
|
87
|
+
* Log info-level message through global logger
|
|
88
|
+
* No-op when global logger is null (zero overhead)
|
|
89
|
+
*/
|
|
90
|
+
readonly info: (...args: unknown[]) => void;
|
|
91
|
+
/**
|
|
92
|
+
* Log warning-level message through global logger
|
|
93
|
+
* No-op when global logger is null (zero overhead)
|
|
94
|
+
*/
|
|
95
|
+
readonly warn: (...args: unknown[]) => void;
|
|
96
|
+
/**
|
|
97
|
+
* Log error-level message through global logger
|
|
98
|
+
* No-op when global logger is null (zero overhead)
|
|
99
|
+
*/
|
|
100
|
+
readonly error: (...args: unknown[]) => void;
|
|
101
|
+
};
|
|
102
|
+
//# sourceMappingURL=globalLogger.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"globalLogger.d.ts","sourceRoot":"","sources":["../../src/utils/globalLogger.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAa/C;;;;;;;;;;;;;;;;GAgBG;AACH,wBAAgB,eAAe,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI,CAE3D;AAED;;;;;;;;;;;;GAYG;AACH,wBAAgB,eAAe,IAAI,MAAM,GAAG,IAAI,CAE/C;AAED;;;;;;;;GAQG;AACH,wBAAgB,iBAAiB,IAAI,IAAI,CAExC;AAED;;;;;;;;;;;;;GAaG;AACH,wBAAgB,kBAAkB,IAAI,OAAO,CAE5C;AAMD;;;;;;;GAOG;AACH,eAAO,MAAM,MAAM;IACjB;;;OAGG;8BACc,OAAO,EAAE,KAAG,IAAI;IAKjC;;;OAGG;6BACa,OAAO,EAAE,KAAG,IAAI;IAKhC;;;OAGG;6BACa,OAAO,EAAE,KAAG,IAAI;IAKhC;;;OAGG;8BACc,OAAO,EAAE,KAAG,IAAI;CAIzB,CAAC"}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Global Logger Registry for Agent SDK
|
|
3
|
+
*
|
|
4
|
+
* Provides zero-overhead logging access for utility functions and services
|
|
5
|
+
* without requiring parameter passing. Maintains singleton logger instance
|
|
6
|
+
* accessible across all SDK modules.
|
|
7
|
+
*
|
|
8
|
+
* Features:
|
|
9
|
+
* - Zero overhead when no logger configured (single null check)
|
|
10
|
+
* - Thread-safe in Node.js single-threaded environment
|
|
11
|
+
* - Maintains backward compatibility with existing Logger interface
|
|
12
|
+
* - Direct function delegation when configured
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Module-level storage for the global logger instance
|
|
16
|
+
* null = unconfigured (logging calls are no-ops)
|
|
17
|
+
* Logger = configured (calls are forwarded)
|
|
18
|
+
*/
|
|
19
|
+
let globalLogger = null;
|
|
20
|
+
// =============================================================================
|
|
21
|
+
// Registry Management API
|
|
22
|
+
// =============================================================================
|
|
23
|
+
/**
|
|
24
|
+
* Configure the global logger instance used by utility functions and services
|
|
25
|
+
*
|
|
26
|
+
* @param logger - Logger instance implementing the Logger interface, or null to disable logging
|
|
27
|
+
* @returns void
|
|
28
|
+
*
|
|
29
|
+
* @example
|
|
30
|
+
* ```typescript
|
|
31
|
+
* import { setGlobalLogger } from './utils/globalLogger.js';
|
|
32
|
+
*
|
|
33
|
+
* // Configure logger
|
|
34
|
+
* setGlobalLogger(myLogger);
|
|
35
|
+
*
|
|
36
|
+
* // Disable logging
|
|
37
|
+
* setGlobalLogger(null);
|
|
38
|
+
* ```
|
|
39
|
+
*/
|
|
40
|
+
export function setGlobalLogger(logger) {
|
|
41
|
+
globalLogger = logger;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Retrieve the current global logger instance
|
|
45
|
+
*
|
|
46
|
+
* @returns Current logger instance or null if unconfigured
|
|
47
|
+
*
|
|
48
|
+
* @example
|
|
49
|
+
* ```typescript
|
|
50
|
+
* const currentLogger = getGlobalLogger();
|
|
51
|
+
* if (currentLogger) {
|
|
52
|
+
* currentLogger.info('Direct logger access');
|
|
53
|
+
* }
|
|
54
|
+
* ```
|
|
55
|
+
*/
|
|
56
|
+
export function getGlobalLogger() {
|
|
57
|
+
return globalLogger;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Reset global logger to unconfigured state
|
|
61
|
+
* Equivalent to setGlobalLogger(null)
|
|
62
|
+
*
|
|
63
|
+
* @example
|
|
64
|
+
* ```typescript
|
|
65
|
+
* clearGlobalLogger(); // All subsequent logging calls become no-ops
|
|
66
|
+
* ```
|
|
67
|
+
*/
|
|
68
|
+
export function clearGlobalLogger() {
|
|
69
|
+
globalLogger = null;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Check if global logger is currently configured
|
|
73
|
+
*
|
|
74
|
+
* @returns true if logger configured, false otherwise
|
|
75
|
+
*
|
|
76
|
+
* @example
|
|
77
|
+
* ```typescript
|
|
78
|
+
* if (isLoggerConfigured()) {
|
|
79
|
+
* // Perform expensive logging operation
|
|
80
|
+
* const debugInfo = generateDebugInfo();
|
|
81
|
+
* logger.debug(debugInfo);
|
|
82
|
+
* }
|
|
83
|
+
* ```
|
|
84
|
+
*/
|
|
85
|
+
export function isLoggerConfigured() {
|
|
86
|
+
return globalLogger !== null;
|
|
87
|
+
}
|
|
88
|
+
// =============================================================================
|
|
89
|
+
// Zero-Overhead Logging API
|
|
90
|
+
// =============================================================================
|
|
91
|
+
/**
|
|
92
|
+
* Zero-overhead logging interface
|
|
93
|
+
*
|
|
94
|
+
* Performance characteristics:
|
|
95
|
+
* - Unconfigured: Single null check + early return (near-zero cost)
|
|
96
|
+
* - Configured: Null check + function delegation
|
|
97
|
+
* - No object creation or intermediate allocations
|
|
98
|
+
*/
|
|
99
|
+
export const logger = {
|
|
100
|
+
/**
|
|
101
|
+
* Log debug-level message through global logger
|
|
102
|
+
* No-op when global logger is null (zero overhead)
|
|
103
|
+
*/
|
|
104
|
+
debug: (...args) => {
|
|
105
|
+
if (globalLogger === null)
|
|
106
|
+
return;
|
|
107
|
+
globalLogger.debug(...args);
|
|
108
|
+
},
|
|
109
|
+
/**
|
|
110
|
+
* Log info-level message through global logger
|
|
111
|
+
* No-op when global logger is null (zero overhead)
|
|
112
|
+
*/
|
|
113
|
+
info: (...args) => {
|
|
114
|
+
if (globalLogger === null)
|
|
115
|
+
return;
|
|
116
|
+
globalLogger.info(...args);
|
|
117
|
+
},
|
|
118
|
+
/**
|
|
119
|
+
* Log warning-level message through global logger
|
|
120
|
+
* No-op when global logger is null (zero overhead)
|
|
121
|
+
*/
|
|
122
|
+
warn: (...args) => {
|
|
123
|
+
if (globalLogger === null)
|
|
124
|
+
return;
|
|
125
|
+
globalLogger.warn(...args);
|
|
126
|
+
},
|
|
127
|
+
/**
|
|
128
|
+
* Log error-level message through global logger
|
|
129
|
+
* No-op when global logger is null (zero overhead)
|
|
130
|
+
*/
|
|
131
|
+
error: (...args) => {
|
|
132
|
+
if (globalLogger === null)
|
|
133
|
+
return;
|
|
134
|
+
globalLogger.error(...args);
|
|
135
|
+
},
|
|
136
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mcpUtils.d.ts","sourceRoot":"","sources":["../../src/utils/mcpUtils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,qBAAqB,CAAC;AACjE,OAAO,KAAK,EAAE,UAAU,EAA2B,MAAM,mBAAmB,CAAC;AAC7E,OAAO,KAAK,EAAE,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"mcpUtils.d.ts","sourceRoot":"","sources":["../../src/utils/mcpUtils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,qBAAqB,CAAC;AACjE,OAAO,KAAK,EAAE,UAAU,EAA2B,MAAM,mBAAmB,CAAC;AAC7E,OAAO,KAAK,EAAE,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAgClE;;GAEG;AACH,wBAAgB,mBAAmB,CACjC,OAAO,EAAE,OAAO,EAChB,UAAU,EAAE,MAAM,GACjB,0BAA0B,CAc5B;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CACjC,OAAO,EAAE,OAAO,EAChB,UAAU,EAAE,MAAM,EAClB,WAAW,EAAE,CACX,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC1B,OAAO,CAAC;IACX,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;CACtD,CAAC,GACD,UAAU,CA2BZ;AAED;;GAEG;AACH,wBAAgB,cAAc,CAC5B,QAAQ,EAAE,MAAM,EAChB,OAAO,EAAE,eAAe,EAAE,GACzB,eAAe,GAAG,SAAS,CAK7B"}
|
package/dist/utils/mcpUtils.js
CHANGED
|
@@ -1,10 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Recursively clean schema to remove unsupported fields
|
|
3
|
+
*/
|
|
4
|
+
function cleanSchema(schema) {
|
|
5
|
+
if (typeof schema !== "object" || schema === null) {
|
|
6
|
+
return schema;
|
|
7
|
+
}
|
|
8
|
+
if (Array.isArray(schema)) {
|
|
9
|
+
return schema.map(cleanSchema);
|
|
10
|
+
}
|
|
11
|
+
const newSchema = {};
|
|
12
|
+
const obj = schema;
|
|
13
|
+
for (const key in obj) {
|
|
14
|
+
// Remove $schema as OpenAI API doesn't accept it
|
|
15
|
+
// Remove exclusiveMinimum/exclusiveMaximum as some models (e.g. Gemini) don't support them
|
|
16
|
+
if (key === "$schema" ||
|
|
17
|
+
key === "exclusiveMinimum" ||
|
|
18
|
+
key === "exclusiveMaximum") {
|
|
19
|
+
continue;
|
|
20
|
+
}
|
|
21
|
+
newSchema[key] = cleanSchema(obj[key]);
|
|
22
|
+
}
|
|
23
|
+
return newSchema;
|
|
24
|
+
}
|
|
1
25
|
/**
|
|
2
26
|
* Convert MCP tool to OpenAI function tool format
|
|
3
27
|
*/
|
|
4
28
|
export function mcpToolToOpenAITool(mcpTool, serverName) {
|
|
5
|
-
|
|
6
|
-
const cleanInputSchema = { ...mcpTool.inputSchema };
|
|
7
|
-
delete cleanInputSchema.$schema;
|
|
29
|
+
const cleanInputSchema = cleanSchema(mcpTool.inputSchema);
|
|
8
30
|
return {
|
|
9
31
|
type: "function",
|
|
10
32
|
function: {
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
import type { Message, Usage
|
|
1
|
+
import type { Message, Usage } from "../types/index.js";
|
|
2
|
+
import { MessageSource } from "../types/index.js";
|
|
3
|
+
import type { SubagentConfiguration } from "./subagentParser.js";
|
|
2
4
|
import { ChatCompletionMessageFunctionToolCall } from "openai/resources.js";
|
|
3
5
|
export interface UserMessageParams {
|
|
4
6
|
content: string;
|
|
@@ -19,7 +21,14 @@ export interface UpdateToolBlockParams {
|
|
|
19
21
|
result?: string;
|
|
20
22
|
success?: boolean;
|
|
21
23
|
error?: string;
|
|
22
|
-
|
|
24
|
+
/**
|
|
25
|
+
* Tool execution stage:
|
|
26
|
+
* - 'start': Tool call initiated during AI streaming
|
|
27
|
+
* - 'streaming': Tool parameters being received incrementally
|
|
28
|
+
* - 'running': Tool execution in progress
|
|
29
|
+
* - 'end': Tool execution completed with final result
|
|
30
|
+
*/
|
|
31
|
+
stage: "start" | "streaming" | "running" | "end";
|
|
23
32
|
name?: string;
|
|
24
33
|
shortResult?: string;
|
|
25
34
|
images?: Array<{
|
|
@@ -27,6 +36,7 @@ export interface UpdateToolBlockParams {
|
|
|
27
36
|
mediaType?: string;
|
|
28
37
|
}>;
|
|
29
38
|
compactParams?: string;
|
|
39
|
+
parametersChunk?: string;
|
|
30
40
|
}
|
|
31
41
|
export type AgentToolBlockUpdateParams = Omit<UpdateToolBlockParams, "messages">;
|
|
32
42
|
export interface AddDiffBlockParams {
|
|
@@ -65,6 +75,7 @@ export interface CompleteCommandParams {
|
|
|
65
75
|
}
|
|
66
76
|
/**
|
|
67
77
|
* Extract text content from user messages in the messages array
|
|
78
|
+
* Excludes messages with source HOOK to prevent hook-generated content from entering user history
|
|
68
79
|
*/
|
|
69
80
|
export declare const extractUserInputHistory: (messages: Message[]) => string[];
|
|
70
81
|
/**
|
|
@@ -74,9 +85,9 @@ export declare const extractUserInputHistory: (messages: Message[]) => string[];
|
|
|
74
85
|
*/
|
|
75
86
|
export declare const convertImageToBase64: (imagePath: string) => string;
|
|
76
87
|
export declare const addUserMessageToMessages: ({ messages, content, images, customCommandContent, source, }: AddUserMessageParams) => Message[];
|
|
77
|
-
export declare const addAssistantMessageToMessages: (messages: Message[], content?: string, toolCalls?: ChatCompletionMessageFunctionToolCall[], usage?: Usage) => Message[];
|
|
88
|
+
export declare const addAssistantMessageToMessages: (messages: Message[], content?: string, toolCalls?: ChatCompletionMessageFunctionToolCall[], usage?: Usage, metadata?: Record<string, unknown>) => Message[];
|
|
78
89
|
export declare const addDiffBlockToMessage: ({ messages, path, diffResult, }: AddDiffBlockParams) => Message[];
|
|
79
|
-
export declare const updateToolBlockInMessage: ({ messages, id, parameters, result, success, error,
|
|
90
|
+
export declare const updateToolBlockInMessage: ({ messages, id, parameters, result, success, error, stage, name, shortResult, images, compactParams, parametersChunk, }: UpdateToolBlockParams) => Message[];
|
|
80
91
|
export declare const addErrorBlockToMessage: ({ messages, error, }: AddErrorBlockParams) => Message[];
|
|
81
92
|
export declare const addMemoryBlockToMessage: ({ messages, content, isSuccess, memoryType, storagePath, }: AddMemoryBlockParams) => Message[];
|
|
82
93
|
/**
|
|
@@ -108,18 +119,19 @@ export interface AddSubagentBlockParams {
|
|
|
108
119
|
subagentId: string;
|
|
109
120
|
subagentName: string;
|
|
110
121
|
status: "active" | "completed" | "error" | "aborted";
|
|
111
|
-
|
|
122
|
+
sessionId: string;
|
|
123
|
+
configuration: SubagentConfiguration;
|
|
112
124
|
}
|
|
113
125
|
export interface UpdateSubagentBlockParams {
|
|
114
126
|
messages: Message[];
|
|
115
127
|
subagentId: string;
|
|
116
128
|
status: "active" | "completed" | "error" | "aborted";
|
|
117
|
-
|
|
129
|
+
sessionId?: string;
|
|
118
130
|
}
|
|
119
|
-
export declare const addSubagentBlockToMessage: ({ messages, subagentId, subagentName, status,
|
|
131
|
+
export declare const addSubagentBlockToMessage: ({ messages, subagentId, subagentName, status, sessionId, configuration, }: AddSubagentBlockParams) => Message[];
|
|
120
132
|
export declare const updateSubagentBlockInMessage: (messages: Message[], subagentId: string, updates: Partial<{
|
|
121
133
|
status: "active" | "completed" | "error" | "aborted";
|
|
122
|
-
|
|
134
|
+
sessionId: string;
|
|
123
135
|
}>) => Message[];
|
|
124
136
|
/**
|
|
125
137
|
* Removes the last user message from the messages array
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messageOperations.d.ts","sourceRoot":"","sources":["../../src/utils/messageOperations.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"messageOperations.d.ts","sourceRoot":"","sources":["../../src/utils/messageOperations.ts"],"names":[],"mappings":"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"}
|