@ganakailabs/cloudeval-cli 0.19.3 → 0.20.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.
package/README.md CHANGED
@@ -5,8 +5,11 @@
5
5
  </p>
6
6
 
7
7
  <p align="center">
8
- <a href="https://www.npmjs.com/package/@ganakailabs/cloudeval-cli"><img alt="npm" src="https://img.shields.io/npm/v/@ganakailabs/cloudeval-cli?style=flat-square"></a>
8
+ <a href="https://www.npmjs.com/package/@ganakailabs/cloudeval-cli"><img alt="npm version" src="https://img.shields.io/npm/v/@ganakailabs/cloudeval-cli?style=flat-square&logo=npm"></a>
9
+ <a href="https://www.npmjs.com/package/@ganakailabs/cloudeval-cli"><img alt="npm downloads" src="https://img.shields.io/npm/dm/@ganakailabs/cloudeval-cli?style=flat-square&logo=npm&label=npm%20downloads"></a>
9
10
  <a href="https://github.com/ganakailabs/cloudeval-cli/releases"><img alt="release" src="https://img.shields.io/github/v/release/ganakailabs/cloudeval-cli?sort=semver&style=flat-square"></a>
11
+ <a href="https://github.com/ganakailabs/cloudeval-cli/releases"><img alt="GitHub downloads" src="https://img.shields.io/github/downloads/ganakailabs/cloudeval-cli/total?style=flat-square&logo=github&label=release%20downloads"></a>
12
+ <a href="https://github.com/ganakailabs/cloudeval-cli/actions/workflows/semantic-release.yml"><img alt="release health" src="https://img.shields.io/github/actions/workflow/status/ganakailabs/cloudeval-cli/semantic-release.yml?branch=main&style=flat-square&label=release%20health"></a>
10
13
  <a href="https://github.com/ganakailabs/cloudeval-cli/blob/main/LICENSE"><img alt="license" src="https://img.shields.io/badge/license-CloudEval%20CLI%20License-blue?style=flat-square"></a>
11
14
  <a href="https://docs.cloudeval.ai/reference/cli-overview"><img alt="docs" src="https://img.shields.io/badge/docs-docs.cloudeval.ai-2d6cdf?style=flat-square"></a>
12
15
  <a href="https://discord.gg/tk5dcU2a7T"><img alt="Discord" src="https://img.shields.io/badge/Discord-community-5865F2?style=flat-square&logo=discord&logoColor=white"></a>
@@ -14,7 +17,8 @@
14
17
 
15
18
  CloudEval CLI brings CloudEval into your terminal, scripts, and agent tools. It
16
19
  supports cloud chat, Agent mode, Agent Profiles, project and report inspection,
17
- template validation, recipes, local hooks, and MCP server workflows.
20
+ template validation, recipes, local hooks, MCP server workflows, and local
21
+ thread switching in the Terminal UI.
18
22
 
19
23
  [CloudEval](https://cloudeval.ai) | [Docs](https://docs.cloudeval.ai/reference/cli-overview) | [GitHub](https://github.com/ganakailabs/cloudeval-cli) | [Discord](https://discord.gg/tk5dcU2a7T) | [Issues](https://github.com/ganakailabs/cloudeval-cli/issues) | [Releases](https://github.com/ganakailabs/cloudeval-cli/releases)
20
24
 
@@ -32,12 +36,16 @@ The npm package requires Node.js 20 or newer and installs these command aliases:
32
36
  - `eva`
33
37
 
34
38
  For standalone macOS, Linux, and Windows binaries, use the GitHub releases or
35
- the shell installer:
39
+ the installers:
36
40
 
37
41
  ```bash
38
42
  curl -fsSL https://cli.cloudeval.ai/install.sh | bash
39
43
  ```
40
44
 
45
+ ```powershell
46
+ irm https://cli.cloudeval.ai/install.ps1 | iex
47
+ ```
48
+
41
49
  The shell installer can detect Codex, Claude Desktop, Cursor, and VS Code,
42
50
  skip clients where CloudEval MCP is already configured, and offer setup only
43
51
  for missing clients that can be configured automatically. Manual-only clients
@@ -90,19 +98,38 @@ npm uninstall -g @ganakailabs/cloudeval-cli
90
98
 
91
99
  ## What It Covers
92
100
 
93
- - Terminal UI for chat, Agent mode, projects, reports, billing, and settings.
101
+ - Terminal UI for chat, Agent mode, Agent Profile selection, recent thread
102
+ switching, projects, reports, billing, and settings.
94
103
  - Scriptable commands with `json`, `ndjson`, `markdown`, and text output.
95
104
  - Agent Profiles: `architecture`, `cost`, `triage`, and `remediation`.
96
105
  - MCP tools for Codex, Cursor, Claude, VS Code, and other stdio JSON-RPC hosts.
97
106
  - Project graph, report, recipe, rules, and validation workflows.
98
107
  - Local opt-in hooks for CLI and Agent Profile events.
99
108
 
109
+ In the Terminal UI, use the Thread control or `/thread` to choose recent
110
+ CloudEval chat threads plus local CLI sessions, `/thread new` for a fresh
111
+ thread, and `/open` for the matching CloudEval web chat thread. Use the Profile
112
+ control or `/profile architecture|cost|triage|remediation` to choose an Agent
113
+ Profile for the next chat stream. Selecting a profile switches to Agent mode;
114
+ selecting Ask mode clears the profile back to the default chat flow. Starter
115
+ prompts stay hidden until you run `/starter`, which opens the starter
116
+ selections in the prompt box. Press `Esc` from the prompt to leave text editing
117
+ so tab, arrow, and number shortcuts move through controls and tabs; type again
118
+ to resume editing. Busy loaders and the input cursor animate by default unless
119
+ you pass `--no-anim`.
120
+
100
121
  ## Authentication
101
122
 
102
123
  Use `cloudeval login` for local development. For CI or hosted agents, create a
103
124
  scoped CloudEval access key in the app or with `cloudeval credentials create`,
104
125
  then provide it as `CLOUDEVAL_ACCESS_KEY`.
105
126
 
127
+ Stored device-login sessions are refreshed automatically before authenticated
128
+ requests. If a long-running terminal session receives an expired-token response
129
+ from the chat stream, the CLI refreshes the stored session and retries the
130
+ request once. If the refresh token is revoked or expired, run `cloudeval login`
131
+ again.
132
+
106
133
  ## Documentation
107
134
 
108
135
  - CLI overview: <https://docs.cloudeval.ai/reference/cli-overview>