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 +1 -1
- package/Cargo.toml +1 -1
- package/README.md +1 -15
- package/package.json +1 -1
package/Cargo.lock
CHANGED
package/Cargo.toml
CHANGED
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`,
|
|
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
|