aweshare 0.2.1 → 0.2.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 +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ Consumer (standard SDK, zero changes) Producer side
|
|
|
46
46
|
|
|
47
47
|
## Quickstart
|
|
48
48
|
|
|
49
|
-
Published as [`aweshare`](https://www.npmjs.com/package/aweshare) on npm (requires Node ≥ 22) and as a Docker image (`ghcr.io/
|
|
49
|
+
Published as [`aweshare`](https://www.npmjs.com/package/aweshare) on npm (requires Node ≥ 22) and as a Docker image (`ghcr.io/wehuman01/aweshare`). No clone needed.
|
|
50
50
|
|
|
51
51
|
### 1. Start the hub (operator, one VPS)
|
|
52
52
|
|
|
@@ -62,7 +62,7 @@ aweshare hub serve # listens on :8787 (put Caddy/nginx TLS in front)
|
|
|
62
62
|
|
|
63
63
|
```bash
|
|
64
64
|
docker run -d --name aweshare-hub --restart unless-stopped \
|
|
65
|
-
-p 127.0.0.1:8787:8787 -v "$PWD/data:/data" ghcr.io/
|
|
65
|
+
-p 127.0.0.1:8787:8787 -v "$PWD/data:/data" ghcr.io/wehuman01/aweshare:latest
|
|
66
66
|
docker exec aweshare-hub node apps/hub/dist/cli.js init # first run: prints the admin token, save it
|
|
67
67
|
```
|
|
68
68
|
|
|
@@ -232,7 +232,7 @@ aweshare hub serve
|
|
|
232
232
|
aweshare agent doctor
|
|
233
233
|
```
|
|
234
234
|
|
|
235
|
-
Releasing: push a `v*` tag with a matching `## [x.y.z]` section in `docs/CHANGELOG.md`; CI publishes `aweshare
|
|
235
|
+
Releasing: push a `v*` tag with a matching `## [x.y.z]` section in `docs/CHANGELOG.md`; CI publishes the `aweshare` package to npm via Trusted Publishing (OIDC, no token secret) and the Docker image to `ghcr.io/wehuman01/aweshare`.
|
|
236
236
|
|
|
237
237
|
Layout: `packages/protocol` (shared wire protocol) · `apps/hub` (HTTP+WS+SQLite+CLI) · `apps/agent` (CLI). Design docs live in `docs/specs/`; the changelog in `docs/CHANGELOG.md`; contribution scope in [CONTRIBUTING.md](./CONTRIBUTING.md).
|
|
238
238
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aweshare",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Open-source, local-first AI capability relay",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/
|
|
9
|
+
"url": "git+https://github.com/wehuman01/aweshare.git"
|
|
10
10
|
},
|
|
11
11
|
"bin": {
|
|
12
12
|
"aweshare": "./bin/aweshare.mjs"
|