@clear-capabilities/agentic-security-scanner 0.119.1 → 0.119.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.119.2 — plugin manifest validation fixes
4
+
5
+ Manifest/packaging hotfix; no functional change to the scanner.
6
+
7
+ - `commands/fix.md`: quoted the `description:` frontmatter value. The unquoted
8
+ colon-space (`Remediate findings: --one …`) parsed as a nested YAML mapping,
9
+ which `claude plugin validate` rejected — and would have caused the command to
10
+ load with all frontmatter fields silently dropped at runtime.
11
+ - `.claude-plugin/plugin.json`: dropped the unknown `vendor` field (Claude Code
12
+ ignores it at load time; the company already lives in `author`).
13
+ - Removed stray gitignored `.agentic-security/` runtime artifacts (regenerated
14
+ DPIA/threat-model output) from under `agents/` and `commands/`, where the
15
+ validator was mis-reading them as plugin agents/commands.
16
+
17
+ `claude plugin validate` now passes; the two remaining warnings
18
+ (`agents/_CONFINEMENT.md` and the root `CLAUDE.md`) are by-design per the
19
+ underscore-doc convention enforced in `plugin-self-check.test.js`.
20
+
3
21
  ## 0.119.1 — packaging: exclude internal scan-state from the npm tarball
4
22
 
5
23
  Packaging-only hotfix for the `@clear-capabilities/agentic-security-scanner` npm
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clear-capabilities/agentic-security-scanner",
3
- "version": "0.119.1",
3
+ "version": "0.119.2",
4
4
  "description": "Scanner engine for the agentic-security Claude Code plugin — SAST, SCA (function-level reachability + CISA KEV), secrets, IaC, prompt-injection, MCP/agent-tool audit, auth/authZ deep analysis, attack chains, PoC generation, business logic, toxic-combinations scoring, SBOM, SARIF ingest, pipeline integrity, compliance attestation, and more.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",