@hongmaple0820/scale-engine 0.47.0 → 0.48.0
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/README.en.md +8 -2
- package/README.md +9 -3
- package/dist/api/cli.js +975 -6222
- package/dist/api/cli.js.map +1 -1
- package/dist/cli/artifactCrudCommands.d.ts +67 -0
- package/dist/cli/artifactCrudCommands.js +182 -0
- package/dist/cli/artifactCrudCommands.js.map +1 -0
- package/dist/cli/codegraphCommands.d.ts +1 -0
- package/dist/cli/codegraphCommands.js +241 -0
- package/dist/cli/codegraphCommands.js.map +1 -0
- package/dist/cli/contextCommands.d.ts +1 -0
- package/dist/cli/contextCommands.js +415 -0
- package/dist/cli/contextCommands.js.map +1 -0
- package/dist/cli/dependencyTddCommands.d.ts +92 -0
- package/dist/cli/dependencyTddCommands.js +174 -0
- package/dist/cli/dependencyTddCommands.js.map +1 -0
- package/dist/cli/diagnoseHuntCommands.d.ts +135 -0
- package/dist/cli/diagnoseHuntCommands.js +224 -0
- package/dist/cli/diagnoseHuntCommands.js.map +1 -0
- package/dist/cli/engineBootstrap.d.ts +39 -0
- package/dist/cli/engineBootstrap.js +129 -0
- package/dist/cli/engineBootstrap.js.map +1 -0
- package/dist/cli/evalCommands.d.ts +1 -0
- package/dist/cli/evalCommands.js +262 -0
- package/dist/cli/evalCommands.js.map +1 -0
- package/dist/cli/evolveDoctorCommands.d.ts +18 -0
- package/dist/cli/evolveDoctorCommands.js +59 -0
- package/dist/cli/evolveDoctorCommands.js.map +1 -0
- package/dist/cli/gateInlineCommands.d.ts +43 -0
- package/dist/cli/gateInlineCommands.js +74 -0
- package/dist/cli/gateInlineCommands.js.map +1 -0
- package/dist/cli/initConfigCommands.d.ts +138 -0
- package/dist/cli/initConfigCommands.js +602 -0
- package/dist/cli/initConfigCommands.js.map +1 -0
- package/dist/cli/metaGovernanceCommands.d.ts +11 -0
- package/dist/cli/metaGovernanceCommands.js +55 -0
- package/dist/cli/metaGovernanceCommands.js.map +1 -0
- package/dist/cli/runtimeSkillCommands.d.ts +6 -0
- package/dist/cli/runtimeSkillCommands.js +1515 -0
- package/dist/cli/runtimeSkillCommands.js.map +1 -0
- package/dist/cli/sessionCommands.d.ts +17 -0
- package/dist/cli/sessionCommands.js +38 -0
- package/dist/cli/sessionCommands.js.map +1 -0
- package/dist/cli/toolAgentCommands.d.ts +3 -0
- package/dist/cli/toolAgentCommands.js +441 -0
- package/dist/cli/toolAgentCommands.js.map +1 -0
- package/dist/cli/transitionCommands.d.ts +62 -0
- package/dist/cli/transitionCommands.js +174 -0
- package/dist/cli/transitionCommands.js.map +1 -0
- package/dist/cli/upgradeAssetsCommands.d.ts +44 -0
- package/dist/cli/upgradeAssetsCommands.js +933 -0
- package/dist/cli/upgradeAssetsCommands.js.map +1 -0
- package/dist/cli/workflowEvidenceCommands.d.ts +34 -0
- package/dist/cli/workflowEvidenceCommands.js +130 -0
- package/dist/cli/workflowEvidenceCommands.js.map +1 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +2 -1
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
export declare const initCommand: import("citty").CommandDef<{
|
|
2
|
+
agent: {
|
|
3
|
+
type: "string";
|
|
4
|
+
default: string;
|
|
5
|
+
description: string;
|
|
6
|
+
};
|
|
7
|
+
dir: {
|
|
8
|
+
type: "string";
|
|
9
|
+
default: string;
|
|
10
|
+
description: string;
|
|
11
|
+
};
|
|
12
|
+
json: {
|
|
13
|
+
type: "boolean";
|
|
14
|
+
default: false;
|
|
15
|
+
description: string;
|
|
16
|
+
};
|
|
17
|
+
scenario: {
|
|
18
|
+
type: "string";
|
|
19
|
+
default: string;
|
|
20
|
+
description: string;
|
|
21
|
+
};
|
|
22
|
+
'governance-pack': {
|
|
23
|
+
type: "string";
|
|
24
|
+
default: string;
|
|
25
|
+
description: string;
|
|
26
|
+
};
|
|
27
|
+
quick: {
|
|
28
|
+
type: "boolean";
|
|
29
|
+
default: false;
|
|
30
|
+
description: string;
|
|
31
|
+
};
|
|
32
|
+
interactive: {
|
|
33
|
+
type: "boolean";
|
|
34
|
+
default: false;
|
|
35
|
+
description: string;
|
|
36
|
+
};
|
|
37
|
+
profile: {
|
|
38
|
+
type: "string";
|
|
39
|
+
default: string;
|
|
40
|
+
description: string;
|
|
41
|
+
};
|
|
42
|
+
'coverage-threshold': {
|
|
43
|
+
type: "string";
|
|
44
|
+
default: string;
|
|
45
|
+
description: string;
|
|
46
|
+
};
|
|
47
|
+
'retry-threshold': {
|
|
48
|
+
type: "string";
|
|
49
|
+
default: string;
|
|
50
|
+
description: string;
|
|
51
|
+
};
|
|
52
|
+
'block-severity': {
|
|
53
|
+
type: "string";
|
|
54
|
+
default: string;
|
|
55
|
+
description: string;
|
|
56
|
+
};
|
|
57
|
+
'with-deps': {
|
|
58
|
+
type: "boolean";
|
|
59
|
+
default: false;
|
|
60
|
+
description: string;
|
|
61
|
+
};
|
|
62
|
+
}>;
|
|
63
|
+
export declare const bootstrapCommand: import("citty").CommandDef<import("citty").ArgsDef>;
|
|
64
|
+
export declare const setupCommand: import("citty").CommandDef<{
|
|
65
|
+
dir: {
|
|
66
|
+
type: "string";
|
|
67
|
+
default: string;
|
|
68
|
+
description: string;
|
|
69
|
+
};
|
|
70
|
+
pack: {
|
|
71
|
+
type: "string";
|
|
72
|
+
default: string;
|
|
73
|
+
description: string;
|
|
74
|
+
};
|
|
75
|
+
profile: {
|
|
76
|
+
type: "string";
|
|
77
|
+
description: string;
|
|
78
|
+
};
|
|
79
|
+
'governance-pack': {
|
|
80
|
+
type: "string";
|
|
81
|
+
description: string;
|
|
82
|
+
};
|
|
83
|
+
include: {
|
|
84
|
+
type: "string";
|
|
85
|
+
description: string;
|
|
86
|
+
};
|
|
87
|
+
apply: {
|
|
88
|
+
type: "boolean";
|
|
89
|
+
default: false;
|
|
90
|
+
description: string;
|
|
91
|
+
};
|
|
92
|
+
yes: {
|
|
93
|
+
type: "boolean";
|
|
94
|
+
default: false;
|
|
95
|
+
description: string;
|
|
96
|
+
};
|
|
97
|
+
verify: {
|
|
98
|
+
type: "boolean";
|
|
99
|
+
default: false;
|
|
100
|
+
description: string;
|
|
101
|
+
};
|
|
102
|
+
interactive: {
|
|
103
|
+
type: "boolean";
|
|
104
|
+
default: true;
|
|
105
|
+
description: string;
|
|
106
|
+
};
|
|
107
|
+
lang: {
|
|
108
|
+
type: "string";
|
|
109
|
+
description: string;
|
|
110
|
+
};
|
|
111
|
+
'memory-provider': {
|
|
112
|
+
type: "string";
|
|
113
|
+
description: string;
|
|
114
|
+
};
|
|
115
|
+
'memory-mode': {
|
|
116
|
+
type: "string";
|
|
117
|
+
description: string;
|
|
118
|
+
};
|
|
119
|
+
'memory-endpoint': {
|
|
120
|
+
type: "string";
|
|
121
|
+
description: string;
|
|
122
|
+
};
|
|
123
|
+
'memory-write-mode': {
|
|
124
|
+
type: "string";
|
|
125
|
+
description: string;
|
|
126
|
+
};
|
|
127
|
+
'allow-external-write': {
|
|
128
|
+
type: "boolean";
|
|
129
|
+
default: false;
|
|
130
|
+
description: string;
|
|
131
|
+
};
|
|
132
|
+
json: {
|
|
133
|
+
type: "boolean";
|
|
134
|
+
default: false;
|
|
135
|
+
description: string;
|
|
136
|
+
};
|
|
137
|
+
}>;
|
|
138
|
+
export declare const configCommand: import("citty").CommandDef<import("citty").ArgsDef>;
|