@poolzin/pool-bot 2026.3.19 → 2026.3.20
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## v2026.3.20 (2026-03-13)
|
|
2
|
+
|
|
3
|
+
### 🐛 Critical Bug Fixes
|
|
4
|
+
- **Plugin Manifests (acpx, diffs, test-utils):** Adicionado `configSchema` obrigatório em todas as extensões
|
|
5
|
+
- **NPM Installation:** Resolve erro `plugin manifest requires configSchema` para instalações via npm
|
|
6
|
+
- **Config Validation:** Todas as 50+ extensões agora possuem `configSchema` válido
|
|
7
|
+
|
|
8
|
+
### 🔧 Extensions Fixed
|
|
9
|
+
- `acpx` - Added empty configSchema
|
|
10
|
+
- `diffs` - Added empty configSchema
|
|
11
|
+
- `test-utils` - Added empty configSchema
|
|
12
|
+
|
|
13
|
+
### ✅ Verification
|
|
14
|
+
```bash
|
|
15
|
+
npm install -g @poolzin/pool-bot@2026.3.20
|
|
16
|
+
poolbot doctor --fix # Should pass without configSchema errors
|
|
17
|
+
```
|
|
18
|
+
|
|
1
19
|
## v2026.3.19 (2026-03-13)
|
|
2
20
|
|
|
3
21
|
### 🐛 Bug Fixes
|
package/dist/build-info.json
CHANGED
|
@@ -5,5 +5,10 @@
|
|
|
5
5
|
"description": "Agent Client Protocol runtime backend",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"capabilities": ["runtime", "agent-protocol"],
|
|
8
|
-
"commands": ["acpx.status"]
|
|
8
|
+
"commands": ["acpx.status"],
|
|
9
|
+
"configSchema": {
|
|
10
|
+
"type": "object",
|
|
11
|
+
"properties": {},
|
|
12
|
+
"additionalProperties": false
|
|
13
|
+
}
|
|
9
14
|
}
|
|
@@ -6,5 +6,10 @@
|
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"capabilities": ["diff", "code-review"],
|
|
8
8
|
"commands": ["diff.view", "diff.stats"],
|
|
9
|
-
"tools": ["diff_viewer"]
|
|
9
|
+
"tools": ["diff_viewer"],
|
|
10
|
+
"configSchema": {
|
|
11
|
+
"type": "object",
|
|
12
|
+
"properties": {},
|
|
13
|
+
"additionalProperties": false
|
|
14
|
+
}
|
|
10
15
|
}
|