@flomesh/ztm-chat 2026.2.15 → 2026.2.18-alpha.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.
- package/README.md +14 -3
- package/package.json +12 -4
package/README.md
CHANGED
|
@@ -97,14 +97,25 @@ The agent will start listening on `http://localhost:7777` by default.
|
|
|
97
97
|
|
|
98
98
|
### 3. Install Plugin
|
|
99
99
|
|
|
100
|
+
#### Option A: Install from npm (recommended for users)
|
|
101
|
+
|
|
100
102
|
```bash
|
|
103
|
+
openclaw plugins install @flomesh/ztm-chat
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
#### Option B: Local development installation
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
# Install from local path
|
|
101
110
|
openclaw plugins install -l .
|
|
102
111
|
|
|
103
|
-
# Or
|
|
104
|
-
|
|
105
|
-
|
|
112
|
+
# Or link for development
|
|
113
|
+
npm link
|
|
114
|
+
openclaw plugins install -l .
|
|
106
115
|
```
|
|
107
116
|
|
|
117
|
+
After installation, the plugin will be available as `ztm-chat` (or `ztm` as alias).
|
|
118
|
+
|
|
108
119
|
### 4. Run Configuration Wizard
|
|
109
120
|
|
|
110
121
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flomesh/ztm-chat",
|
|
3
|
-
"version": "2026.2.
|
|
3
|
+
"version": "2026.2.18-alpha.3",
|
|
4
4
|
"description": "ZTM Chat channel plugin for OpenClaw",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -24,7 +24,10 @@
|
|
|
24
24
|
"typecheck": "tsc --noEmit",
|
|
25
25
|
"lint": "eslint src --ext .ts",
|
|
26
26
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
27
|
-
"prepublishOnly": "npm run build"
|
|
27
|
+
"prepublishOnly": "npm run build",
|
|
28
|
+
"changelog": "git-cliff --output CHANGELOG.md",
|
|
29
|
+
"changelog:unreleased": "git-cliff --unreleased",
|
|
30
|
+
"changelog:preview": "git-cliff --unreleased"
|
|
28
31
|
},
|
|
29
32
|
"dependencies": {
|
|
30
33
|
"@sinclair/typebox": "^0.34.48",
|
|
@@ -35,7 +38,10 @@
|
|
|
35
38
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
36
39
|
"@typescript-eslint/parser": "^8.0.0",
|
|
37
40
|
"@vitest/coverage-v8": "^4.0.18",
|
|
38
|
-
"
|
|
41
|
+
"conventional-changelog-angular": "^8.1.0",
|
|
42
|
+
"conventional-changelog-cli": "^2.2.2",
|
|
43
|
+
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
44
|
+
"eslint": "^10.0.0",
|
|
39
45
|
"prettier": "^3.0.0",
|
|
40
46
|
"typescript": "^5.9.3",
|
|
41
47
|
"vitest": "^4.0.18"
|
|
@@ -49,7 +55,9 @@
|
|
|
49
55
|
"label": "ZTM Chat",
|
|
50
56
|
"selectionLabel": "ZTM Chat",
|
|
51
57
|
"blurb": "Decentralized P2P messaging via ZTM network",
|
|
52
|
-
"aliases": [
|
|
58
|
+
"aliases": [
|
|
59
|
+
"ztm"
|
|
60
|
+
],
|
|
53
61
|
"order": 40,
|
|
54
62
|
"quickstartAllowFrom": true
|
|
55
63
|
},
|