@diggerhq/anyware 0.5.13 → 0.6.2

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/README.md CHANGED
@@ -1,11 +1,11 @@
1
- # Catty CLI
1
+ # Anyware CLI
2
2
 
3
3
  A Claude Code wrapper with centralized streaming for cross-device access.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install -g @diggerhq/catty
8
+ npm install -g @diggerhq/anyware
9
9
  ```
10
10
 
11
11
  ## Usage
@@ -13,7 +13,7 @@ npm install -g @diggerhq/catty
13
13
  ### Login
14
14
 
15
15
  ```bash
16
- catty login
16
+ anyware login
17
17
  ```
18
18
 
19
19
  This will open a browser for device-based authentication.
@@ -21,25 +21,25 @@ This will open a browser for device-based authentication.
21
21
  ### Run Claude
22
22
 
23
23
  ```bash
24
- catty
24
+ anyware
25
25
  ```
26
26
 
27
- Navigate to any folder and run `catty` to start a Claude session. Your session will be streamed to the central server, allowing you to view it from any device (web, mobile).
27
+ Navigate to any folder and run `anyware` to start a Claude session. Your session will be streamed to the central server, allowing you to view it from any device (web, mobile).
28
28
 
29
29
  ### Other Commands
30
30
 
31
31
  ```bash
32
32
  # View version
33
- catty version
33
+ anyware version
34
34
 
35
35
  # View configuration
36
- catty config get
36
+ anyware config get
37
37
 
38
38
  # Set server URL (for self-hosted instances)
39
- catty config set server <url>
39
+ anyware config set server <url>
40
40
 
41
41
  # Logout
42
- catty logout
42
+ anyware logout
43
43
  ```
44
44
 
45
45
  ## Configuration
@@ -48,13 +48,13 @@ catty logout
48
48
 
49
49
  | Variable | Description | Default |
50
50
  |----------|-------------|---------|
51
- | `CATTY_API_URL` | Override the API server URL | `https://catty.dev` |
51
+ | `ANYWARE_API_URL` | Override the API server URL | `https://anyware.run` |
52
52
 
53
53
  Example for self-hosted instances:
54
54
 
55
55
  ```bash
56
- export CATTY_API_URL=https://your-catty-server.com
57
- catty login
56
+ export ANYWARE_API_URL=https://your-anyware-server.com
57
+ anyware login
58
58
  ```
59
59
 
60
60
  ## Requirements
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@diggerhq/anyware",
3
- "version": "0.5.13",
3
+ "version": "0.6.2",
4
4
  "description": "A Claude Code wrapper with centralized streaming for cross-device access",
5
5
  "bin": {
6
- "catty": "./bin/catty"
6
+ "anyware": "./bin/anyware"
7
7
  },
8
8
  "scripts": {
9
9
  "build": "bash scripts/build.sh"
@@ -19,7 +19,7 @@
19
19
  "license": "MIT",
20
20
  "repository": {
21
21
  "type": "git",
22
- "url": "https://github.com/diggerhq/catty"
22
+ "url": "https://github.com/diggerhq/anyware"
23
23
  },
24
24
  "os": [
25
25
  "darwin",