@opentag/cli 0.2.0 → 0.3.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.
Files changed (56) hide show
  1. package/README.md +11 -0
  2. package/dist/cancel.d.ts +28 -0
  3. package/dist/cancel.d.ts.map +1 -0
  4. package/dist/catalogs/capabilities.d.ts +32 -0
  5. package/dist/catalogs/capabilities.d.ts.map +1 -0
  6. package/dist/catalogs/executors.d.ts +4 -3
  7. package/dist/catalogs/executors.d.ts.map +1 -1
  8. package/dist/catalogs/platforms.d.ts +1 -1
  9. package/dist/catalogs/platforms.d.ts.map +1 -1
  10. package/dist/commands/executors.d.ts +3 -0
  11. package/dist/commands/executors.d.ts.map +1 -1
  12. package/dist/commands/platforms.d.ts +6 -1
  13. package/dist/commands/platforms.d.ts.map +1 -1
  14. package/dist/commands/setup.d.ts +1 -0
  15. package/dist/commands/setup.d.ts.map +1 -1
  16. package/dist/config.d.ts +894 -52
  17. package/dist/config.d.ts.map +1 -1
  18. package/dist/doctor.d.ts +4 -0
  19. package/dist/doctor.d.ts.map +1 -1
  20. package/dist/index.js +4033 -1542
  21. package/dist/index.js.map +1 -1
  22. package/dist/ingest.d.ts +65 -0
  23. package/dist/ingest.d.ts.map +1 -0
  24. package/dist/maintenance.d.ts +28 -0
  25. package/dist/maintenance.d.ts.map +1 -0
  26. package/dist/pair.d.ts +29 -0
  27. package/dist/pair.d.ts.map +1 -0
  28. package/dist/platforms/gitlab/display.d.ts +10 -0
  29. package/dist/platforms/gitlab/display.d.ts.map +1 -0
  30. package/dist/platforms/lark/registration-ui.d.ts +4 -3
  31. package/dist/platforms/lark/registration-ui.d.ts.map +1 -1
  32. package/dist/platforms/ports.d.ts +1 -0
  33. package/dist/platforms/ports.d.ts.map +1 -1
  34. package/dist/project-target-summary.d.ts +5 -0
  35. package/dist/project-target-summary.d.ts.map +1 -0
  36. package/dist/relay-security.d.ts +12 -0
  37. package/dist/relay-security.d.ts.map +1 -0
  38. package/dist/secret-readiness.d.ts +2 -0
  39. package/dist/secret-readiness.d.ts.map +1 -0
  40. package/dist/service.d.ts +87 -0
  41. package/dist/service.d.ts.map +1 -0
  42. package/dist/setup/builders.d.ts.map +1 -1
  43. package/dist/setup/defaults.d.ts.map +1 -1
  44. package/dist/setup/flow.d.ts +17 -3
  45. package/dist/setup/flow.d.ts.map +1 -1
  46. package/dist/setup/guides.d.ts.map +1 -1
  47. package/dist/setup/summary.d.ts.map +1 -1
  48. package/dist/setup/types.d.ts +18 -3
  49. package/dist/setup/types.d.ts.map +1 -1
  50. package/dist/start.d.ts +38 -7
  51. package/dist/start.d.ts.map +1 -1
  52. package/dist/status.d.ts +70 -0
  53. package/dist/status.d.ts.map +1 -1
  54. package/dist/ui/messages.d.ts +1 -1
  55. package/dist/ui/messages.d.ts.map +1 -1
  56. package/package.json +9 -9
package/README.md CHANGED
@@ -12,6 +12,7 @@ Then run:
12
12
 
13
13
  ```bash
14
14
  opentag setup
15
+ opentag doctor
15
16
  opentag start
16
17
  ```
17
18
 
@@ -61,6 +62,16 @@ The setup wizard links to the matching guide for each platform:
61
62
  - A local coding agent if you choose Codex or Claude Code.
62
63
  - Platform credentials for the platform you connect.
63
64
 
