@agentuity/cli 0.0.6

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 (158) hide show
  1. package/AGENTS.md +139 -0
  2. package/README.md +239 -0
  3. package/bin/cli.ts +71 -0
  4. package/dist/api.d.ts +25 -0
  5. package/dist/api.d.ts.map +1 -0
  6. package/dist/auth.d.ts +7 -0
  7. package/dist/auth.d.ts.map +1 -0
  8. package/dist/banner.d.ts +2 -0
  9. package/dist/banner.d.ts.map +1 -0
  10. package/dist/cli.d.ts +5 -0
  11. package/dist/cli.d.ts.map +1 -0
  12. package/dist/cmd/auth/api.d.ts +9 -0
  13. package/dist/cmd/auth/api.d.ts.map +1 -0
  14. package/dist/cmd/auth/index.d.ts +2 -0
  15. package/dist/cmd/auth/index.d.ts.map +1 -0
  16. package/dist/cmd/auth/login.d.ts +3 -0
  17. package/dist/cmd/auth/login.d.ts.map +1 -0
  18. package/dist/cmd/auth/logout.d.ts +3 -0
  19. package/dist/cmd/auth/logout.d.ts.map +1 -0
  20. package/dist/cmd/bundle/ast.d.ts +2 -0
  21. package/dist/cmd/bundle/ast.d.ts.map +1 -0
  22. package/dist/cmd/bundle/bundler.d.ts +6 -0
  23. package/dist/cmd/bundle/bundler.d.ts.map +1 -0
  24. package/dist/cmd/bundle/file.d.ts +2 -0
  25. package/dist/cmd/bundle/file.d.ts.map +1 -0
  26. package/dist/cmd/bundle/index.d.ts +2 -0
  27. package/dist/cmd/bundle/index.d.ts.map +1 -0
  28. package/dist/cmd/bundle/plugin.d.ts +4 -0
  29. package/dist/cmd/bundle/plugin.d.ts.map +1 -0
  30. package/dist/cmd/dev/index.d.ts +2 -0
  31. package/dist/cmd/dev/index.d.ts.map +1 -0
  32. package/dist/cmd/example/create-user.d.ts +2 -0
  33. package/dist/cmd/example/create-user.d.ts.map +1 -0
  34. package/dist/cmd/example/create.d.ts +2 -0
  35. package/dist/cmd/example/create.d.ts.map +1 -0
  36. package/dist/cmd/example/deploy.d.ts +2 -0
  37. package/dist/cmd/example/deploy.d.ts.map +1 -0
  38. package/dist/cmd/example/index.d.ts +2 -0
  39. package/dist/cmd/example/index.d.ts.map +1 -0
  40. package/dist/cmd/example/list.d.ts +2 -0
  41. package/dist/cmd/example/list.d.ts.map +1 -0
  42. package/dist/cmd/example/run-command.d.ts +2 -0
  43. package/dist/cmd/example/run-command.d.ts.map +1 -0
  44. package/dist/cmd/example/sound.d.ts +3 -0
  45. package/dist/cmd/example/sound.d.ts.map +1 -0
  46. package/dist/cmd/example/spinner.d.ts +2 -0
  47. package/dist/cmd/example/spinner.d.ts.map +1 -0
  48. package/dist/cmd/example/steps.d.ts +2 -0
  49. package/dist/cmd/example/steps.d.ts.map +1 -0
  50. package/dist/cmd/example/version.d.ts +2 -0
  51. package/dist/cmd/example/version.d.ts.map +1 -0
  52. package/dist/cmd/index.d.ts +3 -0
  53. package/dist/cmd/index.d.ts.map +1 -0
  54. package/dist/cmd/profile/create.d.ts +2 -0
  55. package/dist/cmd/profile/create.d.ts.map +1 -0
  56. package/dist/cmd/profile/delete.d.ts +2 -0
  57. package/dist/cmd/profile/delete.d.ts.map +1 -0
  58. package/dist/cmd/profile/index.d.ts +2 -0
  59. package/dist/cmd/profile/index.d.ts.map +1 -0
  60. package/dist/cmd/profile/list.d.ts +3 -0
  61. package/dist/cmd/profile/list.d.ts.map +1 -0
  62. package/dist/cmd/profile/show.d.ts +2 -0
  63. package/dist/cmd/profile/show.d.ts.map +1 -0
  64. package/dist/cmd/profile/use.d.ts +2 -0
  65. package/dist/cmd/profile/use.d.ts.map +1 -0
  66. package/dist/cmd/project/create.d.ts +2 -0
  67. package/dist/cmd/project/create.d.ts.map +1 -0
  68. package/dist/cmd/project/delete.d.ts +2 -0
  69. package/dist/cmd/project/delete.d.ts.map +1 -0
  70. package/dist/cmd/project/index.d.ts +2 -0
  71. package/dist/cmd/project/index.d.ts.map +1 -0
  72. package/dist/cmd/project/list.d.ts +2 -0
  73. package/dist/cmd/project/list.d.ts.map +1 -0
  74. package/dist/cmd/project/show.d.ts +2 -0
  75. package/dist/cmd/project/show.d.ts.map +1 -0
  76. package/dist/cmd/version/index.d.ts +2 -0
  77. package/dist/cmd/version/index.d.ts.map +1 -0
  78. package/dist/command-prefix.d.ts +11 -0
  79. package/dist/command-prefix.d.ts.map +1 -0
  80. package/dist/config.d.ts +16 -0
  81. package/dist/config.d.ts.map +1 -0
  82. package/dist/index.d.ts +18 -0
  83. package/dist/index.d.ts.map +1 -0
  84. package/dist/legacy-check.d.ts +6 -0
  85. package/dist/legacy-check.d.ts.map +1 -0
  86. package/dist/logger.d.ts +24 -0
  87. package/dist/logger.d.ts.map +1 -0
  88. package/dist/runtime.d.ts +3 -0
  89. package/dist/runtime.d.ts.map +1 -0
  90. package/dist/schema-parser.d.ts +24 -0
  91. package/dist/schema-parser.d.ts.map +1 -0
  92. package/dist/sound.d.ts +2 -0
  93. package/dist/sound.d.ts.map +1 -0
  94. package/dist/steps.d.ts +59 -0
  95. package/dist/steps.d.ts.map +1 -0
  96. package/dist/terminal.d.ts +3 -0
  97. package/dist/terminal.d.ts.map +1 -0
  98. package/dist/tui.d.ts +156 -0
  99. package/dist/tui.d.ts.map +1 -0
  100. package/dist/types.d.ts +164 -0
  101. package/dist/types.d.ts.map +1 -0
  102. package/dist/version.d.ts +10 -0
  103. package/dist/version.d.ts.map +1 -0
  104. package/package.json +46 -0
  105. package/src/api-errors.md +115 -0
  106. package/src/api.ts +186 -0
  107. package/src/auth.ts +91 -0
  108. package/src/banner.ts +23 -0
  109. package/src/cli.ts +198 -0
  110. package/src/cmd/auth/README.md +95 -0
  111. package/src/cmd/auth/api.ts +71 -0
  112. package/src/cmd/auth/index.ts +9 -0
  113. package/src/cmd/auth/login.ts +76 -0
  114. package/src/cmd/auth/logout.ts +14 -0
  115. package/src/cmd/bundle/ast.ts +228 -0
  116. package/src/cmd/bundle/bundler.ts +88 -0
  117. package/src/cmd/bundle/file.ts +16 -0
  118. package/src/cmd/bundle/index.ts +38 -0
  119. package/src/cmd/bundle/plugin.ts +259 -0
  120. package/src/cmd/dev/index.ts +83 -0
  121. package/src/cmd/example/create-user.ts +38 -0
  122. package/src/cmd/example/create.ts +31 -0
  123. package/src/cmd/example/deploy.ts +36 -0
  124. package/src/cmd/example/index.ts +27 -0
  125. package/src/cmd/example/list.ts +32 -0
  126. package/src/cmd/example/run-command.ts +45 -0
  127. package/src/cmd/example/sound.ts +14 -0
  128. package/src/cmd/example/spinner.ts +44 -0
  129. package/src/cmd/example/steps.ts +66 -0
  130. package/src/cmd/example/version.ts +13 -0
  131. package/src/cmd/index.ts +46 -0
  132. package/src/cmd/profile/README.md +80 -0
  133. package/src/cmd/profile/create.ts +57 -0
  134. package/src/cmd/profile/delete.ts +52 -0
  135. package/src/cmd/profile/index.ts +12 -0
  136. package/src/cmd/profile/list.ts +27 -0
  137. package/src/cmd/profile/show.ts +54 -0
  138. package/src/cmd/profile/use.ts +30 -0
  139. package/src/cmd/project/create.ts +247 -0
  140. package/src/cmd/project/delete.ts +13 -0
  141. package/src/cmd/project/index.ts +11 -0
  142. package/src/cmd/project/list.ts +13 -0
  143. package/src/cmd/project/show.ts +12 -0
  144. package/src/cmd/version/index.ts +16 -0
  145. package/src/command-prefix.ts +43 -0
  146. package/src/config.ts +304 -0
  147. package/src/index.ts +40 -0
  148. package/src/legacy-check.ts +127 -0
  149. package/src/logger.ts +235 -0
  150. package/src/runtime.ts +22 -0
  151. package/src/schema-parser.ts +213 -0
  152. package/src/sound.ts +25 -0
  153. package/src/steps.ts +245 -0
  154. package/src/terminal.ts +151 -0
  155. package/src/tui.md +254 -0
  156. package/src/tui.ts +838 -0
  157. package/src/types.ts +243 -0
  158. package/src/version.ts +29 -0
