@probelabs/probe 0.6.0-rc140 → 0.6.0-rc141
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/build/agent/index.js +1 -1
- package/build/tools/common.js +1 -1
- package/cjs/agent/ProbeAgent.cjs +1 -1
- package/cjs/index.cjs +1 -1
- package/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/tools/common.js +1 -1
package/build/agent/index.js
CHANGED
|
@@ -7097,7 +7097,7 @@ var init_common = __esm({
|
|
|
7097
7097
|
end_line: external_exports.number().optional().describe("End line number for extracting a range of lines"),
|
|
7098
7098
|
allow_tests: external_exports.boolean().optional().default(false).describe("Allow test files and test code blocks"),
|
|
7099
7099
|
context_lines: external_exports.number().optional().default(10).describe("Number of context lines to include"),
|
|
7100
|
-
format: external_exports.string().optional().default("plain").describe("Output format (plain, markdown, json, color)")
|
|
7100
|
+
format: external_exports.string().optional().default("plain").describe("Output format (plain, markdown, json, xml, color, outline-xml, outline-diff)")
|
|
7101
7101
|
});
|
|
7102
7102
|
delegateSchema = external_exports.object({
|
|
7103
7103
|
task: external_exports.string().describe("The task to delegate to a subagent. Be specific about what needs to be accomplished.")
|
package/build/tools/common.js
CHANGED
|
@@ -30,7 +30,7 @@ export const extractSchema = z.object({
|
|
|
30
30
|
end_line: z.number().optional().describe('End line number for extracting a range of lines'),
|
|
31
31
|
allow_tests: z.boolean().optional().default(false).describe('Allow test files and test code blocks'),
|
|
32
32
|
context_lines: z.number().optional().default(10).describe('Number of context lines to include'),
|
|
33
|
-
format: z.string().optional().default('plain').describe('Output format (plain, markdown, json, color)')
|
|
33
|
+
format: z.string().optional().default('plain').describe('Output format (plain, markdown, json, xml, color, outline-xml, outline-diff)')
|
|
34
34
|
});
|
|
35
35
|
|
|
36
36
|
export const delegateSchema = z.object({
|
package/cjs/agent/ProbeAgent.cjs
CHANGED
|
@@ -32498,7 +32498,7 @@ var init_common2 = __esm({
|
|
|
32498
32498
|
end_line: external_exports.number().optional().describe("End line number for extracting a range of lines"),
|
|
32499
32499
|
allow_tests: external_exports.boolean().optional().default(false).describe("Allow test files and test code blocks"),
|
|
32500
32500
|
context_lines: external_exports.number().optional().default(10).describe("Number of context lines to include"),
|
|
32501
|
-
format: external_exports.string().optional().default("plain").describe("Output format (plain, markdown, json, color)")
|
|
32501
|
+
format: external_exports.string().optional().default("plain").describe("Output format (plain, markdown, json, xml, color, outline-xml, outline-diff)")
|
|
32502
32502
|
});
|
|
32503
32503
|
delegateSchema = external_exports.object({
|
|
32504
32504
|
task: external_exports.string().describe("The task to delegate to a subagent. Be specific about what needs to be accomplished.")
|
package/cjs/index.cjs
CHANGED
|
@@ -5498,7 +5498,7 @@ var init_common = __esm({
|
|
|
5498
5498
|
end_line: external_exports.number().optional().describe("End line number for extracting a range of lines"),
|
|
5499
5499
|
allow_tests: external_exports.boolean().optional().default(false).describe("Allow test files and test code blocks"),
|
|
5500
5500
|
context_lines: external_exports.number().optional().default(10).describe("Number of context lines to include"),
|
|
5501
|
-
format: external_exports.string().optional().default("plain").describe("Output format (plain, markdown, json, color)")
|
|
5501
|
+
format: external_exports.string().optional().default("plain").describe("Output format (plain, markdown, json, xml, color, outline-xml, outline-diff)")
|
|
5502
5502
|
});
|
|
5503
5503
|
delegateSchema = external_exports.object({
|
|
5504
5504
|
task: external_exports.string().describe("The task to delegate to a subagent. Be specific about what needs to be accomplished.")
|
package/index.d.ts
CHANGED
|
@@ -482,7 +482,7 @@ export declare function extract(
|
|
|
482
482
|
path?: string,
|
|
483
483
|
options?: {
|
|
484
484
|
contextLines?: number;
|
|
485
|
-
format?: '
|
|
485
|
+
format?: 'plain' | 'markdown' | 'json' | 'xml' | 'color' | 'outline-xml' | 'outline-diff';
|
|
486
486
|
}
|
|
487
487
|
): Promise<any>;
|
|
488
488
|
|
package/package.json
CHANGED
package/src/tools/common.js
CHANGED
|
@@ -30,7 +30,7 @@ export const extractSchema = z.object({
|
|
|
30
30
|
end_line: z.number().optional().describe('End line number for extracting a range of lines'),
|
|
31
31
|
allow_tests: z.boolean().optional().default(false).describe('Allow test files and test code blocks'),
|
|
32
32
|
context_lines: z.number().optional().default(10).describe('Number of context lines to include'),
|
|
33
|
-
format: z.string().optional().default('plain').describe('Output format (plain, markdown, json, color)')
|
|
33
|
+
format: z.string().optional().default('plain').describe('Output format (plain, markdown, json, xml, color, outline-xml, outline-diff)')
|
|
34
34
|
});
|
|
35
35
|
|
|
36
36
|
export const delegateSchema = z.object({
|