65
+ ## No Install
66
+
67
+ The scoped CLI package supports one-off runs without a global install:
68
+
69
+ ```bash
70
+ npx @opentag/cli doctor
71
+ npx @opentag/cli setup
72
+ npx @opentag/cli start
73
+ ```
74
+
64
75
  ## Local Development
65
76
 
66
77
  Inside the OpenTag monorepo, install the development command:
@@ -0,0 +1,28 @@
1
+ import type { OpenTagRun } from "@opentag/core";
2
+ import { type OpenTagCliConfig } from "./config.js";
3
+ export type CancelCommandOptions = {
4
+ config?: string;
5
+ run?: string;
6
+ channel?: string;
7
+ reason?: string;
8
+ requestedBy?: string;
9
+ };
10
+ export type CancelCommandDependencies = {
11
+ fetchImpl?: typeof fetch;
12
+ logger?: Pick<typeof console, "log">;
13
+ };
14
+ export type CancelSummary = {
15
+ configPath: string;
16
+ dispatcherUrl: string;
17
+ scope: string;
18
+ run: OpenTagRun;
19
+ };
20
+ export declare function cancelFromConfig(input: {
21
+ config: OpenTagCliConfig;
22
+ configPath: string;
23
+ options: CancelCommandOptions;
24
+ fetchImpl?: typeof fetch;
25
+ }): Promise<CancelSummary>;
26
+ export declare function formatCancelSummary(summary: CancelSummary): string;
27
+ export declare function runCancelCommand(options: CancelCommandOptions, dependencies?: CancelCommandDependencies): Promise<void>;
28
+ //# sourceMappingURL=cancel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cancel.d.ts","sourceRoot":"","sources":["../src/cancel.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAChD,OAAO,EAA2D,KAAK,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAG7G,MAAM,MAAM,oBAAoB,GAAG;IACjC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,yBAAyB,GAAG;IACtC,SAAS,CAAC,EAAE,OAAO,KAAK,CAAC;IACzB,MAAM,CAAC,EAAE,IAAI,CAAC,OAAO,OAAO,EAAE,KAAK,CAAC,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,UAAU,CAAC;CACjB,CAAC;AAyBF,wBAAsB,gBAAgB,CAAC,KAAK,EAAE;IAC5C,MAAM,EAAE,gBAAgB,CAAC;IACzB,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,oBAAoB,CAAC;IAC9B,SAAS,CAAC,EAAE,OAAO,KAAK,CAAC;CAC1B,GAAG,OAAO,CAAC,aAAa,CAAC,CAsCzB;AAED,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,aAAa,GAAG,MAAM,CAYlE;AAED,wBAAsB,gBAAgB,CAAC,OAAO,EAAE,oBAAoB,EAAE,YAAY,GAAE,yBAA8B,GAAG,OAAO,CAAC,IAAI,CAAC,CAKjI"}
@@ -0,0 +1,32 @@
1
+ import { type PlatformCapabilityDescriptor } from "@opentag/core";
2
+ import { type ExecutorId } from "./executors.js";
3
+ import { type PlatformId } from "./platforms.js";
4
+ export type ExecutorCapabilityDescriptor = {
5
+ id: string;
6
+ invocation: "spawn" | "hook_ingest" | "hybrid";
7
+ supportsProfile: boolean;
8
+ supportsStreaming: boolean;
9
+ supportsCancel: boolean;
10
+ supportsHookCompletion: boolean;
11
+ progressEvents: "none" | "audit" | "human";
12
+ approvalMode: "none" | "opentag_policy" | "executor_managed";
13
+ contextAccess: Array<"context_packet" | "context_pointers" | "workspace">;
14
+ promptAssembly: "opentag" | "executor_adapter" | "external_runtime";
15
+ writeAccess: "none" | "workspace" | "external";
16
+ conversationAccess: "none" | "request" | "thread_transcript";
17
+ promptMutation: "none" | "append" | "replace";
18
+ rawContextAccess: boolean;
19
+ writeActionAccess: "none" | "propose" | "execute";
20
+ workspaceIsolation: "none" | "branch" | "worktree" | "external";
21
+ requiredSecrets: string[];
22
+ completionSignals: Array<"process_exit" | "hook_event" | "stream_event">;
23
+ };
24
+ export declare const PLATFORM_CAPABILITIES: Record<PlatformId, PlatformCapabilityDescriptor>;
25
+ export declare const EXECUTOR_CAPABILITIES: Record<ExecutorId, ExecutorCapabilityDescriptor>;
26
+ export declare function formatPlatformCapability(id: PlatformId): string;
27
+ export declare function formatExecutorCapability(id: string): string;
28
+ export declare function formatConfiguredCapabilities(input: {
29
+ platforms: PlatformId[];
30
+ executors: string[];
31
+ }): string[];
32
+ //# sourceMappingURL=capabilities.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"capabilities.d.ts","sourceRoot":"","sources":["../../src/catalogs/capabilities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkC,KAAK,4BAA4B,EAAE,MAAM,eAAe,CAAC;AAClG,OAAO,EAAoB,KAAK,UAAU,EAAgB,MAAM,gBAAgB,CAAC;AACjF,OAAO,EAAoB,KAAK,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAEnE,MAAM,MAAM,4BAA4B,GAAG;IACzC,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,EAAE,OAAO,GAAG,aAAa,GAAG,QAAQ,CAAC;IAC/C,eAAe,EAAE,OAAO,CAAC;IACzB,iBAAiB,EAAE,OAAO,CAAC;IAC3B,cAAc,EAAE,OAAO,CAAC;IACxB,sBAAsB,EAAE,OAAO,CAAC;IAChC,cAAc,EAAE,MAAM,GAAG,OAAO,GAAG,OAAO,CAAC;IAC3C,YAAY,EAAE,MAAM,GAAG,gBAAgB,GAAG,kBAAkB,CAAC;IAC7D,aAAa,EAAE,KAAK,CAAC,gBAAgB,GAAG,kBAAkB,GAAG,WAAW,CAAC,CAAC;IAC1E,cAAc,EAAE,SAAS,GAAG,kBAAkB,GAAG,kBAAkB,CAAC;IACpE,WAAW,EAAE,MAAM,GAAG,WAAW,GAAG,UAAU,CAAC;IAC/C,kBAAkB,EAAE,MAAM,GAAG,SAAS,GAAG,mBAAmB,CAAC;IAC7D,cAAc,EAAE,MAAM,GAAG,QAAQ,GAAG,SAAS,CAAC;IAC9C,gBAAgB,EAAE,OAAO,CAAC;IAC1B,iBAAiB,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS,CAAC;IAClD,kBAAkB,EAAE,MAAM,GAAG,QAAQ,GAAG,UAAU,GAAG,UAAU,CAAC;IAChE,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,iBAAiB,EAAE,KAAK,CAAC,cAAc,GAAG,YAAY,GAAG,cAAc,CAAC,CAAC;CAC1E,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,MAAM,CAAC,UAAU,EAAE,4BAA4B,CAAkC,CAAC;AAEtH,eAAO,MAAM,qBAAqB,EAAE,MAAM,CAAC,UAAU,EAAE,4BAA4B,CAiFlF,CAAC;AAMF,wBAAgB,wBAAwB,CAAC,EAAE,EAAE,UAAU,GAAG,MAAM,CAK/D;AAED,wBAAgB,wBAAwB,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,CAU3D;AAED,wBAAgB,4BAA4B,CAAC,KAAK,EAAE;IAAE,SAAS,EAAE,UAAU,EAAE,CAAC;IAAC,SAAS,EAAE,MAAM,EAAE,CAAA;CAAE,GAAG,MAAM,EAAE,CAK9G"}
@@ -1,8 +1,9 @@
1
- export type ExecutorId = "echo" | "codex" | "claude-code";
1
+ export type ExecutorId = "echo" | "codex" | "claude-code" | "hermes";
2
2
  export type ExecutorDescriptor = {
3
3
  id: ExecutorId;
4
4
  label: string;
5
5
  command?: string;
6
+ commandEnv?: string;
6
7
  alwaysAvailable?: boolean;
7
8
  devOnly?: boolean;
8
9
  };
