@ganakailabs/cloudeval-cli 0.18.4 → 0.18.5

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.md CHANGED
@@ -1,23 +1,65 @@
1
1
  # CloudEval CLI
2
2
 
3
- Terminal, automation, and MCP tooling for CloudEval.
3
+ CloudEval CLI brings CloudEval into your terminal, scripts, and agent tools. It
4
+ supports cloud chat, Agent mode, Agent Profiles, project and report inspection,
5
+ template validation, recipes, local hooks, and MCP server workflows.
6
+
7
+ [CloudEval](https://cloudeval.ai) | [Docs](https://docs.cloudeval.ai/reference/cli-overview) | [GitHub](https://github.com/ganakailabs/cloudeval-cli) | [Issues](https://github.com/ganakailabs/cloudeval-cli/issues) | [Releases](https://github.com/ganakailabs/cloudeval-cli/releases)
8
+
9
+ ## Install
4
10
 
5
11
  ```bash
6
12
  npm install -g @ganakailabs/cloudeval-cli
7
13
  cloudeval --help
8
14
  ```
9
15
 
10
- The package installs three command aliases:
16
+ The npm package requires Node.js 20 or newer and installs these command aliases:
11
17
 
12
18
  - `cloudeval`
13
- - `eva`
14
19
  - `cloud`
20
+ - `eva`
21
+
22
+ For standalone macOS, Linux, and Windows binaries, use the GitHub releases or
23
+ the shell installer:
24
+
25
+ ```bash
26
+ curl -fsSL https://cli.cloudeval.ai/install.sh | bash
27
+ ```
28
+
29
+ ## Common Commands
30
+
31
+ ```bash
32
+ cloudeval # Terminal UI
33
+ cloudeval login # Browser device login
34
+ cloudeval status # Account, API, and local CLI status
35
+ cloudeval ask "Summarize my cloud risk" --format json
36
+ cloudeval agent "Find cost and architecture risks" --format json
37
+ cloudeval agents list
38
+ cloudeval agents run cost --project <project-id> --format json
39
+ cloudeval projects list
40
+ cloudeval reports list
41
+ cloudeval mcp serve --toolset readonly
42
+ cloudeval capabilities --format json
43
+ ```
44
+
45
+ ## What It Covers
46
+
47
+ - Terminal UI for chat, Agent mode, projects, reports, billing, and settings.
48
+ - Scriptable commands with `json`, `ndjson`, `markdown`, and text output.
49
+ - Agent Profiles: `architecture`, `cost`, `triage`, and `remediation`.
50
+ - MCP tools for Codex, Cursor, Claude, VS Code, and other stdio JSON-RPC hosts.
51
+ - Project graph, report, recipe, rules, and validation workflows.
52
+ - Local opt-in hooks for CLI and Agent Profile events.
15
53
 
16
- CloudEval CLI requires Node.js 20 or newer. For standalone native binaries and
17
- the shell installer, see the GitHub releases:
54
+ ## Authentication
18
55
 
19
- <https://github.com/ganakailabs/cloudeval-cli/releases>
56
+ Use `cloudeval login` for local development. For CI or hosted agents, create a
57
+ scoped CloudEval access key in the app or with `cloudeval credentials create`,
58
+ then provide it as `CLOUDEVAL_ACCESS_KEY`.
20
59
 
21
- Documentation:
60
+ ## Documentation
22
61
 
23
- <https://docs.cloudeval.ai/reference/cli-overview>
62
+ - CLI overview: <https://docs.cloudeval.ai/reference/cli-overview>
63
+ - Command reference: <https://docs.cloudeval.ai/reference/cli-command-reference>
64
+ - MCP setup: <https://docs.cloudeval.ai/reference/mcp-client-setup>
65
+ - Release smoke tests: <https://github.com/ganakailabs/cloudeval-cli/blob/main/docs/release-smoke-tests.md>
@@ -31,10 +31,10 @@ import {
31
31
  } from "./chunk-4QIKW5TJ.js";
32
32
  import {
33
33
  Banner
34
- } from "./chunk-GY4W535V.js";
34
+ } from "./chunk-Z5AYM56N.js";
35
35
  import {
36
36
  CLI_VERSION
37
- } from "./chunk-RQ2GBK43.js";
37
+ } from "./chunk-NF3ETGO7.js";
38
38
  import {
39
39
  raisedButtonStyle,
40
40
  terminalTheme
@@ -2,8 +2,8 @@ import {
2
2
  Banner,
3
3
  bannerSegmentColor,
4
4
  splitBannerLineSegments
5
- } from "./chunk-GY4W535V.js";
6
- import "./chunk-RQ2GBK43.js";
5
+ } from "./chunk-Z5AYM56N.js";
6
+ import "./chunk-NF3ETGO7.js";
7
7
  import "./chunk-UOCT7M4J.js";
