ont-run 0.0.9 → 0.0.10
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 +6 -0
- package/dist/bin/ont.js +3334 -1230
- package/dist/index.js +4 -1
- package/dist/src/index.d.ts +3 -0
- package/package.json +12 -2
- package/src/browser/server.ts +2002 -114
- package/src/cli/commands/init.ts +397 -66
- package/src/index.ts +5 -0
package/README.md
CHANGED
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
A web framework designed for the era of coding agents. You define the ontology—what operations exist and who can perform them. AI writes the implementation.
|
|
6
6
|
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
https://github.com/user-attachments/assets/93fbf862-aca3-422d-8f0c-1fc1e4510d88
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
7
13
|
```typescript
|
|
8
14
|
// ontology.config.ts
|
|
9
15
|
import { defineOntology, z } from 'ont-run';
|