openclaw-productboard 1.0.5 → 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 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
- Or install from npm (coming soon):
24
+ ## Configuration
25
+
26
+ Configure your ProductBoard API token:
21
27
 
22
28
  ```bash
23
- openclaw plugins install openclaw-productboard
29
+ openclaw plugins config openclaw-productboard --set apiToken=pb_your_api_token_here
24
30
  ```
25
31
 
26
- ## Configuration
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",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "openclaw-productboard",
3
3
  "name": "ProductBoard",
4
- "version": "1.0.5",
4
+ "version": "1.0.7",
5
5
  "description": "ProductBoard integration for managing features, products, and customer feedback",
6
6
  "configSchema": {
7
7
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-productboard",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "OpenClaw plugin for ProductBoard integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -10,12 +10,6 @@
10
10
  "./dist/index.js"
11
11
  ]
12
12
  },
13
- "moltbot": {
14
- "extensions": [
15
- "./dist/index.js"
16
- ],
17
- "manifest": "./moltbot.plugin.json"
18
- },
19
13
  "scripts": {
20
14
  "build": "tsc",
21
15
  "dev": "tsc --watch",
@@ -24,7 +18,6 @@
24
18
  },
25
19
  "keywords": [
26
20
  "openclaw",
27
- "moltbot",
28
21
  "productboard",
29
22
  "plugin",
30
23
  "product-management",
@@ -55,7 +48,7 @@
55
48
  "files": [
56
49
  "dist",
57
50
  "skills",
58
- "moltbot.plugin.json",
51
+ "openclaw.plugin.json",
59
52
  "README.md",
60
53
  "CHANGELOG.md",
61
54
  "LICENSE"