LlewellynSystemsInc commited on
Commit
344f0f6
·
verified ·
1 Parent(s): 7ff7299

Rebuild org card: positioning, featured dataset, citation, well-known links

Browse files
Files changed (1) hide show
  1. README.md +102 -5
README.md CHANGED
@@ -1,10 +1,107 @@
1
  ---
2
- title: README
3
- emoji: 🏃
4
- colorFrom: green
5
- colorTo: yellow
6
  sdk: static
7
  pinned: false
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: Llewellyn Systems Inc
3
+ emoji: ⚜️
4
+ colorFrom: yellow
5
+ colorTo: red
6
  sdk: static
7
  pinned: false
8
  ---
9
 
10
+ <h1 align="center">⚜️ Llewellyn Systems Inc</h1>
11
+
12
+ <p align="center">
13
+ <strong>The Operating System for Decision &amp; Enterprise.</strong><br/>
14
+ Open datasets, open agent primitives, and open infrastructure for the agentic enterprise.
15
+ </p>
16
+
17
+ <p align="center">
18
+ <a href="https://www.llewellynsystems.com">llewellynsystems.com</a>
19
+ &nbsp;·&nbsp;
20
+ <a href="https://www.llewellynsystems.com/.well-known/mcp.json">MCP discovery</a>
21
+ &nbsp;·&nbsp;
22
+ <a href="https://www.llewellynsystems.com/.well-known/agents.json">agents.json</a>
23
+ &nbsp;·&nbsp;
24
+ <a href="https://www.llewellynsystems.com/.well-known/a2a.json">A2A protocol</a>
25
+ </p>
26
+
27
+ ---
28
+
29
+ ## What we publish here
30
+
31
+ We use Hugging Face to ship **the open layer** of our stack — the artifacts an enterprise AI ecosystem can actually be built on.
32
+
33
+ - **Datasets** — labeled enterprise operations data, agent-routing corpora, MCP intent traces.
34
+ - **Models** — small, focused classifiers and routers for orchestration (rolling out).
35
+ - **Spaces** — interactive demos of ODE agents, governance probes, and benchmarks (rolling out).
36
+
37
+ If you train on our data, route through our schema, or extend our agent layer — credit us, ship the work, and tell us about it.
38
+
39
+ ---
40
+
41
+ ## ⭐ Featured: ODE Enterprise Use Case Dataset
42
+
43
+ A first-of-its-kind labeled corpus of **15,000 enterprise use cases** spanning the full operational surface area of a modern company — procurement, finance, ITSM, supply chain, AI mesh, governance, robotics, and more.
44
+
45
+ | | |
46
+ |---|---|
47
+ | **Rows** | 15,000 |
48
+ | **Modules** | 31 (Procurement → AI Policy → Robotics → MDM) |
49
+ | **Submodules** | 215 |
50
+ | **Verticals** | 8 (Manufacturing, Healthcare, FinServ, Public Sector, Retail, SaaS, Logistics, Creator) |
51
+ | **Channels** | 5 (Web, Mobile, API, Voice, CLI) |
52
+ | **Personas** | 12 |
53
+ | **License** | CC-BY-4.0 (attribution required) |
54
+
55
+ **Built for:** training AI orchestrators, intent classification across multi-agent systems, MCP server routing, business process mining, and benchmarking how well LLMs actually understand enterprise operations.
56
+
57
+ → **[huggingface.co/datasets/LlewellynSystems/ode-enterprise-use-cases](https://huggingface.co/datasets/LlewellynSystems/ode-enterprise-use-cases)**
58
+
59
+ ```python
60
+ from datasets import load_dataset
61
+
62
+ ds = load_dataset(
63
+ "LlewellynSystems/ode-enterprise-use-cases",
64
+ data_files="use_cases_universal.csv",
65
+ )
66
+
67
+ # Agent routing: map free-text intent → (module, submodule)
68
+ for row in ds["train"].select(range(3)):
69
+ print(f"{row['title']} → {row['module']} / {row['submodule']}")
70
+ ```
71
+
72
+ ---
73
+
74
+ ## What we&apos;re building
75
+
76
+ Llewellyn Systems builds **ODE** — an enterprise operating system designed for an agentic workforce, not a human-only one.
77
+
78
+ - **19 production MCP servers** powering domain agents (finance, procurement, security, ops, AI policy, data lineage).
79
+ - **55 AI agent skills** orchestrated under a 5-layer governance framework with constitutional AI guardrails.
80
+ - **Open well-known endpoints** — every ODE deployment publishes `mcp.json`, `agents.json`, and `a2a.json` so other agents can discover and negotiate with it.
81
+
82
+ The artifacts we publish here are the slices of that stack that work better in the open: schemas, datasets, routing models, and reference agents.
83
+
84
+ ---
85
+
86
+ ## Citation
87
+
88
+ If our work shows up in your model, paper, product, or service — cite us.
89
+
90
+ ```bibtex
91
+ @misc{llewellyn_systems_hf_2026,
92
+ title = {Llewellyn Systems on Hugging Face: Open Datasets and Agent Primitives for the Enterprise},
93
+ author = {Llewellyn Systems Inc},
94
+ year = {2026},
95
+ url = {https://huggingface.co/LlewellynSystems}
96
+ }
97
+ ```
98
+
99
+ ---
100
+
101
+ ## Get in touch
102
+
103
+ - **Website** — [llewellynsystems.com](https://www.llewellynsystems.com)
104
+ - **Engineering / partnerships** — `llewellyn@llewellynsystems.com`
105
+ - **MCP &amp; A2A integrations** — start with the `.well-known/` endpoints linked above
106
+
107
+ <p align="center"><em>Open primitives. Sovereign infrastructure. Built to be built upon.</em></p>