@kubbisec/ai 0.1.21 → 0.1.22
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/README.md +12 -6
- package/bin/kbs.js +5 -0
- package/package.json +7 -6
package/README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://kubbisec.com">
|
|
3
|
+
<img src="https://kubbisec.com/assets/brand/kubbisec-symbol-cyan.svg" alt="KubbiSec" width="72" />
|
|
4
|
+
</a>
|
|
5
|
+
</p>
|
|
6
|
+
|
|
1
7
|
# KubbiSec CLI (`kubbisec`)
|
|
2
8
|
|
|
3
|
-
Command-line assistant for [KubbiSec](https://kubbisec.com)
|
|
9
|
+
Command-line assistant for [KubbiSec](https://kubbisec.com) - remediate findings, chat with security context, and run autopilot in your environment.
|
|
4
10
|
|
|
5
11
|
| | |
|
|
6
12
|
|---|---|
|
|
@@ -12,10 +18,10 @@ Command-line assistant for [KubbiSec](https://kubbisec.com) — remediate findin
|
|
|
12
18
|
|
|
13
19
|
## What it does
|
|
14
20
|
|
|
15
|
-
- **Remediate vulnerabilities**
|
|
16
|
-
- **Interactive chat**
|
|
17
|
-
- **Autopilot watch**
|
|
18
|
-
- **CLI hub**
|
|
21
|
+
- **Remediate vulnerabilities** - AI-assisted fixes from ASPM findings, with optional auto-PR.
|
|
22
|
+
- **Interactive chat** - TUI with KubbiSec skills (pipelines, scanners, remediation, local `gh`/`git` when needed).
|
|
23
|
+
- **Autopilot watch** - background daemon that consumes remediation tasks from your org queue.
|
|
24
|
+
- **CLI hub** - when NAUS or ASPM are on `PATH`, run `kubbisec naus …` or `kubbisec aspm …` from one entry point.
|
|
19
25
|
|
|
20
26
|
LLM calls go through your KubbiSec API using **BYOK** (Settings → AI in the web app).
|
|
21
27
|
|
|
@@ -62,7 +68,7 @@ Run `kubbisec --help` for the full list.
|
|
|
62
68
|
|
|
63
69
|
## Terms
|
|
64
70
|
|
|
65
|
-
The `kubbisec` CLI is distributed as prebuilt binaries for use with the [KubbiSec](https://kubbisec.com) platform.
|
|
71
|
+
The `kubbisec` CLI is distributed as prebuilt binaries for use with the [KubbiSec](https://kubbisec.com) platform. **Not open source.** Use is subject to your agreement with KubbiSec.
|
|
66
72
|
|
|
67
73
|
## Trademarks
|
|
68
74
|
|
package/bin/kbs.js
ADDED
package/package.json
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubbisec/ai",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
4
4
|
"description": "KubbiSec CLI (kubbisec) — AI remediation, chat, autopilot watch, and CLI hub",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"bin": {
|
|
7
|
-
"kubbisec": "bin/kubbisec.js"
|
|
7
|
+
"kubbisec": "bin/kubbisec.js",
|
|
8
|
+
"kbs": "bin/kbs.js"
|
|
8
9
|
},
|
|
9
10
|
"files": [
|
|
10
11
|
"bin",
|
|
11
12
|
"README.md"
|
|
12
13
|
],
|
|
13
14
|
"optionalDependencies": {
|
|
14
|
-
"@kubbisec/ai-linux-x64": "0.1.
|
|
15
|
-
"@kubbisec/ai-linux-arm64": "0.1.
|
|
16
|
-
"@kubbisec/ai-darwin-arm64": "0.1.
|
|
17
|
-
"@kubbisec/ai-win32-x64": "0.1.
|
|
15
|
+
"@kubbisec/ai-linux-x64": "0.1.22",
|
|
16
|
+
"@kubbisec/ai-linux-arm64": "0.1.22",
|
|
17
|
+
"@kubbisec/ai-darwin-arm64": "0.1.22",
|
|
18
|
+
"@kubbisec/ai-win32-x64": "0.1.22"
|
|
18
19
|
},
|
|
19
20
|
"engines": {
|
|
20
21
|
"node": ">=20"
|