@panaversity/ksor 0.0.0
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/LICENSE +202 -0
- package/README.md +1323 -0
- package/bin/ksor.js +22 -0
- package/package.json +39 -0
package/bin/ksor.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// The placeholder CLI. It exists so that `npx ksor` answers honestly rather than
|
|
3
|
+
// failing with a module error — the same rule the implementation holds itself to:
|
|
4
|
+
// an unimplemented verb says so, names what does exist, and exits non-zero.
|
|
5
|
+
//
|
|
6
|
+
// Exit 2 is deliberate and matches the framework's own convention: 2 means "this
|
|
7
|
+
// verb is not implemented in this build", distinct from 1 (refused / bad input)
|
|
8
|
+
// and 3 (environment). Nothing here should be taken as a released capability.
|
|
9
|
+
|
|
10
|
+
const pkg = require("../package.json");
|
|
11
|
+
|
|
12
|
+
process.stdout.write(
|
|
13
|
+
`ksor ${pkg.version} — the name is reserved; this is not a release.\n` +
|
|
14
|
+
"\n" +
|
|
15
|
+
"Knowledge System of Record: one governed source of markdown, published as a\n" +
|
|
16
|
+
"site people read and an MCP surface AI agents query — with citations, and an\n" +
|
|
17
|
+
"honest refusal when the corpus does not cover the question.\n" +
|
|
18
|
+
"\n" +
|
|
19
|
+
`Follow along: ${pkg.homepage}\n`,
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
process.exit(2);
|
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@panaversity/ksor",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Knowledge System of Record — the authoritative, governed source of knowledge that humans and AI agents operate from. Name reserved; implementation in progress.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "Panaversity",
|
|
7
|
+
"homepage": "https://github.com/panaversity/ksor#readme",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/panaversity/ksor.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/panaversity/ksor/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"knowledge-system-of-record",
|
|
17
|
+
"system-of-record",
|
|
18
|
+
"mcp",
|
|
19
|
+
"model-context-protocol",
|
|
20
|
+
"governance",
|
|
21
|
+
"provenance",
|
|
22
|
+
"citations",
|
|
23
|
+
"abstention",
|
|
24
|
+
"documentation",
|
|
25
|
+
"docusaurus"
|
|
26
|
+
],
|
|
27
|
+
"bin": {
|
|
28
|
+
"ksor": "bin/ksor.js"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"bin"
|
|
32
|
+
],
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=20"
|
|
35
|
+
},
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
}
|
|
39
|
+
}
|