@csc-protocol/core 1.0.0 → 1.0.1
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/README.md +36 -0
- package/package.json +9 -9
- package/train_dataset.jsonl +2 -0
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# @csc-protocol/core
|
|
2
|
+
|
|
3
|
+
Deterministic multi-dimensional evaluation protocol and cryptographic verification primitives for AI-to-AI governance and autonomous transactions.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
`@csc-protocol/core` defines immutable standard schemas and verification models across mission-critical domains (Healthcare, Institutional Governance, Enterprise Validation).
|
|
8
|
+
|
|
9
|
+
## Key Features
|
|
10
|
+
|
|
11
|
+
- **Immutable Schemas**: Fully deterministic JSON and TypeScript definitions for cross-agent evaluation.
|
|
12
|
+
- **Proof of Legitimacy (PoL)**: Cryptographic signature interfaces verifying autonomous AI decisions.
|
|
13
|
+
- **Edge-Ready**: Zero-dependency specifications optimized for ultra-low-latency edge validation.
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install @csc-protocol/core
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Quick Usage
|
|
22
|
+
|
|
23
|
+
```typescript
|
|
24
|
+
import { EvaluationPayload, ProofOfLegitimacy } from "@csc-protocol/core";
|
|
25
|
+
|
|
26
|
+
const payload: EvaluationPayload = {
|
|
27
|
+
domain: "corporate",
|
|
28
|
+
entityId: "CORP-GLOBAL-01",
|
|
29
|
+
metrics: { governanceScore: 95.5 },
|
|
30
|
+
timestamp: Date.now()
|
|
31
|
+
};
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Specification
|
|
35
|
+
|
|
36
|
+
Maintained under the CSC Autonomous Infrastructure Architecture.
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@csc-protocol/core",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "CSC Protocol",
|
|
5
|
-
"main": "index.d.ts",
|
|
6
|
-
"types": "index.d.ts",
|
|
7
|
-
"author": "CSC Architecture LLC",
|
|
8
|
-
"license": "UNLICENSED"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@csc-protocol/core",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "CSC Protocol",
|
|
5
|
+
"main": "index.d.ts",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"author": "CSC Architecture LLC",
|
|
8
|
+
"license": "UNLICENSED"
|
|
9
|
+
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
{"domain": "medical", "input": {"facility_id": "HOSP-01", "jurisdiction": "US_CMS", "metrics": {"readmission_rate": 5.4}}, "output": {"quality_index": 89.4, "status": "CSC_VALIDATED"}}
|
|
2
|
+
{"domain": "corporate", "input": {"entity_id": "CORP-01", "jurisdiction": "GLOBAL_PUBLIC", "metrics": {"governance_score": 92.0}}, "output": {"architecture_rating": "AAA", "status": "CSC_VALIDATED"}}
|