betterwithage commited on
Commit
bc62944
·
verified ·
1 Parent(s): b95257e

Update dataset card: pin uds-v0.3.0 release (sha256: 44727fdcb89027ae...)

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/uds-mesh-source
11
+
12
+ Source mirror for [szl-holdings/uds-mesh](https://github.com/szl-holdings/uds-mesh) — 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/uds-mesh](https://github.com/szl-holdings/uds-mesh/releases/tag/uds-v0.3.0)
17
+
18
+ | Field | Value |
19
+ |-------|-------|
20
+ | Tag | `uds-v0.3.0` |
21
+ | Source commit | `3c87c520421fb5d682cfd74e543ecb50affb9c12` |
22
+ | Tarball | `uds-mesh-uds-0.3.0.tar.zst` |
23
+ | Size | 69,606 bytes |
24
+ | SHA256 | `44727fdcb89027aed39d39e821302c5e60e2bf2d1d3f5504b508e7099b742eb6` |
25
+ | Signing | PENDING — cosign key escrow required (see GitHub release notes) |
26
+ | GitHub release | https://github.com/szl-holdings/uds-mesh/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/uds-mesh-source', 'uds-mesh-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: 44727fdcb89027aed39d39e821302c5e60e2bf2d1d3f5504b508e7099b742eb6
40
+ ```
41
+
42
+ ### Cosign Verify (once signing complete)
43
+
44
+ ```bash
45
+ cosign verify-blob \
46
+ --key uds-mesh-uds-dev.pub \
47
+ --signature uds-mesh-uds-0.3.0.tar.zst.sig \
48
+ uds-mesh-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
+