@0xsarwagya/ontoly-core 0.1.0-alpha.13 → 0.1.0-alpha.15
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 +12 -2
- package/dist/index.js +444 -47
- package/dist/index.js.map +1 -1
- package/dist/semantic-index.d.ts +1 -1
- package/dist/semantic-index.d.ts.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,6 +4,16 @@ Software Graph schema, stable IDs, indexes, and graph helpers for Ontoly.
|
|
|
4
4
|
|
|
5
5
|
This package is part of [Ontoly](https://github.com/0xsarwagya/ontoly), a TypeScript-native software intelligence engine that builds a deterministic Software Graph.
|
|
6
6
|
|
|
7
|
+
## Responsibility
|
|
8
|
+
|
|
9
|
+
`@0xsarwagya/ontoly-core` is the innermost package. It owns Software Graph
|
|
10
|
+
contracts, stable IDs, graph helpers, graph validation primitives, and shared
|
|
11
|
+
graph/index data structures. It does not discover repositories, parse source,
|
|
12
|
+
run the compiler pipeline, expose transport, or render artifacts.
|
|
13
|
+
|
|
14
|
+
See the repository [architecture map](../../ARCHITECTURE.md) for package
|
|
15
|
+
boundaries.
|
|
16
|
+
|
|
7
17
|
## Installation
|
|
8
18
|
|
|
9
19
|
```bash
|
|
@@ -12,10 +22,10 @@ pnpm add @0xsarwagya/ontoly-core
|
|
|
12
22
|
|
|
13
23
|
## Status
|
|
14
24
|
|
|
15
|
-
|
|
25
|
+
Public Preview package for Ontoly v0.1.0-alpha.15. The public API is versioned with the Software Graph and RFC process.
|
|
16
26
|
|
|
17
27
|
## Links
|
|
18
28
|
|
|
19
29
|
- [Repository](https://github.com/0xsarwagya/ontoly)
|
|
20
|
-
- [Documentation](https://
|
|
30
|
+
- [Documentation](https://ontoly.sarwagya.wtf)
|
|
21
31
|
- [Issues](https://github.com/0xsarwagya/ontoly/issues)
|