@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
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2026.3.19",
3
- "commit": "67a83667bd4edf589d39626d08dda245623ac4c0",
4
- "builtAt": "2026-03-13T13:20:20.612Z"
2
+ "version": "2026.3.20",
3
+ "commit": "52506d0d0c3ef55e51d3380fd5c67304b5aa5894",
4
+ "builtAt": "2026-03-13T22:09:04.980Z"
5
5
  }
@@ -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
  }
@@ -12,5 +12,10 @@
12
12
  "waitForCondition": "./dist/index.js",
13
13
  "createTempFile": "./dist/index.js",
14
14
  "cleanupTempFiles": "./dist/index.js"
15
+ },
16
+ "configSchema": {
17
+ "type": "object",
18
+ "properties": {},
19
+ "additionalProperties": false
15
20
  }
16
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poolzin/pool-bot",
3
- "version": "2026.3.19",
3
+ "version": "2026.3.20",
4
4
  "description": "🎱 Pool Bot - AI assistant with PLCODE integrations",
5
5
  "keywords": [],
6
6
  "license": "MIT",