@@ -0,0 +1,2 @@
1
+ export declare const spinnerSubcommand: import("@/types").SubcommandDefinition;
2
+ //# sourceMappingURL=spinner.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"spinner.d.ts","sourceRoot":"","sources":["../../../src/cmd/example/spinner.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,iBAAiB,wCAwC5B,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const stepsSubcommand: import("@/types").SubcommandDefinition;
2
+ //# sourceMappingURL=steps.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"steps.d.ts","sourceRoot":"","sources":["../../../src/cmd/example/steps.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,eAAe,wCA8D1B,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const versionSubcommand: import("@/types").SubcommandDefinition;
2
+ //# sourceMappingURL=version.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/cmd/example/version.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iBAAiB,wCAU5B,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { CommandDefinition } from '../types';
2
+ export declare function discoverCommands(): Promise<CommandDefinition[]>;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/cmd/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAElD,wBAAsB,gBAAgB,IAAI,OAAO,CAAC,iBAAiB,EAAE,CAAC,CAyCrE"}
@@ -0,0 +1,2 @@
1
+ export declare const createCommand: import("@/types").SubcommandDefinition;
2
+ //# sourceMappingURL=create.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../src/cmd/profile/create.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,aAAa,wCA0CxB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const deleteCommand: import("@/types").SubcommandDefinition;
2
+ //# sourceMappingURL=delete.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete.d.ts","sourceRoot":"","sources":["../../../src/cmd/profile/delete.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,aAAa,wCA6CxB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const command: import("@/types").CommandDefinition;
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cmd/profile/index.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,OAAO,qCAIlB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { SubcommandDefinition } from '@/types';
2
+ export declare const listCommand: SubcommandDefinition;
3
+ //# sourceMappingURL=list.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/cmd/profile/list.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAC;AAKpD,eAAO,MAAM,WAAW,EAAE,oBAqBzB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const showCommand: import("@/types").SubcommandDefinition;
2
+ //# sourceMappingURL=show.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"show.d.ts","sourceRoot":"","sources":["../../../src/cmd/profile/show.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,WAAW,wCA+CtB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const useCommand: import("@/types").SubcommandDefinition;
2
+ //# sourceMappingURL=use.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"use.d.ts","sourceRoot":"","sources":["../../../src/cmd/profile/use.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,UAAU,wCAwBrB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const createProjectSubcommand: import("@/types").SubcommandDefinition;
2
+ //# sourceMappingURL=create.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../src/cmd/project/create.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,uBAAuB,wCAgPlC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const deleteSubcommand: import("@/types").SubcommandDefinition;
2
+ //# sourceMappingURL=delete.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete.d.ts","sourceRoot":"","sources":["../../../src/cmd/project/delete.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,gBAAgB,wCAU3B,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const command: import("@/types").CommandDefinition;
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cmd/project/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,OAAO,qCAIlB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const listSubcommand: import("@/types").SubcommandDefinition;
2
+ //# sourceMappingURL=list.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/cmd/project/list.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc,wCAUzB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const showSubcommand: import("@/types").SubcommandDefinition;
2
+ //# sourceMappingURL=show.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"show.d.ts","sourceRoot":"","sources":["../../../src/cmd/project/show.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc,wCASzB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const command: import("@/types").CommandDefinition;
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cmd/version/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,OAAO,qCAWlB,CAAC"}
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Detects how the CLI is being invoked and returns the appropriate command prefix.
3
+ * Returns "agentuity" if installed globally, or "bunx @agentuity/cli" if running via bunx.
4
+ */
5
+ export declare function getCommandPrefix(): string;
6
+ /**
7
+ * Gets a formatted command string with the appropriate prefix.
8
+ * Example: getCommand('auth login') => 'agentuity auth login' or 'bunx @agentuity/cli auth login'
9
+ */
10
+ export declare function getCommand(command: string): string;
11
+ //# sourceMappingURL=command-prefix.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"command-prefix.d.ts","sourceRoot":"","sources":["../src/command-prefix.ts"],"names":[],"mappings":"AAKA;;;GAGG;AACH,wBAAgB,gBAAgB,IAAI,MAAM,CAyBzC;AAED;;;GAGG;AACH,wBAAgB,UAAU,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAElD"}
@@ -0,0 +1,16 @@
1
+ import type { Config, Profile, AuthData } from './types';
2
+ export declare function getDefaultConfigDir(): string;
3
+ export declare function getDefaultConfigPath(): string;
4
+ export declare function getProfilePath(): string;
5
+ export declare function ensureConfigDir(): Promise<void>;
6
+ export declare function saveProfile(path: string): Promise<void>;
7
+ export declare function getProfile(): Promise<string>;
8
+ export declare function fetchProfiles(): Promise<Profile[]>;
9
+ export declare function loadConfig(customPath?: string): Promise<Config | null>;
10
+ export declare function saveConfig(config: Config, customPath?: string): Promise<void>;
11
+ export declare function saveAuth(auth: AuthData): Promise<void>;
12
+ export declare function clearAuth(): Promise<void>;
13
+ export declare function getAuth(): Promise<AuthData | null>;
14
+ declare function generateYAMLTemplate(name: string): string;
15
+ export { generateYAMLTemplate };
16
+ //# sourceMappingURL=config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAKzD,wBAAgB,mBAAmB,IAAI,MAAM,CAE5C;AAED,wBAAgB,oBAAoB,IAAI,MAAM,CAE7C;AAED,wBAAgB,cAAc,IAAI,MAAM,CAEvC;AAED,wBAAsB,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC,CAOrD;AAED,wBAAsB,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAG7D;AAED,wBAAsB,UAAU,IAAI,OAAO,CAAC,MAAM,CAAC,CAmBlD;AAED,wBAAsB,aAAa,IAAI,OAAO,CAAC,OAAO,EAAE,CAAC,CAkCxD;AAED,wBAAsB,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CA+B5E;AA4CD,wBAAsB,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAQnF;AAED,wBAAsB,QAAQ,CAAC,IAAI,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,CAU5D;AAED,wBAAsB,SAAS,IAAI,OAAO,CAAC,IAAI,CAAC,CAU/C;AAED,wBAAsB,OAAO,IAAI,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC,CAcxD;AA4BD,iBAAS,oBAAoB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CA0DlD;AAED,OAAO,EAAE,oBAAoB,EAAE,CAAC"}
@@ -0,0 +1,18 @@
1
+ export { createCLI, registerCommands } from './cli';
2
+ export { validateRuntime, isBun } from './runtime';
3
+ export { getVersion, getRevision, getPackageName, getPackage } from './version';
4
+ export { loadConfig, saveConfig, getDefaultConfigPath, getDefaultConfigDir, getProfilePath, ensureConfigDir, saveProfile, getProfile, fetchProfiles, saveAuth, clearAuth, getAuth, } from './config';
5
+ export { APIClient, getAPIBaseURL, getAppBaseURL, UpgradeRequiredError } from './api';
6
+ export { Logger, logger } from './logger';
7
+ export { showBanner } from './banner';
8
+ export { discoverCommands } from './cmd';
9
+ export { detectColorScheme } from './terminal';
10
+ export { getCommandPrefix, getCommand } from './command-prefix';
11
+ export * as tui from './tui';
12
+ export { runSteps, setStepsColorScheme, stepSuccess, stepSkipped, stepError } from './steps';
13
+ export { playSound } from './sound';
14
+ export type { Config, LogLevel, GlobalOptions, CommandContext, SubcommandDefinition, CommandDefinition, Profile, AuthData, CommandSchemas, } from './types';
15
+ export { createSubcommand, createCommand } from './types';
16
+ export type { ColorScheme } from './terminal';
17
+ export type { Step, SimpleStep, ProgressStep, StepOutcome, ProgressCallback } from './steps';
18
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,KAAK,EAAE,MAAM,WAAW,CAAC;AACnD,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAChF,OAAO,EACN,UAAU,EACV,UAAU,EACV,oBAAoB,EACpB,mBAAmB,EACnB,cAAc,EACd,eAAe,EACf,WAAW,EACX,UAAU,EACV,aAAa,EACb,QAAQ,EACR,SAAS,EACT,OAAO,GACP,MAAM,UAAU,CAAC;AAClB,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,aAAa,EAAE,oBAAoB,EAAE,MAAM,OAAO,CAAC;AACtF,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAC1C,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AACzC,OAAO,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAChE,OAAO,KAAK,GAAG,MAAM,OAAO,CAAC;AAC7B,OAAO,EAAE,QAAQ,EAAE,mBAAmB,EAAE,WAAW,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAC7F,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,YAAY,EACX,MAAM,EACN,QAAQ,EACR,aAAa,EACb,cAAc,EACd,oBAAoB,EACpB,iBAAiB,EACjB,OAAO,EACP,QAAQ,EACR,cAAc,GACd,MAAM,SAAS,CAAC;AACjB,OAAO,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAC1D,YAAY,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAC9C,YAAY,EAAE,IAAI,EAAE,UAAU,EAAE,YAAY,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC"}
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Check if the legacy (Go-based) Agentuity CLI is installed
3
+ * and block execution with migration instructions
4
+ */
5
+ export declare function checkLegacyCLI(): Promise<void>;
6
+ //# sourceMappingURL=legacy-check.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"legacy-check.d.ts","sourceRoot":"","sources":["../src/legacy-check.ts"],"names":[],"mappings":"AASA;;;GAGG;AACH,wBAAsB,cAAc,IAAI,OAAO,CAAC,IAAI,CAAC,CAiHpD"}
@@ -0,0 +1,24 @@
1
+ import type { LogLevel } from './types';
2
+ import type { ColorScheme } from './terminal';
3
+ export declare class Logger {
4
+ private level;
5
+ private showTimestamp;
6
+ private colorScheme;
7
+ private colors;
8
+ private showPrefix;
9
+ constructor(level?: LogLevel, showTimestamp?: boolean, colorScheme?: ColorScheme);
10
+ setLevel(level: LogLevel): void;
11
+ setTimestamp(enabled: boolean): void;
12
+ setColorScheme(scheme: ColorScheme): void;
13
+ setShowPrefix(show: boolean): void;
14
+ private shouldLog;
15
+ private log;
16
+ debug(message: string, ...args: unknown[]): void;
17
+ trace(message: string, ...args: unknown[]): void;
18
+ info(message: string, ...args: unknown[]): void;
19
+ warn(message: string, ...args: unknown[]): void;
20
+ error(message: string, ...args: unknown[]): void;
21
+ fatal(message: string, ...args: unknown[]): never;
22
+ }
23
+ export declare const logger: Logger;
24
+ //# sourceMappingURL=logger.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../src/logger.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACxC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AA8G9C,qBAAa,MAAM;IAClB,OAAO,CAAC,KAAK,CAAW;IACxB,OAAO,CAAC,aAAa,CAAU;IAC/B,OAAO,CAAC,WAAW,CAAc;IACjC,OAAO,CAAC,MAAM,CAA8B;IAC5C,OAAO,CAAC,UAAU,CAAQ;gBAGzB,KAAK,GAAE,QAAiB,EACxB,aAAa,GAAE,OAAe,EAC9B,WAAW,GAAE,WAAoB;IAQlC,QAAQ,CAAC,KAAK,EAAE,QAAQ,GAAG,IAAI;IAI/B,YAAY,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI;IAIpC,cAAc,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI;IAKzC,aAAa,CAAC,IAAI,EAAE,OAAO,GAAG,IAAI;IAIlC,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,GAAG;IA0DX,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI;IAIhD,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI;IAIhD,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI;IAI/C,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI;IAI/C,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI;IAIhD,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,KAAK;CAIjD;AAED,eAAO,MAAM,MAAM,QAAqB,CAAC"}
@@ -0,0 +1,3 @@
1
+ export declare function isBun(): boolean;
2
+ export declare function validateRuntime(): void;
3
+ //# sourceMappingURL=runtime.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../src/runtime.ts"],"names":[],"mappings":"AAIA,wBAAgB,KAAK,IAAI,OAAO,CAE/B;AAED,wBAAgB,eAAe,IAAI,IAAI,CAatC"}
@@ -0,0 +1,24 @@
1
+ import type { ZodType } from 'zod';
2
+ import type { CommandSchemas } from './types';
3
+ export interface ParsedArgs {
4
+ names: string[];
5
+ metadata: Array<{
6
+ name: string;
7
+ optional: boolean;
8
+ variadic: boolean;
9
+ }>;
10
+ }
11
+ export interface ParsedOption {
12
+ name: string;
13
+ description?: string;
14
+ type: 'string' | 'number' | 'boolean';
15
+ hasDefault?: boolean;
16
+ defaultValue?: unknown;
17
+ }
18
+ export declare function parseArgsSchema(schema: ZodType): ParsedArgs;
19
+ export declare function parseOptionsSchema(schema: ZodType): ParsedOption[];
20
+ export declare function buildValidationInput(schemas: CommandSchemas, rawArgs: unknown[], rawOptions: Record<string, unknown>): {
21
+ args: Record<string, unknown>;
22
+ options: Record<string, unknown>;
23
+ };
24
+ //# sourceMappingURL=schema-parser.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schema-parser.d.ts","sourceRoot":"","sources":["../src/schema-parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,KAAK,CAAC;AACnC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAE9C,MAAM,WAAW,UAAU;IAC1B,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,QAAQ,EAAE,KAAK,CAAC;QACf,IAAI,EAAE,MAAM,CAAC;QACb,QAAQ,EAAE,OAAO,CAAC;QAClB,QAAQ,EAAE,OAAO,CAAC;KAClB,CAAC,CAAC;CACH;AAED,MAAM,WAAW,YAAY;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,CAAC;IACtC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,YAAY,CAAC,EAAE,OAAO,CAAC;CACvB;AAoDD,wBAAgB,eAAe,CAAC,MAAM,EAAE,OAAO,GAAG,UAAU,CAyB3D;AAmDD,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,OAAO,GAAG,YAAY,EAAE,CAwClE;AAED,wBAAgB,oBAAoB,CACnC,OAAO,EAAE,cAAc,EACvB,OAAO,EAAE,OAAO,EAAE,EAClB,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GACjC;IAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAAC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;CAAE,CAoBrE"}
@@ -0,0 +1,2 @@
1
+ export declare function playSound(): Promise<void>;
2
+ //# sourceMappingURL=sound.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sound.d.ts","sourceRoot":"","sources":["../src/sound.ts"],"names":[],"mappings":"AAEA,wBAAsB,SAAS,IAAI,OAAO,CAAC,IAAI,CAAC,CAsB/C"}
@@ -0,0 +1,59 @@
1
+ /**
2
+ * Step progress UI component for showing animated steps with callbacks
3
+ *
4
+ * Displays a checklist where each step animates in place with a spinner,
5
+ * then shows success, skipped, or error icon based on callback result.
6
+ */
7
+ import type { ColorScheme } from './terminal';
8
+ export declare function setStepsColorScheme(scheme: ColorScheme): void;
9
+ /**
10
+ * Step outcome
11
+ */
12
+ export type StepOutcome = {
13
+ status: 'success';
14
+ } | {
15
+ status: 'skipped';
16
+ reason?: string;
17
+ } | {
18
+ status: 'error';
19
+ message: string;
20
+ };
21
+ /**
22
+ * Helper functions for creating step outcomes
23
+ */
24
+ export declare const stepSuccess: () => StepOutcome;
25
+ export declare const stepSkipped: (reason?: string) => StepOutcome;
26
+ export declare const stepError: (message: string) => StepOutcome;
27
+ /**
28
+ * Progress callback function
29
+ */
30
+ export type ProgressCallback = (progress: number) => void;
31
+ /**
32
+ * Step definition (without progress tracking)
33
+ */
34
+ export interface SimpleStep {
35
+ type?: 'simple';
36
+ label: string;
37
+ run: () => Promise<StepOutcome>;
38
+ }
39
+ /**
40
+ * Step definition (with progress tracking)
41
+ */
42
+ export interface ProgressStep {
43
+ type: 'progress';
44
+ label: string;
45
+ run: (progress: ProgressCallback) => Promise<StepOutcome>;
46
+ }
47
+ /**
48
+ * Step definition (discriminated union)
49
+ */
50
+ export type Step = SimpleStep | ProgressStep;
51
+ /**
52
+ * Run a series of steps with animated progress
53
+ *
54
+ * Each step runs its callback while showing a spinner animation.
55
+ * Steps can complete with success, skipped, or error status.
56
+ * Exits with code 1 if any step errors.
57
+ */
58
+ export declare function runSteps(steps: Step[]): Promise<void>;
59
+ //# sourceMappingURL=steps.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"steps.d.ts","sourceRoot":"","sources":["../src/steps.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAgC9C,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI,CAE7D;AAUD;;GAEG;AACH,MAAM,MAAM,WAAW,GACpB;IAAE,MAAM,EAAE,SAAS,CAAA;CAAE,GACrB;IAAE,MAAM,EAAE,SAAS,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,GACtC;IAAE,MAAM,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,CAAC;AAExC;;GAEG;AACH,eAAO,MAAM,WAAW,QAAO,WAAsC,CAAC;AACtE,eAAO,MAAM,WAAW,GAAI,SAAS,MAAM,KAAG,WAA8C,CAAC;AAC7F,eAAO,MAAM,SAAS,GAAI,SAAS,MAAM,KAAG,WAA6C,CAAC;AAE1F;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;AAE1D;;GAEG;AACH,MAAM,WAAW,UAAU;IAC1B,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,OAAO,CAAC,WAAW,CAAC,CAAC;CAChC;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC5B,IAAI,EAAE,UAAU,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,CAAC,QAAQ,EAAE,gBAAgB,KAAK,OAAO,CAAC,WAAW,CAAC,CAAC;CAC1D;AAED;;GAEG;AACH,MAAM,MAAM,IAAI,GAAG,UAAU,GAAG,YAAY,CAAC;AAqB7C;;;;;;GAMG;AACH,wBAAsB,QAAQ,CAAC,KAAK,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAgF3D"}
@@ -0,0 +1,3 @@
1
+ export type ColorScheme = 'light' | 'dark';
2
+ export declare function detectColorScheme(): Promise<ColorScheme>;
3
+ //# sourceMappingURL=terminal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"terminal.d.ts","sourceRoot":"","sources":["../src/terminal.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG,OAAO,GAAG,MAAM,CAAC;AAE3C,wBAAsB,iBAAiB,IAAI,OAAO,CAAC,WAAW,CAAC,CA0D9D"}
package/dist/tui.d.ts ADDED
@@ -0,0 +1,156 @@
1
+ /**
2
+ * Terminal UI utilities for formatted, colorized output
3
+ *
4
+ * Provides semantic helpers for console output with automatic icons and colors.
5
+ * Uses Bun's built-in color support and ANSI escape codes.
6
+ */
7
+ import type { ColorScheme } from './terminal';
8
+ export declare function setColorScheme(scheme: ColorScheme): void;
9
+ /**
10
+ * Print a success message with a green checkmark
11
+ */
12
+ export declare function success(message: string): void;
13
+ /**
14
+ * Print an error message with a red X
15
+ */
16
+ export declare function error(message: string): void;
17
+ /**
18
+ * Print a warning message with a yellow warning icon
19
+ */
20
+ export declare function warning(message: string): void;
21
+ /**
22
+ * Print an info message with a cyan info icon
23
+ */
24
+ export declare function info(message: string): void;
25
+ /**
26
+ * Format text in muted/gray color
27
+ */
28
+ export declare function muted(text: string): string;
29
+ /**
30
+ * Format text in bold
31
+ */
32
+ export declare function bold(text: string): string;
33
+ /**
34
+ * Format text as a link (blue and underlined)
35
+ */
36
+ export declare function link(url: string): string;
37
+ /**
38
+ * Print a bulleted list item
39
+ */
40
+ export declare function bullet(message: string): void;
41
+ /**
42
+ * Print an arrow item (for showing next steps)
43
+ */
44
+ export declare function arrow(message: string): void;
45
+ /**
46
+ * Print a blank line
47
+ */
48
+ export declare function newline(): void;
49
+ /**
50
+ * Pad a string to a specific length on the right
51
+ */
52
+ export declare function padRight(str: string, length: number, pad?: string): string;
53
+ /**
54
+ * Pad a string to a specific length on the left
55
+ */
56
+ export declare function padLeft(str: string, length: number, pad?: string): string;
57
+ /**
58
+ * Display a formatted banner with title and body content
59
+ * Creates a bordered box around the content
60
+ *
61
+ * Uses Bun.stringWidth() for accurate width calculation with ANSI codes and unicode
62
+ */
63
+ export declare function banner(title: string, body: string): void;
64
+ /**
65
+ * Wait for any key press before continuing
66
+ * Displays a prompt message and waits for user input
67
+ * Exits with code 1 if CTRL+C is pressed
68
+ */
69
+ export declare function waitForAnyKey(message?: string): Promise<void>;
70
+ /**
71
+ * Prompts user with a yes/no question
72
+ * Returns true for yes, false for no
73
+ * Exits with code 1 if CTRL+C is pressed
74
+ */
75
+ export declare function confirm(message: string, defaultValue?: boolean): Promise<boolean>;
76
+ /**
77
+ * Copy text to clipboard
78
+ * Returns true if successful, false otherwise
79
+ */
80
+ export declare function copyToClipboard(text: string): Promise<boolean>;
81
+ /**
82
+ * Progress callback for spinner
83
+ */
84
+ export type SpinnerProgressCallback = (progress: number) => void;
85
+ /**
86
+ * Spinner options (simple without progress)
87
+ */
88
+ export interface SimpleSpinnerOptions<T> {
89
+ type?: 'simple';
90
+ message: string;
91
+ callback: (() => Promise<T>) | Promise<T>;
92
+ }
93
+ /**
94
+ * Spinner options (with progress tracking)
95
+ */
96
+ export interface ProgressSpinnerOptions<T> {
97
+ type: 'progress';
98
+ message: string;
99
+ callback: (progress: SpinnerProgressCallback) => Promise<T>;
100
+ }
101
+ /**
102
+ * Spinner options (discriminated union)
103
+ */
104
+ export type SpinnerOptions<T> = SimpleSpinnerOptions<T> | ProgressSpinnerOptions<T>;
105
+ /**
106
+ * Run a callback with an animated spinner (simple overload)
107
+ *
108
+ * Shows a spinner animation while the callback executes.
109
+ * On success, shows a checkmark. On error, shows an X and re-throws.
110
+ *
111
+ * @param message - The message to display next to the spinner
112
+ * @param callback - Async function or Promise to execute
113
+ */
114
+ export declare function spinner<T>(message: string, callback: (() => Promise<T>) | Promise<T>): Promise<T>;
115
+ /**
116
+ * Run a callback with an animated spinner (options overload)
117
+ *
118
+ * Shows a spinner animation while the callback executes.
119
+ * On success, shows a checkmark. On error, shows an X and re-throws.
120
+ *
121
+ * @param options - Spinner options with optional progress tracking
122
+ */
123
+ export declare function spinner<T>(options: SpinnerOptions<T>): Promise<T>;
124
+ /**
125
+ * Options for running a command with streaming output
126
+ */
127
+ export interface CommandRunnerOptions {
128
+ /**
129
+ * The command to run (displayed in the UI)
130
+ */
131
+ command: string;
132
+ /**
133
+ * The actual command and arguments to execute
134
+ */
135
+ cmd: string[];
136
+ /**
137
+ * Current working directory
138
+ */
139
+ cwd?: string;
140
+ /**
141
+ * Environment variables
142
+ */
143
+ env?: Record<string, string>;
144
+ }
145
+ /**
146
+ * Run an external command and stream its output with a live UI
147
+ *
148
+ * Displays the command with a colored $ prompt:
149
+ * - Blue while running
150
+ * - Green on successful exit (code 0)
151
+ * - Red on failed exit (code != 0)
152
+ *
153
+ * Shows the last 3 lines of output as it streams.
154
+ */
155
+ export declare function runCommand(options: CommandRunnerOptions): Promise<number>;
156
+ //# sourceMappingURL=tui.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tui.d.ts","sourceRoot":"","sources":["../src/tui.ts"],"names":[],"mappings":"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"}