@@ -12,12 +13,12 @@ export type ExecutorDetection = {
12
13
  reason: string;
13
14
  };
14
15
  export declare const EXECUTOR_CATALOG: ExecutorDescriptor[];
15
- export declare function parseExecutorId(value: string): ExecutorId;
16
+ export declare function isExecutorId(value: string): value is ExecutorId;
16
17
  export declare function detectExecutors(env?: NodeJS.ProcessEnv): ExecutorDetection[];
17
18
  export declare function defaultExecutorId(input?: {
18
19
  previous?: ExecutorId;
19
20
  detections?: ExecutorDetection[];
20
21
  }): ExecutorId;
21
- export declare function executorLabel(id: ExecutorId): string;
22
+ export declare function executorLabel(id: string): string;
22
23
  export declare function formatExecutors(env?: NodeJS.ProcessEnv): string;
23
24
  //# sourceMappingURL=executors.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"executors.d.ts","sourceRoot":"","sources":["../../src/catalogs/executors.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,OAAO,GAAG,aAAa,CAAC;AAE1D,MAAM,MAAM,kBAAkB,GAAG;IAC/B,EAAE,EAAE,UAAU,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,EAAE,EAAE,UAAU,CAAC;IACf,SAAS,EAAE,OAAO,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,kBAAkB,EAiBhD,CAAC;AAWF,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,UAAU,CAKzD;AAED,wBAAgB,eAAe,CAAC,GAAG,GAAE,MAAM,CAAC,UAAwB,GAAG,iBAAiB,EAAE,CAgBzF;AAED,wBAAgB,iBAAiB,CAAC,KAAK,GAAE;IACvC,QAAQ,CAAC,EAAE,UAAU,CAAC;IACtB,UAAU,CAAC,EAAE,iBAAiB,EAAE,CAAC;CAC7B,GAAG,UAAU,CAYlB;AAED,wBAAgB,aAAa,CAAC,EAAE,EAAE,UAAU,GAAG,MAAM,CAEpD;AASD,wBAAgB,eAAe,CAAC,GAAG,GAAE,MAAM,CAAC,UAAwB,GAAG,MAAM,CAU5E"}
