autoremediator 0.9.0 → 0.10.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-EDPCMRUW.js → chunk-F7W4EYJL.js} +569 -219
- package/dist/chunk-F7W4EYJL.js.map +1 -0
- package/dist/cli.js +62 -4
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +496 -4
- package/dist/index.js +5153 -19
- package/dist/index.js.map +1 -1
- package/dist/mcp/server.js +17 -4
- package/dist/mcp/server.js.map +1 -1
- package/dist/openapi/server.js +67 -4
- package/dist/openapi/server.js.map +1 -1
- package/llms.txt +9 -9
- package/package.json +8 -7
- package/dist/chunk-7XSZTGU7.js +0 -16
- package/dist/chunk-7XSZTGU7.js.map +0 -1
- package/dist/chunk-EDPCMRUW.js.map +0 -1
- package/dist/cli.d.ts +0 -6
- package/dist/index-Di8lB6CG.d.ts +0 -401
- package/dist/mcp/server.d.ts +0 -128
- package/dist/openapi/server.d.ts +0 -520
- package/dist/options-schema-CH5GjZY1.d.ts +0 -53
package/README.md
CHANGED
|
@@ -85,7 +85,7 @@ Trust model principles:
|
|
|
85
85
|
## Built for every surface
|
|
86
86
|
|
|
87
87
|
- CLI: workflow jobs and CI runs
|
|
88
|
-
- SDK: `remediate`, `planRemediation`, `remediateFromScan`
|
|
88
|
+
- SDK: `remediate`, `planRemediation`, `remediateFromScan`, `updateOutdated`
|
|
89
89
|
- MCP server: agent ecosystem integration, tool invocation, and LLM-orchestrated workflows
|
|
90
90
|
- OpenAPI server: service-based integration and centralized remediation operations
|
|
91
91
|
- VS Code extension: Node CVE Remediator for editor-side scanning and fix actions
|
|
@@ -96,6 +96,8 @@ Patch lifecycle operations are exposed consistently:
|
|
|
96
96
|
- SDK: `listPatchArtifacts`, `inspectPatchArtifact`, `validatePatchArtifact`
|
|
97
97
|
- MCP and OpenAPI: equivalent patch lifecycle operations
|
|
98
98
|
|
|
99
|
+
Non-security maintenance via `updateOutdated` (CLI: `autoremediator update-outdated`) bumps all outdated npm packages with policy controls, evidence, and optional PR creation — no CVE ID required.
|
|
100
|
+
|
|
99
101
|
## Designed for agentic workflows
|
|
100
102
|
|
|
101
103
|
Recommended orchestration flow:
|