@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 +25 -0
- package/dist/build-info.json +3 -3
- package/extensions/acpx/poolbot.plugin.json +6 -1
- package/extensions/dexter/poolbot.plugin.json +10 -6
- package/extensions/diffs/poolbot.plugin.json +6 -1
- package/extensions/github-copilot/poolbot.plugin.json +8 -4
- package/extensions/hackingtool/poolbot.plugin.json +33 -25
- package/extensions/hexstrike-ai/poolbot.plugin.json +16 -8
- package/extensions/ollama/poolbot.plugin.json +8 -4
- package/extensions/sglang/poolbot.plugin.json +7 -3
- package/extensions/test-utils/poolbot.plugin.json +5 -0
- package/extensions/vllm/poolbot.plugin.json +7 -3
- package/package.json +1 -1
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
|
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
|
}
|
|
@@ -19,12 +19,16 @@
|
|
|
19
19
|
"finance.queries"
|
|
20
20
|
],
|
|
21
21
|
"hooks": ["onInit"],
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
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
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
|
|
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
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
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
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
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
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
|
|
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
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
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
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
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
|
}
|