autoremediator 0.2.2 → 0.3.0
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 +3 -1
- package/dist/{chunk-DQKT2CUG.js → chunk-URM53GSJ.js} +388 -133
- package/dist/chunk-URM53GSJ.js.map +1 -0
- package/dist/cli.d.ts +5 -0
- package/dist/cli.js +51 -13
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +42 -2
- package/dist/index.js +3 -1
- package/dist/mcp/server.d.ts +277 -0
- package/dist/mcp/server.js +115 -15
- package/dist/mcp/server.js.map +1 -1
- package/dist/openapi/server.d.ts +400 -1
- package/dist/openapi/server.js +192 -50
- package/dist/openapi/server.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-DQKT2CUG.js.map +0 -1
package/README.md
CHANGED
|
@@ -16,6 +16,8 @@ This package is designed for teams that want remediation integrated into GitHub
|
|
|
16
16
|
|
|
17
17
|
It exposes stable SDK and CLI surfaces for direct CVE remediation and scanner-driven automation.
|
|
18
18
|
|
|
19
|
+
It also exposes non-mutating planning and correlation context for agent orchestration workflows.
|
|
20
|
+
|
|
19
21
|
## Why Teams Use It
|
|
20
22
|
|
|
21
23
|
- Continuous remediation in CI and scheduled GitHub workflows
|
|
@@ -64,7 +66,7 @@ Trust controls:
|
|
|
64
66
|
## Surfaces
|
|
65
67
|
|
|
66
68
|
- CLI: workflow and CI execution
|
|
67
|
-
- SDK: custom automation programs
|
|
69
|
+
- SDK: custom automation programs (`remediate`, `planRemediation`, `remediateFromScan`)
|
|
68
70
|
- MCP: AI host integrations
|
|
69
71
|
- OpenAPI: service-based automation
|
|
70
72
|
|