clawty 0.0.2 → 0.0.3

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 -9
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -33,9 +33,7 @@ You can also type messages directly in the terminal — they're sent to Claude t
33
33
  ### 1. Install
34
34
 
35
35
  ```bash
36
- git clone https://github.com/flotoria/clawty.git
37
- cd clawty
38
- bun install
36
+ bun add -g clawty
39
37
  ```
40
38
 
41
39
  ### 2. Grant macOS Permissions
@@ -52,7 +50,7 @@ bun install
52
50
  ### 3. Start the Bridge
53
51
 
54
52
  ```bash
55
- bun run src/cli.ts --contact "+1234567890"
53
+ clawty --contact "+1234567890"
56
54
  ```
57
55
 
58
56
  Replace `+1234567890` with your phone number (the one you'll text from). If you omit `--contact`, the bridge will prompt you for it interactively.
@@ -71,19 +69,17 @@ Options:
71
69
  --help, -h Show help
72
70
  ```
73
71
 
74
- Also available as `clawty` after installing globally with `bun install -g`.
75
-
76
72
  ### Examples
77
73
 
78
74
  ```bash
79
75
  # Basic — respond to texts from your phone number
80
- bun run src/cli.ts -c "+1234567890"
76
+ clawty -c "+1234567890"
81
77
 
82
78
  # With a project directory so Claude has file context
83
- bun run src/cli.ts -c "+1234567890" -d ~/projects/myapp
79
+ clawty -c "+1234567890" -d ~/projects/myapp
84
80
 
85
81
  # Use a specific model
86
- bun run src/cli.ts -c "+1234567890" -m opus
82
+ clawty -c "+1234567890" -m opus
87
83
  ```
88
84
 
89
85
  ### Terminal UI
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawty",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "module": "src/index.ts",
5
5
  "devDependencies": {
6
6
  "@types/bun": "latest"
@@ -39,5 +39,7 @@
39
39
  "dev": "bun run src/cli.ts"
40
40
  },
41
41
  "type": "module",
42
- "dependencies": {}
42
+ "dependencies": {
43
+ "clawty": "^0.0.2"
44
+ }
43
45
  }