1
+ {"version":3,"file":"executors.d.ts","sourceRoot":"","sources":["../../src/catalogs/executors.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,OAAO,GAAG,aAAa,GAAG,QAAQ,CAAC;AAErE,MAAM,MAAM,kBAAkB,GAAG;IAC/B,EAAE,EAAE,UAAU,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,EAAE,EAAE,UAAU,CAAC;IACf,SAAS,EAAE,OAAO,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,kBAAkB,EAwBhD,CAAC;AAgBF,wBAAgB,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,UAAU,CAE/D;AAED,wBAAgB,eAAe,CAAC,GAAG,GAAE,MAAM,CAAC,UAAwB,GAAG,iBAAiB,EAAE,CAiBzF;AAED,wBAAgB,iBAAiB,CAAC,KAAK,GAAE;IACvC,QAAQ,CAAC,EAAE,UAAU,CAAC;IACtB,UAAU,CAAC,EAAE,iBAAiB,EAAE,CAAC;CAC7B,GAAG,UAAU,CAelB;AAED,wBAAgB,aAAa,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,CAEhD;AASD,wBAAgB,eAAe,CAAC,GAAG,GAAE,MAAM,CAAC,UAAwB,GAAG,MAAM,CAU5E"}
@@ -1,5 +1,5 @@
1
1
  import type { CliLanguage } from "./languages.js";
2
- export type PlatformId = "lark" | "slack" | "github" | "telegram";
2
+ export type PlatformId = "lark" | "slack" | "github" | "gitlab" | "telegram";
3
3
  export type PlatformStatus = "setup_ready" | "setup_pending" | "experimental_setup_pending";
4
4
  export type PlatformDescriptor = {
5
5
  id: PlatformId;
@@ -1 +1 @@
1
- {"version":3,"file":"platforms.d.ts","sourceRoot":"","sources":["../../src/catalogs/platforms.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAElD,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,GAAG,UAAU,CAAC;AAElE,MAAM,MAAM,cAAc,GAAG,aAAa,GAAG,eAAe,GAAG,4BAA4B,CAAC;AAE5F,MAAM,MAAM,kBAAkB,GAAG;IAC/B,EAAE,EAAE,UAAU,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,cAAc,CAAC;IACvB,SAAS,EAAE,OAAO,CAAC;CACpB,CAAC;AAmBF,eAAO,MAAM,gBAAgB,EAAE,kBAAkB,EAyBhD,CAAC;AAEF,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,UAAU,CAKzD;AAED,wBAAgB,YAAY,CAAC,EAAE,EAAE,UAAU,GAAG,kBAAkB,CAM/D;AAED,wBAAgB,qBAAqB,CAAC,EAAE,EAAE,UAAU,EAAE,QAAQ,EAAE,WAAW,GAAG,MAAM,GAAG,SAAS,CAG/F;AAED,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM,CASnE;AAED,wBAAgB,eAAe,IAAI,MAAM,CAOxC"}
1
+ {"version":3,"file":"platforms.d.ts","sourceRoot":"","sources":["../../src/catalogs/platforms.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAElD,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,GAAG,QAAQ,GAAG,UAAU,CAAC;AAE7E,MAAM,MAAM,cAAc,GAAG,aAAa,GAAG,eAAe,GAAG,4BAA4B,CAAC;AAE5F,MAAM,MAAM,kBAAkB,GAAG;IAC/B,EAAE,EAAE,UAAU,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,cAAc,CAAC;IACvB,SAAS,EAAE,OAAO,CAAC;CACpB,CAAC;AAqBF,eAAO,MAAM,gBAAgB,EAAE,kBAAkB,EA+BhD,CAAC;AAEF,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,UAAU,CAKzD;AAED,wBAAgB,YAAY,CAAC,EAAE,EAAE,UAAU,GAAG,kBAAkB,CAM/D;AAED,wBAAgB,qBAAqB,CAAC,EAAE,EAAE,UAAU,EAAE,QAAQ,EAAE,WAAW,GAAG,MAAM,GAAG,SAAS,CAG/F;AAED,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM,CASnE;AAED,wBAAgB,eAAe,IAAI,MAAM,CAOxC"}
@@ -1,5 +1,8 @@
1
1
  export type ExecutorsCommandOptions = {
2
2
  env?: NodeJS.ProcessEnv;
3
+ logger?: Pick<typeof console, "log">;
3
4
  };
5
+ export declare function formatExecutorCapabilityCatalog(): string;
6
+ export declare function formatExecutorsCommandOutput(env?: NodeJS.ProcessEnv): string;
4
7
  export declare function runExecutorsCommand(options?: ExecutorsCommandOptions): void;
5
8
  //# sourceMappingURL=executors.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"executors.d.ts","sourceRoot":"","sources":["../../src/commands/executors.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,uBAAuB,GAAG;IACpC,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;CACzB,CAAC;AAEF,wBAAgB,mBAAmB,CAAC,OAAO,GAAE,uBAA4B,GAAG,IAAI,CAE/E"}
1
+ {"version":3,"file":"executors.d.ts","sourceRoot":"","sources":["../../src/commands/executors.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,uBAAuB,GAAG;IACpC,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;IACxB,MAAM,CAAC,EAAE,IAAI,CAAC,OAAO,OAAO,EAAE,KAAK,CAAC,CAAC;CACtC,CAAC;AAEF,wBAAgB,+BAA+B,IAAI,MAAM,CAExD;AAED,wBAAgB,4BAA4B,CAAC,GAAG,GAAE,MAAM,CAAC,UAAwB,GAAG,MAAM,CAEzF;AAED,wBAAgB,mBAAmB,CAAC,OAAO,GAAE,uBAA4B,GAAG,IAAI,CAG/E"}
@@ -1,2 +1,7 @@
1
- export declare function runPlatformsCommand(): void;
1
+ export type PlatformsCommandOptions = {
2
+ logger?: Pick<typeof console, "log">;
3
+ };
4
+ export declare function formatPlatformCapabilityCatalog(): string;
5
+ export declare function formatPlatformsCommandOutput(): string;
6
+ export declare function runPlatformsCommand(options?: PlatformsCommandOptions): void;
2
7
  //# sourceMappingURL=platforms.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"platforms.d.ts","sourceRoot":"","sources":["../../src/commands/platforms.ts"],"names":[],"mappings":"AAEA,wBAAgB,mBAAmB,IAAI,IAAI,CAE1C"}
1
+ {"version":3,"file":"platforms.d.ts","sourceRoot":"","sources":["../../src/commands/platforms.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,uBAAuB,GAAG;IACpC,MAAM,CAAC,EAAE,IAAI,CAAC,OAAO,OAAO,EAAE,KAAK,CAAC,CAAC;CACtC,CAAC;AAEF,wBAAgB,+BAA+B,IAAI,MAAM,CAExD;AAED,wBAAgB,4BAA4B,IAAI,MAAM,CAErD;AAED,wBAAgB,mBAAmB,CAAC,OAAO,GAAE,uBAA4B,GAAG,IAAI,CAG/E"}
@@ -4,6 +4,7 @@ export type { SetupCommandOptions };
4
4
  export type SetupCommandDependencies = Partial<Omit<SetupFlowDependencies, "prompts" | "scanLarkPersonalAgent">> & {
5
5
  prompts?: SetupFlowDependencies["prompts"];
6
6
  scanLarkPersonalAgent?: SetupFlowDependencies["scanLarkPersonalAgent"];
7
+ validateLarkCredentials?: SetupFlowDependencies["validateLarkCredentials"];
7
8
  startOpenTag?(options: StartCommandOptions): Promise<void>;
8
9
  };
9
10
  export declare function runSetupCommand(options: SetupCommandOptions, dependencies?: SetupCommandDependencies): Promise<void>;
@@ -1 +1 @@
1
- {"version":3,"file":"setup.d.ts","sourceRoot":"","sources":["../../src/commands/setup.ts"],"names":[],"mappings":"AAOA,OAAO,EAAqB,KAAK,mBAAmB,EAAE,KAAK,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;AAI3G,OAAO,EAAmB,KAAK,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAExE,YAAY,EAAE,mBAAmB,EAAE,CAAC;AAEpC,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,IAAI,CAAC,qBAAqB,EAAE,SAAS,GAAG,uBAAuB,CAAC,CAAC,GAAG;IACjH,OAAO,CAAC,EAAE,qBAAqB,CAAC,SAAS,CAAC,CAAC;IAC3C,qBAAqB,CAAC,EAAE,qBAAqB,CAAC,uBAAuB,CAAC,CAAC;IACvE,YAAY,CAAC,CAAC,OAAO,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CAC5D,CAAC;AAcF,wBAAsB,eAAe,CAAC,OAAO,EAAE,mBAAmB,EAAE,YAAY,GAAE,wBAA6B,GAAG,OAAO,CAAC,IAAI,CAAC,CAoC9H"}
1
+ {"version":3,"file":"setup.d.ts","sourceRoot":"","sources":["../../src/commands/setup.ts"],"names":[],"mappings":"AAOA,OAAO,EAAqB,KAAK,mBAAmB,EAAE,KAAK,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;AAI3G,OAAO,EAAmB,KAAK,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAExE,YAAY,EAAE,mBAAmB,EAAE,CAAC;AAEpC,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,IAAI,CAAC,qBAAqB,EAAE,SAAS,GAAG,uBAAuB,CAAC,CAAC,GAAG;IACjH,OAAO,CAAC,EAAE,qBAAqB,CAAC,SAAS,CAAC,CAAC;IAC3C,qBAAqB,CAAC,EAAE,qBAAqB,CAAC,uBAAuB,CAAC,CAAC;IACvE,uBAAuB,CAAC,EAAE,qBAAqB,CAAC,yBAAyB,CAAC,CAAC;IAC3E,YAAY,CAAC,CAAC,OAAO,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CAC5D,CAAC;AAcF,wBAAsB,eAAe,CAAC,OAAO,EAAE,mBAAmB,EAAE,YAAY,GAAE,wBAA6B,GAAG,OAAO,CAAC,IAAI,CAAC,CAqC9H"}