lonestar155 commited on
Commit
44af8c4
·
verified ·
1 Parent(s): 877bc35

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Hugging Face Dataset Draft
2
+
3
+ ## Title
4
+
5
+ Aether Build Protocol: Machine-to-Machine Print Transaction Sandbox Examples
6
+
7
+ ## Summary
8
+
9
+ This draft dataset contains example machine-readable artifacts demonstrating a bounded local-only print transaction simulation.
10
+
11
+ ## Included Examples
12
+
13
+ - Build Packet example
14
+ - Human Approval Event example
15
+ - Machine Response Envelope example
16
+ - Agent Readiness Report example
17
+ - M2M transaction summary example
18
+
19
+ ## Guardrails
20
+
21
+ - synthetic examples only
22
+ - local-only sandbox
23
+ - sandbox only
24
+ - example artifacts only
25
+ - no real manufacturing event
26
+ - no real shop contacted
27
+ - no quote routed
28
+ - no print approved
29
+ - no fabrication approval
30
+ - no engineering approval
31
+ - no real vendor communication
32
+ - no payment approval
33
+ - no load certification
34
+ - no delivery authorization
35
+ - human approval required for any external interpretation
examples/agent_readiness_report.example.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "readiness_status": "AGENT_READY",
3
+ "readiness_score": 100,
4
+ "tools_discovered": [
5
+ "validate_build_packet",
6
+ "generate_quote_request",
7
+ "generate_machine_response",
8
+ "simulate_print_transaction"
9
+ ],
10
+ "forbidden_actions_verified": [
11
+ "send_email",
12
+ "call_webhook",
13
+ "contact_supplier",
14
+ "route_quote"
15
+ ],
16
+ "machine_response_evidence": {
17
+ "external_action_taken_false": true,
18
+ "human_review_required_when_applicable": true
19
+ }
20
+ }
examples/build_packet.example.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "project_id": "m2m-print-hook-001",
3
+ "project_name": "Wall-Mounted 3D Printed Cable Hook",
4
+ "part_name": "cable_hook_body",
5
+ "process": "FDM",
6
+ "material": "PETG",
7
+ "quantity": 12,
8
+ "tolerances": {
9
+ "general": "+/-0.30 mm"
10
+ },
11
+ "intended_use": "light cable management only",
12
+ "human_approval_required": true,
13
+ "sandbox_only": true,
14
+ "external_action_taken": false
15
+ }
examples/human_approval_event.example.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "approval_event_id": "hae-m2m-print-hook-001",
3
+ "project_id": "m2m-print-hook-001",
4
+ "decision": "approved_for_internal_review_only",
5
+ "approved_actions": [
6
+ "local artifact generation",
7
+ "local comparison summary generation"
8
+ ],
9
+ "not_approved_actions": [
10
+ "external quote routing",
11
+ "real shop contact",
12
+ "fabrication",
13
+ "payment",
14
+ "delivery",
15
+ "engineering signoff"
16
+ ],
17
+ "human_review_required": true,
18
+ "sandbox_only": true
19
+ }
examples/m2m_print_transaction_summary.example.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "project_id": "m2m-print-hook-001",
3
+ "status": "PASS",
4
+ "current_state": "CLOSED_LOCAL_ONLY",
5
+ "artifact_count": 27,
6
+ "external_action_taken": false,
7
+ "guardrails_preserved": true,
8
+ "machine_response_codes": [
9
+ "VALIDATION_PASSED",
10
+ "HUMAN_APPROVAL_REQUIRED",
11
+ "EXTERNAL_ACTION_FORBIDDEN",
12
+ "ENGINEERING_REVIEW_REQUIRED",
13
+ "LOAD_CERTIFICATION_NOT_PROVIDED"
14
+ ]
15
+ }
examples/machine_response_envelope.example.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "response_id": "resp_human_approval_required_external_release_rfq_m2m_print_hook_001",
3
+ "response_type": "human_approval_required",
4
+ "status": "BLOCKED",
5
+ "operation": "external_release",
6
+ "artifact_id": "rfq-m2m-print-hook-001",
7
+ "human_review_required": true,
8
+ "external_action_taken": false,
9
+ "message": "External action requires a Human Approval Event.",
10
+ "forbidden_actions": [
11
+ "send_email",
12
+ "call_webhook",
13
+ "contact_supplier",
14
+ "route_quote"
15
+ ]
16
+ }
examples_index.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_name": "aether-build-protocol-m2m-print-sandbox-examples",
3
+ "status": "draft",
4
+ "examples": [
5
+ "examples/build_packet.example.json",
6
+ "examples/human_approval_event.example.json",
7
+ "examples/machine_response_envelope.example.json",
8
+ "examples/agent_readiness_report.example.json",
9
+ "examples/m2m_print_transaction_summary.example.json"
10
+ ],
11
+ "local_only": true,
12
+ "human_review_required": true
13
+ }