agentic-scorecard 0.3.0 → 0.4.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/AGENT_PROMPT.md +68 -52
- package/README.md +50 -37
- package/benchmark/v0.4/adapter-contract.md +129 -0
- package/benchmark/v0.4/adapters/known-agent-harnesses.yaml +266 -0
- package/benchmark/v0.4/adapters/known-ci-providers.yaml +57 -0
- package/benchmark/v0.4/adapters/known-command-wrappers.yaml +37 -0
- package/benchmark/v0.4/adapters/known-environment-tooling.yaml +17 -0
- package/benchmark/v0.4/adapters/known-github-conventions.yaml +27 -0
- package/benchmark/v0.4/adapters/known-python-tooling.yaml +15 -0
- package/benchmark/v0.4/adapters/known-security-tools.yaml +45 -0
- package/benchmark/v0.4/adapters/known-verification-tools.yaml +65 -0
- package/benchmark/v0.4/agent-evidence-schema.json +74 -0
- package/benchmark/v0.4/attestation-schema.json +35 -0
- package/benchmark/v0.4/benchmark.yaml +127 -0
- package/benchmark/v0.4/calibration-matrix.md +60 -0
- package/benchmark/v0.4/controls/context.yaml +75 -0
- package/benchmark/v0.4/controls/environment.yaml +93 -0
- package/benchmark/v0.4/controls/governance.yaml +132 -0
- package/benchmark/v0.4/controls/learning.yaml +78 -0
- package/benchmark/v0.4/controls/observability.yaml +91 -0
- package/benchmark/v0.4/controls/resilience.yaml +170 -0
- package/benchmark/v0.4/controls/security.yaml +143 -0
- package/benchmark/v0.4/controls/specification.yaml +65 -0
- package/benchmark/v0.4/controls/testing.yaml +82 -0
- package/benchmark/v0.4/controls/tooling.yaml +69 -0
- package/benchmark/v0.4/report-schema.json +89 -0
- package/benchmark/v0.4/scoring-policy.md +175 -0
- package/dist/cli.js +2315 -162
- package/package.json +3 -2
- package/templates/agent-evidence.yaml +2 -2
- package/templates/attestations.yaml +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-scorecard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Vendor-neutral, evidence-backed readiness benchmark for agentic software development harnesses.",
|
|
5
5
|
"author": "Planet B2B Inc. <benchmark@planetb2b.com>",
|
|
6
6
|
"homepage": "https://github.com/Planet-B2B/agentic-readiness#readme",
|
|
@@ -34,9 +34,10 @@
|
|
|
34
34
|
"lint": "eslint .",
|
|
35
35
|
"format": "prettier --write .",
|
|
36
36
|
"format:check": "prettier --check .",
|
|
37
|
+
"check:agent-docs": "tsx scripts/check-agent-docs.ts",
|
|
37
38
|
"validate:benchmark": "tsx src/cli.ts validate",
|
|
38
39
|
"self-assess": "tsx src/cli.ts assess . --profile planning --format markdown",
|
|
39
|
-
"check": "npm run format:check && npm run lint && npm run typecheck && npm test && npm run validate:benchmark && npm run build"
|
|
40
|
+
"check": "npm run format:check && npm run lint && npm run typecheck && npm run check:agent-docs && npm test && npm run validate:benchmark && npm run build"
|
|
40
41
|
},
|
|
41
42
|
"engines": {
|
|
42
43
|
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Normally generated with `agentic-scorecard init-evidence .` so the target is bound correctly.
|
|
2
2
|
# Use authorized read-only tools. Never paste credentials or raw sensitive content.
|
|
3
|
-
schema_version: 0.
|
|
4
|
-
benchmark_version: 0.
|
|
3
|
+
schema_version: 0.4.0
|
|
4
|
+
benchmark_version: 0.4.0
|
|
5
5
|
target:
|
|
6
6
|
repository: https://example.invalid/owner/repository.git
|
|
7
7
|
git_head: 'TODO: generated by init-evidence'
|