Nicholastempleman commited on
Commit
b117491
·
1 Parent(s): 643b165

UNMEASURED signed coverage + input-schema + skeleton + pinned eval.yaml. Cite GET /api/gspc. Not a grade. No composite. (#8)

Browse files

- UNMEASURED signed coverage + input-schema + skeleton + pinned eval.yaml. Cite GET /api/gspc. Not a grade. No composite. (f9ff907288569eadf383b86dfc81d1b157944e8f)

Files changed (4) hide show
  1. coverage-card.json +35 -0
  2. eval.yaml +12 -4
  3. input-schema.json +28 -0
  4. skeleton.json +25 -0
coverage-card.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "as_of": "2026-08-31T14:16:11Z",
3
+ "did": "did:web:csoai.org#board-attestation-1",
4
+ "payload": {
5
+ "axis": "regulatory-framework",
6
+ "cite": "https://councilof.ai/api/gspc",
7
+ "compute_composite": false,
8
+ "do_not_invent_percentage": true,
9
+ "kind": "gspc.coverage-card/0.1",
10
+ "metamask_is_signer": false,
11
+ "n": 0,
12
+ "not_a_grade": true,
13
+ "schema": "csoai.gspc-axes/0.5",
14
+ "status": "UNMEASURED",
15
+ "task": "is the governing regime declared and confirmable?"
16
+ },
17
+ "schema": "https://councilof.ai/schema/card-v0.json",
18
+ "sha256": "544834c32f4a4a75692b9bb725888b19f091d5f157f43af66802b0962560fe92",
19
+ "sig_ed25519": "e0dea7f3e1d7769c4a6fb105921b18f281e9c16dd97ad6eb438497926744c2a09dc543b0e90abadfa4af476e9f89b6759fd2a1693ba3064ba9b89f0a067b4608",
20
+ "source_urls": [
21
+ "https://councilof.ai/api/gspc",
22
+ "https://huggingface.co/datasets/csoai/gspc-regulatory-framework"
23
+ ],
24
+ "subject": "GSPC regulatory-framework UNMEASURED coverage",
25
+ "surface": "public.notice",
26
+ "tags": [
27
+ "coverage:UNMEASURED",
28
+ "not-a-grade",
29
+ "no-composite"
30
+ ],
31
+ "unmeasured": [
32
+ "regulatory-framework",
33
+ "n=0"
34
+ ]
35
+ }
eval.yaml CHANGED
@@ -32,9 +32,13 @@ axes:
32
  series_id: isoc_eb_ai
33
  pin: "Eurostat isoc_eb_ai · 13.48% · vintage 2024 · fetched 2026-08-25"
34
  - id: anthropic_economic_index
35
- role: cited_component_unmeasured_until_pinned_release
36
  dataset: Anthropic/EconomicIndex
37
- caveat: "Claude usage is not the economy"
 
 
 
 
38
  - id: compute_price
39
  role: gap
40
  - id: ai_investment
@@ -50,9 +54,13 @@ axes:
50
  role: reference_input
51
  pin: "5.92% · vintage 2024 · fetched 2026-08-25"
52
  - id: anthropic_index_labour
53
- role: cited_component_unmeasured_until_pinned_release
54
  dataset: Anthropic/EconomicIndex
55
- caveat: "O*NET/SOC mapped Claude usage, not the labour market"
 
 
 
 
56
  - id: displacement
57
  role: gap
58
  - id: humanoid-labour-index
 
32
  series_id: isoc_eb_ai
33
  pin: "Eurostat isoc_eb_ai · 13.48% · vintage 2024 · fetched 2026-08-25"
34
  - id: anthropic_economic_index
35
+ role: reference_input
36
  dataset: Anthropic/EconomicIndex
37
+ revision: "2ea58ff75e4247d26810c37f10c179edc2466cac"
38
+ release: "release_2026_06_26"
39
+ pin: "June 2026 Cadences · Hugging Face Anthropic/EconomicIndex@2ea58ff75e4247d26810c37f10c179edc2466cac · lastModified 2026-06-26"
40
+ compute_composite: false
41
+ caveat: "Claude usage is not the economy. Cited component only."
42
  - id: compute_price
43
  role: gap
44
  - id: ai_investment
 
54
  role: reference_input
55
  pin: "5.92% · vintage 2024 · fetched 2026-08-25"
56
  - id: anthropic_index_labour
57
+ role: reference_input
58
  dataset: Anthropic/EconomicIndex
59
+ revision: "2ea58ff75e4247d26810c37f10c179edc2466cac"
60
+ release: "release_2026_06_26"
61
+ pin: "June 2026 Cadences · Anthropic/EconomicIndex@2ea58ff75e4247d26810c37f10c179edc2466cac · labor_market_impacts / release_2026_06_26"
62
+ compute_composite: false
63
+ caveat: "O*NET/SOC mapped Claude usage, not the labour market. Cited component only."
64
  - id: displacement
65
  role: gap
66
  - id: humanoid-labour-index
input-schema.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "title": "GSPC FIN coverage input",
4
+ "type": "object",
5
+ "required": [
6
+ "axis",
7
+ "status",
8
+ "unmeasured"
9
+ ],
10
+ "properties": {
11
+ "axis": {
12
+ "type": "string"
13
+ },
14
+ "status": {
15
+ "const": "UNMEASURED"
16
+ },
17
+ "unmeasured": {
18
+ "type": "array",
19
+ "items": {
20
+ "type": "string"
21
+ }
22
+ },
23
+ "n": {
24
+ "type": "integer",
25
+ "maximum": 0
26
+ }
27
+ }
28
+ }
skeleton.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "as_of_mined": "2026-08-31",
3
+ "axis": "regulatory-framework",
4
+ "columns": [
5
+ "subject",
6
+ "issuer",
7
+ "regime_declared",
8
+ "regime_name",
9
+ "confirmable",
10
+ "source_url",
11
+ "as_of",
12
+ "unmeasured"
13
+ ],
14
+ "companies_house": "16939677",
15
+ "did": "did:web:csoai.org",
16
+ "issuer": "CSOAI Ltd",
17
+ "license": "CC-BY-4.0",
18
+ "rows": [],
19
+ "rule": "UNMEASURED-first. A skeleton is not a score. Board GET /api/gspc is authority.",
20
+ "status": "UNMEASURED",
21
+ "task": "is the governing regime declared and confirmable?",
22
+ "unmeasured": [
23
+ "no_run"
24
+ ]
25
+ }