swt3-ai 0.6.5 → 0.7.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.
- checksums.yaml +4 -4
- data/README.md +21 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c4177e65ff1e28a22579c6a925b75594280ea28efbd71be729c39b070bf23a9c
|
|
4
|
+
data.tar.gz: db3b75d6f1c21ba9420b9186852739f64d6abd76173a805f04dae3ebebf702b9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 596e0444f61aa0fe6ac81efa3f2ab1db537f00cee25d711163ea80d5f3a50279d257ad9bde3a2d784a26d21b7c5470570eabf7cc2ac2fedbca3c2de0a895eece
|
|
7
|
+
data.tar.gz: 6147f6be2921faaf28fea1d131b058dd38a25e81de098f58b2727838a2e1c1238ead20e84c6e452fc818fda6b93c5b99ad16dd72c56b28403d6be62b45315dc3
|
data/README.md
CHANGED
|
@@ -11,6 +11,26 @@ Built for platform engineers who need to bolt compliance witnessing onto product
|
|
|
11
11
|
|
|
12
12
|
EU AI Act GPAI transparency obligations enforced since **August 2, 2026**. High-risk enforcement follows **December 2, 2027**. This SDK gives you the cryptographic primitives for both.
|
|
13
13
|
|
|
14
|
+
## What's New in v0.7.0
|
|
15
|
+
|
|
16
|
+
AI does not run in a vacuum. It authenticates with service accounts, runs on hardware with supply chains, and consumes enough electricity to reshape power grids. v0.7.0 extends SWT3 down the full AI infrastructure stack with 22 new procedures across three families: credential governance (NHI), hardware supply chains (HBOM/DPP), and energy management (ADR). Every new anchor type verifies with the existing `Swt3Ai::Fingerprint.mint_fingerprint` method -- no gem update required.
|
|
17
|
+
|
|
18
|
+
**Why this matters for Ruby:** Rails dashboards and Sidekiq workers are where AI data flows through enterprise systems. These new procedure families mean your Ruby monitoring layer can process credential rotation anchors, hardware inventory attestations, and demand response settlements alongside inference anchors -- same verifiable fingerprint structure, same verification call, new evidence categories. When your Python team witnesses service account rotation and your Ruby dashboard displays it, the fingerprint math is identical.
|
|
19
|
+
|
|
20
|
+
### 22 New Procedures
|
|
21
|
+
|
|
22
|
+
**NHI (6):** Credential scope, lifecycle, privilege changes, rotation, delegation, revocation. **HBOM/DPP (10):** Hardware inventory, component lifecycle, thermal monitoring, water, PUE, supply chain provenance, battery health, charge cycles, degradation, end-of-life. **ADR (6):** Demand response events, baseline, curtailment, settlement, carbon credits, grid signals.
|
|
23
|
+
|
|
24
|
+
- 266 procedures across 75 namespaces (was 118/64)
|
|
25
|
+
- 59 MCP tools (was 37)
|
|
26
|
+
- 10 SDK languages with byte-identical output
|
|
27
|
+
- 36 framework crosswalks, 237 compliance guides
|
|
28
|
+
- ~2,950 tests passing across 5 languages
|
|
29
|
+
|
|
30
|
+
## What's New in v0.6.6
|
|
31
|
+
|
|
32
|
+
Supply chain accountability. Four new procedures, a CI/CD gate action, and OTel GenAI conventions across the ecosystem. Every improvement flows through to Ruby because fingerprints are identical across all 10 languages.
|
|
33
|
+
|
|
14
34
|
## What's New in v0.6.5
|
|
15
35
|
|
|
16
36
|
Scale governance. The protocol grew features that matter at GPAI scale, and every improvement flows through to Ruby because fingerprints are identical across all 10 languages.
|
|
@@ -224,7 +244,7 @@ All SWT3 SDKs produce identical fingerprints from the same inputs. A unified aud
|
|
|
224
244
|
| Python ML pipeline | [swt3-ai (PyPI)](https://pypi.org/project/swt3-ai/) | Full witness pipeline: `wrap(client)`, buffer management, clearing engine, 21 adapters (OpenAI, Anthropic, Bedrock, vLLM, Ollama, LiteLLM, LangChain, CrewAI, etc.) |
|
|
225
245
|
| TypeScript/Node API | [@tenova/swt3-ai (npm)](https://www.npmjs.com/package/@tenova/swt3-ai) | ES6 Proxy wrapping, streaming support, Vercel AI SDK adapter, OTel export |
|
|
226
246
|
| Rails, Sidekiq, Grape, Hanami | **swt3-ai (this gem)** | Fingerprint, signing, and verification primitives. Embed witnessing into controllers, workers, middleware, or rake tasks |
|
|
227
|
-
| MCP-enabled agents | [@tenova/swt3-mcp](https://www.npmjs.com/package/@tenova/swt3-mcp) |
|
|
247
|
+
| MCP-enabled agents | [@tenova/swt3-mcp](https://www.npmjs.com/package/@tenova/swt3-mcp) | 37 MCP tools, transport middleware for zero-code witnessing |
|
|
228
248
|
|
|
229
249
|
Your Python team trains the model and wraps inference with the full pipeline. Your Ruby infrastructure witnesses every downstream decision, API call, and background job that touches the model's output. Same fingerprints, same anchors, same audit trail.
|
|
230
250
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: swt3-ai
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- TeNova Labs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-09-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Mint, verify, and sign SWT3 witness anchors for AI compliance. EU AI
|
|
14
14
|
Act, NIST AI RMF, CMMC, SR 11-7. Cross-language parity with Python and TypeScript
|
|
@@ -52,6 +52,6 @@ requirements: []
|
|
|
52
52
|
rubygems_version: 3.4.20
|
|
53
53
|
signing_key:
|
|
54
54
|
specification_version: 4
|
|
55
|
-
summary: 'SWT3 AI Witness SDK: cryptographic attestation for AI inference
|
|
56
|
-
|
|
55
|
+
summary: 'SWT3 AI Witness SDK: cryptographic attestation for AI inference and infrastructure
|
|
56
|
+
governance. 266 procedures, 9 namespaces, 10 languages, 36 frameworks.'
|
|
57
57
|
test_files: []
|