@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
|
-
#
|
|
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/
|
|
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
|
-
|
|
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
|
-
|
|
24
|
+
anyware
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
-
Navigate to any folder and run `
|
|
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
|
-
|
|
33
|
+
anyware version
|
|
34
34
|
|
|
35
35
|
# View configuration
|
|
36
|
-
|
|
36
|
+
anyware config get
|
|
37
37
|
|
|
38
38
|
# Set server URL (for self-hosted instances)
|
|
39
|
-
|
|
39
|
+
anyware config set server <url>
|
|
40
40
|
|
|
41
41
|
# Logout
|
|
42
|
-
|
|
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
|
-
| `
|
|
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
|
|
57
|
-
|
|
56
|
+
export ANYWARE_API_URL=https://your-anyware-server.com
|
|
57
|
+
anyware login
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
## Requirements
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@diggerhq/anyware",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "A Claude Code wrapper with centralized streaming for cross-device access",
|
|
5
5
|
"bin": {
|
|
6
|
-
"
|
|
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/
|
|
22
|
+
"url": "https://github.com/diggerhq/anyware"
|
|
23
23
|
},
|
|
24
24
|
"os": [
|
|
25
25
|
"darwin",
|