bone-agent 1.3.0 → 1.3.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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -19,16 +19,16 @@ A CLI-based AI coding assistant capable of codebase search, file editing, comput
19
19
 
20
20
  ```bash
21
21
  # Install globally (requires Python 3.9+)
22
- npm install -g bone-agent-cli
22
+ npm install -g bone-agent
23
23
 
24
24
  # Run bone-agent
25
- bone-agent
25
+ bone
26
26
  ```
27
27
 
28
28
  Or use npx without installing:
29
29
 
30
30
  ```bash
31
- npx bone-agent-cli
31
+ npx bone-agent
32
32
  ```
33
33
 
34
34
  ### What Gets Installed
@@ -37,7 +37,7 @@ The npm package automatically:
37
37
  1. Checks for Python 3.9+ on your system
38
38
  2. Installs Python dependencies via pip
39
39
  3. Creates `~/.bone/config.yaml` from `config.yaml.example` if missing (persists across updates)
40
- 4. Sets up the `bone-agent` command globally
40
+ 4. Sets up the `bone` command globally
41
41
 
42
42
  **Requirements:**
43
43
  - Node.js 14+ (for npm)
@@ -104,7 +104,7 @@ Set environment variables (they take precedence over ~/.bone/config.yaml):
104
104
  export OPENAI_API_KEY="sk-your-key-here"
105
105
  export ANTHROPIC_API_KEY="sk-ant-your-key-here"
106
106
 
107
- bone-agent
107
+ bone
108
108
  ```
109
109
 
110
110
  ### Available Environment Variables
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bone-agent",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "A terminal-based AI coding assistant powered by OpenAI-style function calling",
5
5
  "main": "src/ui/main.py",
6
6
  "bin": {
@@ -36,12 +36,12 @@
36
36
  "license": "MIT",
37
37
  "repository": {
38
38
  "type": "git",
39
- "url": "git+https://github.com/vincentm65/vmCode-CLI.git"
39
+ "url": "git+https://github.com/vincentm65/bone-agent.git"
40
40
  },
41
41
  "bugs": {
42
- "url": "https://github.com/vincentm65/vmCode-CLI/issues"
42
+ "url": "https://github.com/vincentm65/bone-agent/issues"
43
43
  },
44
- "homepage": "https://github.com/vincentm65/vmCode-CLI",
44
+ "homepage": "https://github.com/vincentm65/bone-agent",
45
45
  "engines": {
46
46
  "node": ">=14.0.0"
47
47
  },