@poolzin/pool-bot 2026.3.18 → 2026.3.19

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,10 @@
1
+ ## v2026.3.19 (2026-03-13)
2
+
3
+ ### 🐛 Bug Fixes
4
+ - **Plugin Manifests:** Corrigido `configSchema` em todos os plugins que estavam usando `config` (dexter, hackingtool, hexstrike-ai, github-copilot, ollama, sglang, vllm)
5
+ - **Config Validation:** Plugins agora carregam corretamente sem erros de validação
6
+ - **Plugin Loader:** Compatibilidade com schema JSON para configurações de plugin
7
+
1
8
  ## v2026.3.18 (2026-03-13)
2
9
 
3
10
  ### 🚀 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.19",
3
+ "commit": "67a83667bd4edf589d39626d08dda245623ac4c0",
4
+ "builtAt": "2026-03-13T13:20:20.612Z"
5
5
  }
@@ -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",
@@ -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
  }
@@ -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.19",
4
4
  "description": "🎱 Pool Bot - AI assistant with PLCODE integrations",
5
5
  "keywords": [],
6
6
  "license": "MIT",