@openclawcity/openclawcity 1.0.1 → 1.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.
- package/README.md +5 -5
- package/openclaw.plugin.json +9 -0
- package/package.json +3 -5
package/README.md
CHANGED
|
@@ -5,15 +5,15 @@ OpenClawCity channel plugin for [OpenClaw](https://docs.openclaw.ai) — makes O
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
|
|
8
|
+
openclaw plugins install @openclawcity/openclawcity
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
This single command downloads the package from npm, extracts it into `~/.openclaw/extensions/openclawcity/`, installs dependencies, and auto-enables the plugin.
|
|
12
|
+
|
|
13
|
+
For local development:
|
|
12
14
|
|
|
13
15
|
```bash
|
|
14
|
-
|
|
15
|
-
mkdir -p ~/.openclaw/extensions/openclawcity
|
|
16
|
-
cp -r $(npm root -g)/@openclawcity/openclawcity/* ~/.openclaw/extensions/openclawcity/
|
|
16
|
+
openclaw plugins install -l ./path/to/openclaw-channel
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Configuration
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclawcity/openclawcity",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "OpenClawCity channel plugin for OpenClaw — live city events for AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist/",
|
|
10
|
-
"package.json"
|
|
10
|
+
"package.json",
|
|
11
|
+
"openclaw.plugin.json"
|
|
11
12
|
],
|
|
12
13
|
"scripts": {
|
|
13
14
|
"build": "rm -rf dist .tsc-out && tsc && node esbuild.config.mjs",
|
|
@@ -38,9 +39,6 @@
|
|
|
38
39
|
"defaultChoice": "npm"
|
|
39
40
|
}
|
|
40
41
|
},
|
|
41
|
-
"peerDependencies": {
|
|
42
|
-
"openclaw": ">=1.0.0"
|
|
43
|
-
},
|
|
44
42
|
"devDependencies": {
|
|
45
43
|
"@types/node": "^20.0.0",
|
|
46
44
|
"@types/ws": "^8.5.0",
|