betterwithage commited on
Commit
70308cf
·
verified ·
1 Parent(s): 1812682

Update dataset card: pin uds-v0.3.0 release (sha256: 96a301140ef24c88...)

Browse files
Files changed (1) hide show
  1. README.md +60 -0
README.md ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - szl-holdings
5
+ - uds
6
+ - unified-decision-span
7
+ - doctrine-v6
8
+ ---
9
+
10
+ # SZLHOLDINGS/a11oy-source
11
+
12
+ Source mirror for [szl-holdings/a11oy](https://github.com/szl-holdings/a11oy) — part of the SZL Holdings Unified Decision Span (UDS) release train.
13
+
14
+ ## Latest Release: uds-v0.3.0
15
+
16
+ **Released:** 2026-05-29 | **Doctrine:** v6 (strict) | **Source:** [github.com/szl-holdings/a11oy](https://github.com/szl-holdings/a11oy/releases/tag/uds-v0.3.0)
17
+
18
+ | Field | Value |
19
+ |-------|-------|
20
+ | Tag | `uds-v0.3.0` |
21
+ | Source commit | `663e7c3eb11ca5e299f04f7619e926f962620b91` |
22
+ | Tarball | `a11oy-uds-0.3.0.tar.zst` |
23
+ | Size | 10,539,040 bytes |
24
+ | SHA256 | `96a301140ef24c886718e91d122ade83b8db26696ec48681b46653cd753410b8` |
25
+ | Signing | PENDING — cosign key escrow required (see GitHub release notes) |
26
+ | GitHub release | https://github.com/szl-holdings/a11oy/releases/tag/uds-v0.3.0 |
27
+
28
+ ### Verify SHA256
29
+
30
+ ```bash
31
+ pip install huggingface_hub
32
+ python3 -c "
33
+ from huggingface_hub import hf_hub_download
34
+ p = hf_hub_download('SZLHOLDINGS/a11oy-source', 'a11oy-uds-0.3.0.tar.zst', repo_type='dataset')
35
+ import hashlib
36
+ with open(p,'rb') as f: data=f.read()
37
+ print(hashlib.sha256(data).hexdigest())
38
+ "
39
+ # Expected: 96a301140ef24c886718e91d122ade83b8db26696ec48681b46653cd753410b8
40
+ ```
41
+
42
+ ### Cosign Verify (once signing complete)
43
+
44
+ ```bash
45
+ cosign verify-blob \
46
+ --key a11oy-uds-dev.pub \
47
+ --signature a11oy-uds-0.3.0.tar.zst.sig \
48
+ a11oy-uds-0.3.0.tar.zst
49
+ ```
50
+
51
+ Org dev public key (P-256 ECDSA):
52
+ ```
53
+ -----BEGIN PUBLIC KEY-----
54
+ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIcKzhZ7zCKrBDcmdaBGUOpNyJvRj
55
+ 4wkQ8nftahptyPXzH613e3mYyhtkH1mxFM0fNCra17wkBvorFNPuolNZRQ==
56
+ -----END PUBLIC KEY-----
57
+ ```
58
+
59
+ ---
60
+