erosolar-cli 2.1.194 → 2.1.195

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "erosolar-cli",
3
- "version": "2.1.194",
3
+ "version": "2.1.195",
4
4
  "description": "Unified AI agent framework for the command line - Multi-provider support with schema-driven tools, code intelligence, and transparent reasoning",
5
5
  "main": "dist/bin/erosolar.js",
6
6
  "type": "module",
package/README.md DELETED
@@ -1,54 +0,0 @@
1
- # erosolar-cli
2
-
3
- Unified command-line agent with a single, persistent chat box pinned to the bottom of every session. Output streams scroll above it while the prompt and status controls stay anchored.
4
-
5
- ## Highlights
6
- - One chat box, always on the bottom during the entire session (idle or streaming).
7
- - Shared control bar for status, verification/build toggles, and context gauge.
8
- - Works with OpenAI, Anthropic, Google, xAI, DeepSeek, and local Ollama using the same UI contract.
9
- - Multi-agent Task tool with built-in general-purpose, explore (read-only), and plan subagents; add custom agents from `.claude/agents`, `~/.claude/agents`, or `--agents` JSON.
10
-
11
- ## Install
12
- ```bash
13
- npm install -g erosolar-cli
14
- # or
15
- npx erosolar-cli
16
- ```
17
-
18
- ## Run
19
- ```bash
20
- # default profile
21
- erosolar
22
-
23
- # choose model/provider
24
- erosolar --provider openai --model gpt-4o
25
-
26
- # restore last session
27
- erosolar --restore
28
- ```
29
-
30
- > Note: Each prompt is auto-orchestrated until completion; press Ctrl+C to stop a run early.
31
-
32
- ## Configure
33
- Set the keys you need before launching:
34
- ```bash
35
- OPENAI_API_KEY=...
36
- ANTHROPIC_API_KEY=...
37
- GOOGLE_API_KEY=...
38
- XAI_API_KEY=...
39
- DEEPSEEK_API_KEY=...
40
- OLLAMA_BASE_URL=http://localhost:11434
41
- ```
42
-
43
- ## Options
44
- - `--provider <name>` pick the AI provider
45
- - `--model <name>` choose a model
46
- - `--profile <name>` switch agent profiles (e.g., `erosolar-code`)
47
- - `--restore` resume the previous session
48
- - `--version` show the CLI version
49
- - `--agents '<json>'` register inline subagent definitions (name keyed object with description/prompt/tools/model)
50
-
51
- ## Auto-update
52
- The CLI checks npm on startup and will auto-install the latest release in the background when a newer build is available (skips in CI/tests or when running from source). Set `EROSOLAR_DISABLE_AUTO_UPDATE=1` to opt out, or `EROSOLAR_UPDATE_COMMAND="pnpm add -g erosolar-cli@latest"` to override the install command.
53
-
54
- MIT licensed.