agentic-scorecard 0.1.0 → 0.2.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 +60 -31
- package/FEEDBACK.md +53 -0
- package/README.md +96 -37
- package/benchmark/v0.2/adapter-contract.md +25 -0
- package/benchmark/v0.2/agent-evidence-schema.json +52 -0
- package/benchmark/v0.2/attestation-schema.json +26 -0
- package/benchmark/v0.2/benchmark.yaml +127 -0
- package/benchmark/v0.2/controls/context.yaml +51 -0
- package/benchmark/v0.2/controls/environment.yaml +70 -0
- package/benchmark/v0.2/controls/governance.yaml +60 -0
- package/benchmark/v0.2/controls/learning.yaml +48 -0
- package/benchmark/v0.2/controls/observability.yaml +76 -0
- package/benchmark/v0.2/controls/resilience.yaml +60 -0
- package/benchmark/v0.2/controls/security.yaml +71 -0
- package/benchmark/v0.2/controls/specification.yaml +62 -0
- package/benchmark/v0.2/controls/testing.yaml +60 -0
- package/benchmark/v0.2/controls/tooling.yaml +58 -0
- package/benchmark/v0.2/report-schema.json +47 -0
- package/benchmark/v0.2/scoring-policy.md +71 -0
- package/dist/cli.js +607 -102
- package/package.json +5 -3
- package/templates/agent-evidence.yaml +11 -0
- package/templates/attestations.yaml +4 -4
- package/templates/baseline.csv +1 -1
package/package.json
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-scorecard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Vendor-neutral, evidence-backed readiness benchmark for agentic software development harnesses.",
|
|
5
|
-
"author": "Planet B2B Inc.",
|
|
5
|
+
"author": "Planet B2B Inc. <benchmark@planetb2b.com>",
|
|
6
6
|
"homepage": "https://github.com/Planet-B2B/agentic-readiness#readme",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/Planet-B2B/agentic-readiness.git"
|
|
10
10
|
},
|
|
11
11
|
"bugs": {
|
|
12
|
-
"url": "https://github.com/Planet-B2B/agentic-readiness/issues"
|
|
12
|
+
"url": "https://github.com/Planet-B2B/agentic-readiness/issues",
|
|
13
|
+
"email": "benchmark@planetb2b.com"
|
|
13
14
|
},
|
|
14
15
|
"type": "module",
|
|
15
16
|
"bin": {
|
|
@@ -20,6 +21,7 @@
|
|
|
20
21
|
"benchmark/",
|
|
21
22
|
"templates/",
|
|
22
23
|
"AGENT_PROMPT.md",
|
|
24
|
+
"FEEDBACK.md",
|
|
23
25
|
"README.md",
|
|
24
26
|
"LICENSE",
|
|
25
27
|
"NOTICE"
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Normally generated with `agentic-scorecard init-evidence .` so the target is bound correctly.
|
|
2
|
+
# Use authorized read-only tools. Never paste credentials or raw sensitive content.
|
|
3
|
+
schema_version: 0.2.0
|
|
4
|
+
benchmark_version: 0.2.0
|
|
5
|
+
target:
|
|
6
|
+
repository: https://example.invalid/owner/repository.git
|
|
7
|
+
git_head: null
|
|
8
|
+
collector:
|
|
9
|
+
name: 'TODO: agent or adapter name'
|
|
10
|
+
version: TODO
|
|
11
|
+
claims: {}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
# Claims are
|
|
2
|
-
benchmark_version: 0.
|
|
1
|
+
# Claims are visibly human-attested. Link evidence; do not paste sensitive content.
|
|
2
|
+
benchmark_version: 0.2.0
|
|
3
3
|
attestations:
|
|
4
4
|
ADRB-TOL-003:
|
|
5
5
|
status: unknown
|
|
6
6
|
evidence: TODO link to least-privilege, authorization, audit, and fail-closed evidence
|
|
7
7
|
owner: TODO
|
|
8
|
-
reviewed_at: 2026-
|
|
9
|
-
expires_at:
|
|
8
|
+
reviewed_at: 2026-07-17
|
|
9
|
+
expires_at: 2026-10-15
|
package/templates/baseline.csv
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
repository,benchmark_version,target_profile,assessment_date,total_score,highest_profile,
|
|
1
|
+
repository,benchmark_version,target_profile,assessment_scope,git_head,assessment_date,total_score,highest_profile,repository_detected_controls,agent_collected_controls,attested_controls,owner,report_reference
|