8
8
  export {
9
9
  Banner,
@@ -1,5 +1,5 @@
1
1
  // src/version.ts
2
- var CLI_VERSION = "0.18.4";
2
+ var CLI_VERSION = "0.18.5";
3
3
 
4
4
  export {
5
5
  CLI_VERSION
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  CLI_VERSION
3
- } from "./chunk-RQ2GBK43.js";
3
+ } from "./chunk-NF3ETGO7.js";
4
4
  import {
5
5
  shouldUseColor,
6
6
  terminalTheme
package/dist/cli.js CHANGED
@@ -16,7 +16,7 @@ import {
16
16
  } from "./chunk-4QIKW5TJ.js";
17
17
  import {
18
18
  CLI_VERSION
19
- } from "./chunk-RQ2GBK43.js";
19
+ } from "./chunk-NF3ETGO7.js";
20
20
 
21
21
  // src/runtime/prepareInk.ts
22
22
  import fs from "fs";
@@ -13222,7 +13222,7 @@ program.command("tui").description("Open the CloudEval Terminal UI").option(
13222
13222
  const { assertSecureBaseUrl } = await import("./dist-I4IPYCRC.js");
13223
13223
  const [{ render }, { App }] = await Promise.all([
13224
13224
  import("ink"),
13225
- import("./App-64BACPSQ.js")
13225
+ import("./App-ZAC2LGZ4.js")
13226
13226
  ]);
13227
13227
  const baseUrl = await resolveBaseUrl(options, command);
13228
13228
  assertSecureBaseUrl(baseUrl);
@@ -13272,7 +13272,7 @@ program.command("chat").description("Start an interactive chat session").option(
13272
13272
  const { assertSecureBaseUrl } = await import("./dist-I4IPYCRC.js");
13273
13273
  const [{ render }, { App }] = await Promise.all([
13274
13274
  import("ink"),
13275
- import("./App-64BACPSQ.js")
13275
+ import("./App-ZAC2LGZ4.js")
13276
13276
  ]);
13277
13277
  const baseUrl = await resolveBaseUrl(options, command);
13278
13278
  assertSecureBaseUrl(baseUrl);
@@ -14006,7 +14006,7 @@ Error: ${errorMsg}
14006
14006
  program.command("banner").description("Preview the startup banner and terminal capabilities").action(async () => {
14007
14007
  const { render } = await import("ink");
14008
14008
  const BannerPreview = React.lazy(async () => ({
14009
- default: (await import("./Banner-BIUMDX72.js")).Banner
14009
+ default: (await import("./Banner-RPE5HIBA.js")).Banner
14010
14010
  }));
14011
14011
  render(
14012
14012
  /* @__PURE__ */ jsx(React.Suspense, { fallback: null, children: /* @__PURE__ */ jsx(BannerPreview, { disable: false }) })
package/package.json CHANGED
@@ -1,9 +1,25 @@
1
1
  {
2
2
  "name": "@ganakailabs/cloudeval-cli",
3
- "version": "0.18.4",
3
+ "version": "0.18.5",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "type": "module",
6
- "description": "CloudEval terminal, automation, and MCP CLI.",
6
+ "description": "CloudEval CLI for cloud architecture, cost, report, automation, and MCP workflows.",
7
+ "author": "Ganak AI Labs (https://cloudeval.ai)",
8
+ "keywords": [
9
+ "cloudeval",
10
+ "cloud",
11
+ "azure",
12
+ "cli",
13
+ "mcp",
14
+ "agents",
15
+ "automation",
16
+ "iac",
17
+ "arm-template",
18
+ "well-architected",
19
+ "cost",
20
+ "architecture",
21
+ "devops"
22
+ ],
7
23
  "homepage": "https://docs.cloudeval.ai/reference/cli-overview",
8
24
  "repository": {
9
25
  "type": "git",
@@ -21,6 +37,9 @@
21
37
  "cloud": "dist/cli.js",
22
38
  "eva": "dist/cli.js"
23
39
  },
40
+ "engines": {
41
+ "node": ">=20"
42
+ },
24
43
  "files": [
25
44
  "dist",
26
45
  "README.md",
package/sbom.spdx.json CHANGED
@@ -14,7 +14,7 @@
14
14
  {
15
15
  "SPDXID": "SPDXRef-Package-CloudEval-CLI",
16
16
  "name": "CloudEval CLI",
17
- "versionInfo": "0.18.4",
17
+ "versionInfo": "0.18.5",
18
18
  "downloadLocation": "https://github.com/ganakailabs/cloudeval-cli",
19
19
  "filesAnalyzed": false,
20
20
  "licenseConcluded": "LicenseRef-CloudEval-CLI",