openclaw-productboard 1.0.6 → 1.0.7
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 +10 -6
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -10
package/README.md
CHANGED
|
@@ -14,24 +14,28 @@ A lean, fast OpenClaw plugin for ProductBoard integration. Provides 15 agent too
|
|
|
14
14
|
## Installation
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
+
# Install from npm
|
|
18
|
+
openclaw plugins install openclaw-productboard
|
|
19
|
+
|
|
20
|
+
# Or install locally for development
|
|
17
21
|
openclaw plugins install -l ./openclaw-productboard
|
|
18
22
|
```
|
|
19
23
|
|
|
20
|
-
|
|
24
|
+
## Configuration
|
|
25
|
+
|
|
26
|
+
Configure your ProductBoard API token:
|
|
21
27
|
|
|
22
28
|
```bash
|
|
23
|
-
openclaw plugins
|
|
29
|
+
openclaw plugins config openclaw-productboard --set apiToken=pb_your_api_token_here
|
|
24
30
|
```
|
|
25
31
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
Add your ProductBoard API token to your OpenClaw configuration:
|
|
32
|
+
Or add to your OpenClaw configuration file (`~/.openclaw/config.json`):
|
|
29
33
|
|
|
30
34
|
```json
|
|
31
35
|
{
|
|
32
36
|
"plugins": {
|
|
33
37
|
"entries": {
|
|
34
|
-
"productboard": {
|
|
38
|
+
"openclaw-productboard": {
|
|
35
39
|
"config": {
|
|
36
40
|
"apiToken": "pb_your_api_token_here",
|
|
37
41
|
"apiBaseUrl": "https://api.productboard.com",
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-productboard",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "OpenClaw plugin for ProductBoard integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -8,14 +8,7 @@
|
|
|
8
8
|
"openclaw": {
|
|
9
9
|
"extensions": [
|
|
10
10
|
"./dist/index.js"
|
|
11
|
-
]
|
|
12
|
-
"manifest": "./openclaw.plugin.json"
|
|
13
|
-
},
|
|
14
|
-
"moltbot": {
|
|
15
|
-
"extensions": [
|
|
16
|
-
"./dist/index.js"
|
|
17
|
-
],
|
|
18
|
-
"manifest": "./openclaw.plugin.json"
|
|
11
|
+
]
|
|
19
12
|
},
|
|
20
13
|
"scripts": {
|
|
21
14
|
"build": "tsc",
|
|
@@ -25,7 +18,6 @@
|
|
|
25
18
|
},
|
|
26
19
|
"keywords": [
|
|
27
20
|
"openclaw",
|
|
28
|
-
"moltbot",
|
|
29
21
|
"productboard",
|
|
30
22
|
"plugin",
|
|
31
23
|
"product-management",
|