@nuvin/agent-core 0.2.0 → 0.2.1-rc.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/VERSION +2 -2
- package/dist/agent/context-compactor.d.ts +1 -1
- package/dist/agent/index.js +1 -1
- package/dist/agent/summarize-transcript.d.ts +7 -0
- package/dist/chunk-D5IVWJHX.js +1 -1
- package/dist/chunk-FFIZ6TKW.js +1 -1
- package/dist/chunk-GAZGO6N7.js +1 -1
- package/dist/chunk-IUZALP6K.js +1 -1
- package/dist/chunk-KIIEBXJF.js +1 -1
- package/dist/chunk-LIE76IJA.js +1 -1
- package/dist/chunk-X7VAACWY.js +1 -1
- package/dist/chunk-YNOIG4FD.js +1 -1
- package/dist/formats/index.js +1 -1
- package/dist/hooks/index.js +1 -1
- package/dist/models/index.js +1 -1
- package/dist/shared/index.js +1 -1
- package/dist/tools/file-editing/file-edit-tool.d.ts +1 -1
- package/dist/tools/index.js +1 -1
- package/dist/tools/search/grep-tool.d.ts +1 -1
- package/dist/tools/session/lsp-tool.d.ts +1 -1
- package/dist/tools/shell/bash-tool.d.ts +2 -2
- package/package.json +1 -1
|
@@ -6,8 +6,8 @@ export interface GrepToolOptions {
|
|
|
6
6
|
}
|
|
7
7
|
export declare function createGrepTool(options?: GrepToolOptions): import("../../shared/types.ts").ToolDefinition<{
|
|
8
8
|
pattern: string;
|
|
9
|
-
include?: string | undefined;
|
|
10
9
|
path?: string | undefined;
|
|
10
|
+
include?: string | undefined;
|
|
11
11
|
context?: number | undefined;
|
|
12
12
|
limit?: number | undefined;
|
|
13
13
|
}, import("../../shared/types.ts").ToolOutputEnvelope, undefined, {
|
|
@@ -6,9 +6,9 @@ export interface LspToolOptions {
|
|
|
6
6
|
name?: string;
|
|
7
7
|
}
|
|
8
8
|
export declare function createLspTool(options?: LspToolOptions): import("../../shared/types.ts").ToolDefinition<{
|
|
9
|
+
filePath: string;
|
|
9
10
|
line: number;
|
|
10
11
|
operation: string;
|
|
11
|
-
filePath: string;
|
|
12
12
|
character: number;
|
|
13
13
|
query?: string | undefined;
|
|
14
14
|
}, import("../../shared/types.ts").ToolOutputEnvelope, undefined, {
|
|
@@ -27,8 +27,8 @@ export declare function resolveBashExecutionTarget(input: Pick<BashToolInput, "c
|
|
|
27
27
|
export declare function createBashTool(options?: BashToolOptions): import("../../shared/types.ts").ToolDefinition<{
|
|
28
28
|
description: string;
|
|
29
29
|
command: string;
|
|
30
|
-
timeoutMs?: number | undefined;
|
|
31
30
|
cwd?: string | undefined;
|
|
31
|
+
timeoutMs?: number | undefined;
|
|
32
32
|
runInBackground?: boolean | undefined;
|
|
33
33
|
ignoreOutput?: boolean | undefined;
|
|
34
34
|
outputRegex?: string | undefined;
|
|
@@ -64,8 +64,8 @@ export declare function createBashTool(options?: BashToolOptions): import("../..
|
|
|
64
64
|
export declare function createShellExecTool(options?: BashToolOptions): import("../../shared/types.ts").ToolDefinition<{
|
|
65
65
|
description: string;
|
|
66
66
|
command: string;
|
|
67
|
-
timeoutMs?: number | undefined;
|
|
68
67
|
cwd?: string | undefined;
|
|
68
|
+
timeoutMs?: number | undefined;
|
|
69
69
|
runInBackground?: boolean | undefined;
|
|
70
70
|
ignoreOutput?: boolean | undefined;
|
|
71
71
|
outputRegex?: string | undefined;
|