@poolzin/pool-bot 2026.3.18 → 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,28 @@
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
+
19
+ ## v2026.3.19 (2026-03-13)
20
+
21
+ ### 🐛 Bug Fixes
22
+ - **Plugin Manifests:** Corrigido `configSchema` em todos os plugins que estavam usando `config` (dexter, hackingtool, hexstrike-ai, github-copilot, ollama, sglang, vllm)
23
+ - **Config Validation:** Plugins agora carregam corretamente sem erros de validação
24
+ - **Plugin Loader:** Compatibilidade com schema JSON para configurações de plugin
25
+
1
26
  ## v2026.3.18 (2026-03-13)
2
27
 
3
28
  ### 🚀 OpenClaw Master Skills Integration
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2026.3.18",
3
- "commit": "9f6f8d231f911256369c87eaed58c9e25958519c",
4
- "builtAt": "2026-03-13T13:01:36.581Z"
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
  }
@@ -19,12 +19,16 @@
19
19
  "finance.queries"
20
20
  ],
21
21
  "hooks": ["onInit"],
22
- "config": {
23
- "model": "gpt-4o",
24
- "maxSteps": 10,
25
- "autoStart": true,
26
- "financialDatasetsApiKey": "",
27
- "exaApiKey": ""
22
+ "configSchema": {
23
+ "type": "object",
24
+ "properties": {
25
+ "model": { "type": "string", "default": "gpt-4o" },
26
+ "maxSteps": { "type": "number", "default": 10 },
27
+ "autoStart": { "type": "boolean", "default": true },
28
+ "financialDatasetsApiKey": { "type": "string" },
29
+ "exaApiKey": { "type": "string" }
30
+ },
31
+ "additionalProperties": false
28
32
  },
29
33
  "permissions": [
30
34
  "gateway.rpc",
@@ -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
  }
@@ -16,10 +16,14 @@
16
16
  "copilot.models"
17
17
  ],
18
18
  "hooks": ["onInit"],
