@xutest1/sdk 0.2.2 → 0.2.3
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/gen/types.gen.d.ts +4 -0
- package/package.json +6 -6
package/gen/types.gen.d.ts
CHANGED
|
@@ -457,6 +457,10 @@ export type Config = {
|
|
|
457
457
|
* Additional instruction files or patterns to include
|
|
458
458
|
*/
|
|
459
459
|
instructions?: Array<string>;
|
|
460
|
+
/**
|
|
461
|
+
* System prompt preset: beast (OpenAI), qwen (default), anthropic, gemini, codex, minimal, or none
|
|
462
|
+
*/
|
|
463
|
+
systemPrompt?: "beast" | "qwen" | "anthropic" | "gemini" | "codex" | "minimal" | "none";
|
|
460
464
|
layout?: LayoutConfig;
|
|
461
465
|
permission?: {
|
|
462
466
|
edit?: "ask" | "allow" | "deny";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xutest1/sdk",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Type-safe SDK for A3Code AI coding agent",
|
|
5
5
|
"author": "A3Code",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
},
|
|
22
22
|
"files": ["*"],
|
|
23
23
|
"optionalDependencies": {
|
|
24
|
-
"@xutest1/darwin-arm64": "0.2.
|
|
25
|
-
"@xutest1/darwin-x64": "0.2.
|
|
26
|
-
"@xutest1/linux-arm64": "0.2.
|
|
27
|
-
"@xutest1/linux-x64": "0.2.
|
|
28
|
-
"@xutest1/windows-x64": "0.2.
|
|
24
|
+
"@xutest1/darwin-arm64": "0.2.1",
|
|
25
|
+
"@xutest1/darwin-x64": "0.2.1",
|
|
26
|
+
"@xutest1/linux-arm64": "0.2.1",
|
|
27
|
+
"@xutest1/linux-x64": "0.2.1",
|
|
28
|
+
"@xutest1/windows-x64": "0.2.1"
|
|
29
29
|
}
|
|
30
30
|
}
|