@gurulu/cli 1.0.5 → 1.1.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/dist/bin.js +1618 -362
- package/dist/commands/audit.d.ts +10 -0
- package/dist/commands/audit.d.ts.map +1 -0
- package/dist/commands/init.d.ts +21 -7
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/mcp.d.ts +2 -0
- package/dist/commands/mcp.d.ts.map +1 -0
- package/dist/commands/uninstall.d.ts +11 -0
- package/dist/commands/uninstall.d.ts.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1618 -362
- package/dist/lib/api.d.ts +100 -0
- package/dist/lib/api.d.ts.map +1 -1
- package/dist/lib/detect.d.ts.map +1 -1
- package/dist/lib/editor-mcp.d.ts +34 -0
- package/dist/lib/editor-mcp.d.ts.map +1 -0
- package/dist/lib/env-file.d.ts +42 -0
- package/dist/lib/env-file.d.ts.map +1 -0
- package/dist/lib/exec-install.d.ts.map +1 -1
- package/dist/lib/inject.d.ts +47 -0
- package/dist/lib/inject.d.ts.map +1 -0
- package/dist/lib/install-plan.js +22 -24
- package/dist/wizard/agent.d.ts +22 -0
- package/dist/wizard/agent.d.ts.map +1 -0
- package/dist/wizard/apply.d.ts +16 -0
- package/dist/wizard/apply.d.ts.map +1 -0
- package/dist/wizard/auth.d.ts +13 -0
- package/dist/wizard/auth.d.ts.map +1 -0
- package/dist/wizard/context.d.ts +27 -0
- package/dist/wizard/context.d.ts.map +1 -0
- package/dist/wizard/guard.d.ts +16 -0
- package/dist/wizard/guard.d.ts.map +1 -0
- package/dist/wizard/plan.d.ts +18 -0
- package/dist/wizard/plan.d.ts.map +1 -0
- package/dist/wizard/run.d.ts +16 -0
- package/dist/wizard/run.d.ts.map +1 -0
- package/dist/wizard/wire.d.ts +32 -0
- package/dist/wizard/wire.d.ts.map +1 -0
- package/package.json +5 -3
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { type DoctorReport } from './doctor.ts';
|
|
2
|
+
/** DoctorReport → markdown (pure). */
|
|
3
|
+
export declare function formatAuditMd(report: DoctorReport, when: string): string;
|
|
4
|
+
export declare const auditCmd: import("citty").CommandDef<{
|
|
5
|
+
json: {
|
|
6
|
+
type: "boolean";
|
|
7
|
+
description: string;
|
|
8
|
+
};
|
|
9
|
+
}>;
|
|
10
|
+
//# sourceMappingURL=audit.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"audit.d.ts","sourceRoot":"","sources":["../../src/commands/audit.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,KAAK,YAAY,EAAa,MAAM,aAAa,CAAC;AAI3D,sCAAsC;AACtC,wBAAgB,aAAa,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAgBxE;AAED,eAAO,MAAM,QAAQ;;;;;EAkBnB,CAAC"}
|
package/dist/commands/init.d.ts
CHANGED
|
@@ -3,29 +3,43 @@ export declare const initCmd: import("citty").CommandDef<{
|
|
|
3
3
|
type: "string";
|
|
4
4
|
description: string;
|
|
5
5
|
};
|
|
6
|
-
|
|
6
|
+
'write-key': {
|
|
7
7
|
type: "string";
|
|
8
8
|
description: string;
|
|
9
|
-
default: string;
|
|
10
9
|
};
|
|
11
|
-
|
|
10
|
+
'api-key': {
|
|
11
|
+
type: "string";
|
|
12
|
+
description: string;
|
|
13
|
+
};
|
|
14
|
+
endpoint: {
|
|
12
15
|
type: "string";
|
|
13
16
|
description: string;
|
|
14
17
|
default: string;
|
|
15
18
|
};
|
|
16
|
-
|
|
19
|
+
framework: {
|
|
17
20
|
type: "string";
|
|
18
21
|
description: string;
|
|
19
22
|
};
|
|
20
|
-
|
|
23
|
+
install: {
|
|
24
|
+
type: "boolean";
|
|
25
|
+
description: string;
|
|
26
|
+
default: true;
|
|
27
|
+
};
|
|
28
|
+
pull: {
|
|
29
|
+
type: "boolean";
|
|
30
|
+
description: string;
|
|
31
|
+
default: true;
|
|
32
|
+
};
|
|
33
|
+
ai: {
|
|
21
34
|
type: "boolean";
|
|
22
35
|
description: string;
|
|
36
|
+
default: true;
|
|
23
37
|
};
|
|
24
|
-
|
|
38
|
+
yes: {
|
|
25
39
|
type: "boolean";
|
|
26
40
|
description: string;
|
|
27
41
|
};
|
|
28
|
-
|
|
42
|
+
ci: {
|
|
29
43
|
type: "boolean";
|
|
30
44
|
description: string;
|
|
31
45
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/commands/init.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/commands/init.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqClB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mcp.d.ts","sourceRoot":"","sources":["../../src/commands/mcp.ts"],"names":[],"mappings":"AAkEA,eAAO,MAAM,MAAM,qDAGjB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"uninstall.d.ts","sourceRoot":"","sources":["../../src/commands/uninstall.ts"],"names":[],"mappings":"AA+BA,eAAO,MAAM,YAAY;;;;;;;;;EA8DvB,CAAC"}
|
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AA0BA,eAAO,MAAM,OAAO,UAAU,CAAC;AAE/B,QAAA,MAAM,OAAO,qDAmBX,CAAC;AAEH,eAAe,OAAO,CAAC"}
|