19
- "config": {
20
- "autoRefresh": true,
21
- "refreshIntervalHours": 24,
22
- "defaultModel": "gpt-4o"
19
+ "configSchema": {
20
+ "type": "object",
21
+ "properties": {
22
+ "autoRefresh": { "type": "boolean", "default": true },
23
+ "refreshIntervalHours": { "type": "number", "default": 24 },
24
+ "defaultModel": { "type": "string", "default": "gpt-4o" }
25
+ },
26
+ "additionalProperties": false
23
27
  },
24
28
  "permissions": [
25
29
  "config.read",
@@ -21,31 +21,39 @@
21
21
  "pentest.stop"
22
22
  ],
23
23
  "hooks": ["onInit", "onShutdown"],
24
- "config": {
25
- "port": 8889,
26
- "host": "127.0.0.1",
27
- "autoStart": true,
28
- "pythonPath": "python3",
29
- "toolCategories": [
30
- "anonymity",
31
- "information_gathering",
32
- "wordlist",
33
- "wireless",
34
- "sql_injection",
35
- "phishing",
36
- "web_attack",
37
- "post_exploitation",
38
- "forensic",
39
- "payload",
40
- "exploit",
41
- "reverse_engineering",
42
- "ddos",
43
- "rat",
44
- "xss",
45
- "steganography"
46
- ],
47
- "maxConcurrentScans": 5,
48
- "scanTimeout": 600
24
+ "configSchema": {
25
+ "type": "object",
26
+ "properties": {
27
+ "port": { "type": "number", "default": 8889 },
28
+ "host": { "type": "string", "default": "127.0.0.1" },
29
+ "autoStart": { "type": "boolean", "default": true },
30
+ "pythonPath": { "type": "string", "default": "python3" },
31
+ "toolCategories": {
32
+ "type": "array",
33
+ "items": { "type": "string" },
34
+ "default": [
35
+ "anonymity",
36
+ "information_gathering",
37
+ "wordlist",
38
+ "wireless",
39
+ "sql_injection",
40
+ "phishing",
41
+ "web_attack",
42
+ "post_exploitation",
43
+ "forensic",
44
+ "payload",
45
+ "exploit",
46
+ "reverse_engineering",
47
+ "ddos",
48
+ "rat",
49
+ "xss",
50
+ "steganography"
51
+ ]
52
+ },
53
+ "maxConcurrentScans": { "type": "number", "default": 5 },
54
+ "scanTimeout": { "type": "number", "default": 600 }
55
+ },
56
+ "additionalProperties": false
49
57
  },
50
58
  "permissions": [
51
59
  "gateway.rpc",
@@ -14,14 +14,22 @@
14
14
  "security.stop"
15
15
  ],
16
16
  "hooks": ["onInit", "onShutdown"],
17
- "config": {
18
- "port": 8888,
19
- "host": "127.0.0.1",
20
- "autoStart": true,
21
- "pythonPath": "python3",
22
- "scanners": ["nmap", "nuclei", "sqlmap", "gobuster", "wpscan", "nikto", "dirb"],
23
- "maxConcurrentScans": 3,
24
- "scanTimeout": 3600
17
+ "configSchema": {
18
+ "type": "object",
19
+ "properties": {
20
+ "port": { "type": "number", "default": 8888 },
21
+ "host": { "type": "string", "default": "127.0.0.1" },
22
+ "autoStart": { "type": "boolean", "default": true },
23
+ "pythonPath": { "type": "string", "default": "python3" },
24
+ "scanners": {
25
+ "type": "array",
26
+ "items": { "type": "string" },
27
+ "default": ["nmap", "nuclei", "sqlmap", "gobuster", "wpscan", "nikto", "dirb"]
28
+ },
29
+ "maxConcurrentScans": { "type": "number", "default": 3 },
30
+ "scanTimeout": { "type": "number", "default": 3600 }
31
+ },
32
+ "additionalProperties": false
25
33
  },
26
34
  "permissions": [
27
35
  "gateway.rpc",
@@ -6,9 +6,13 @@
6
6
  "main": "dist/index.js",
7
7
  "capabilities": ["provider", "local-llm"],
8
8
  "commands": ["ollama.status", "ollama.models", "ollama.pull"],
9
- "config": {
10
- "host": "http://127.0.0.1",
11
- "port": 11434,
12
- "defaultModel": "llama3"
9
+ "configSchema": {
10
+ "type": "object",
11
+ "properties": {
12
+ "host": { "type": "string", "default": "http://127.0.0.1" },
13
+ "port": { "type": "number", "default": 11434 },
14
+ "defaultModel": { "type": "string", "default": "llama3" }
15
+ },
16
+ "additionalProperties": false
13
17
  }
14
18
  }
@@ -6,8 +6,12 @@
6
6
  "main": "dist/index.js",
7
7
  "capabilities": ["provider", "optimized-inference"],
8
8
  "commands": ["sglang.status", "sglang.models"],
9
- "config": {
10
- "host": "http://127.0.0.1",
11
- "port": 30000
9
+ "configSchema": {
10
+ "type": "object",
11
+ "properties": {
12
+ "host": { "type": "string", "default": "http://127.0.0.1" },
13
+ "port": { "type": "number", "default": 30000 }
14
+ },
15
+ "additionalProperties": false
12
16
  }
13
17
  }
@@ -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
  }
@@ -6,8 +6,12 @@
6
6
  "main": "dist/index.js",
7
7
  "capabilities": ["provider", "high-throughput"],
8
8
  "commands": ["vllm.status", "vllm.models", "vllm.generate"],
9
- "config": {
10
- "host": "http://127.0.0.1",
11
- "port": 8000
9
+ "configSchema": {
10
+ "type": "object",
11
+ "properties": {
12
+ "host": { "type": "string", "default": "http://127.0.0.1" },
13
+ "port": { "type": "number", "default": 8000 }
14
+ },
15
+ "additionalProperties": false
12
16
  }
13
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poolzin/pool-bot",
3
- "version": "2026.3.18",
3
+ "version": "2026.3.20",
4
4
  "description": "🎱 Pool Bot - AI assistant with PLCODE integrations",
5
5
  "keywords": [],
6
6
  "license": "MIT",