anveesa 0.2.5 → 0.2.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.
package/Cargo.lock CHANGED
@@ -54,7 +54,7 @@ dependencies = [
54
54
 
55
55
  [[package]]
56
56
  name = "anveesa"
57
- version = "0.2.5"
57
+ version = "0.2.6"
58
58
  dependencies = [
59
59
  "anyhow",
60
60
  "base64",
package/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "anveesa"
3
- version = "0.2.5"
3
+ version = "0.2.6"
4
4
  edition = "2024"
5
5
  default-run = "anveesa"
6
6
 
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Anveesa
2
2
 
3
3
  Anveesa is a Rust terminal wrapper for AI providers. It gives you one command,
4
- `anveesa`, while each provider is configured as either:
4
+ `anveesa`, for interactive prompts and one-shot terminal requests.
5
5
 
6
6
  ## 📦 Publishing to npm
7
7
 
@@ -13,20 +13,6 @@ Anveesa can be published as an npm package via a Node.js wrapper that invokes th
13
13
  npm install -g anveesa
14
14
  ```
15
15
 
16
- ### Build and publish
17
-
18
- ```bash
19
- git tag v$(node -p "require('./package.json').version")
20
- git push origin main --tags
21
- npm publish
22
- ```
23
-
24
- Wait for the GitHub release binary workflow to finish before publishing to npm.
25
- See `npm-publish.md` for the full release checklist.
26
-
27
- - `openai-compatible`: HTTP chat completions providers such as OpenRouter and other compatible gateways.
28
- - `command`: local CLIs such as Codex, Copilot, and Claude Code, where Anveesa spawns a command and passes the prompt.
29
-
30
16
  ## Install locally
31
17
 
32
18
  ```sh
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anveesa",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "A terminal CLI that wraps AI providers (OpenAI-compatible APIs and local CLIs) into a single unified command",
5
5
  "main": "bin/anveesa.js",
6
6
  "bin": {