superbee 0.1.2 → 0.1.3-pre.2
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/SKILL.md +1 -1
- package/dist/superbee.mjs +40036 -39517
- package/package.json +31 -1
- package/references/sample-bundle/references/index.md +1 -1
- package/references/sample-bundle/references/okf-spec.md +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "superbee",
|
|
3
|
-
"version": "0.1.2",
|
|
3
|
+
"version": "0.1.3-pre.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Agent-facing Superbee CLI for reading and writing local OKF knowledge bundles: context notes, docs, cross-links, and live bundle Views.",
|
|
6
6
|
"keywords": [
|
|
@@ -35,5 +35,35 @@
|
|
|
35
35
|
},
|
|
36
36
|
"engines": {
|
|
37
37
|
"node": ">=20"
|
|
38
|
+
},
|
|
39
|
+
"os": [
|
|
40
|
+
"!win32"
|
|
41
|
+
],
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "node build.mjs local-dev",
|
|
44
|
+
"build:npm-package": "node build.mjs npm-package",
|
|
45
|
+
"typecheck": "tsc --noEmit",
|
|
46
|
+
"pretest": "node build.mjs local-dev",
|
|
47
|
+
"test": "ASLITE_NO_UPDATE_CHECK=1 AGENTSTATE_LITE_NO_AUTOPULL=1 GIT_AUTHOR_NAME=test-suite GIT_AUTHOR_EMAIL=test-suite@example.invalid GIT_COMMITTER_NAME=test-suite GIT_COMMITTER_EMAIL=test-suite@example.invalid node --test --import ./test/ts-loader.mjs ./test/*.test.ts",
|
|
48
|
+
"mutation": "ASLITE_NO_UPDATE_CHECK=1 AGENTSTATE_LITE_NO_AUTOPULL=1 GIT_AUTHOR_NAME=test-suite GIT_AUTHOR_EMAIL=test-suite@example.invalid GIT_COMMITTER_NAME=test-suite GIT_COMMITTER_EMAIL=test-suite@example.invalid stryker run",
|
|
49
|
+
"gen:skill": "node scripts/gen-skill.mjs",
|
|
50
|
+
"check:skill": "node scripts/gen-skill.mjs --check",
|
|
51
|
+
"prepublishOnly": "node -e \"console.error('superbee is released by .github/workflows/release.yml (npm stage publish); do not run npm publish here'); process.exit(1)\""
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
55
|
+
"@superbee/board-git": "*",
|
|
56
|
+
"@superbee/core": "*",
|
|
57
|
+
"@superbee/markdown-renderer": "*",
|
|
58
|
+
"@superbee/mcp-app": "*",
|
|
59
|
+
"@superbee/server": "*",
|
|
60
|
+
"@superbee/ui-server": "*",
|
|
61
|
+
"@toon-format/toon": "2.3.0",
|
|
62
|
+
"@types/node": "^22.0.0",
|
|
63
|
+
"axi-sdk-js": "0.1.8",
|
|
64
|
+
"esbuild": "0.25.12",
|
|
65
|
+
"jsonc-parser": "3.3.1",
|
|
66
|
+
"pako": "2.1.0",
|
|
67
|
+
"typescript": "^5.4.0"
|
|
38
68
|
}
|
|
39
69
|
}
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
---
|
|
2
2
|
type: Reference
|
|
3
3
|
title: Open Knowledge Format v0.1 (Draft)
|
|
4
|
-
description:
|
|
4
|
+
description: A version-scoped OKF v0.1 interop reference, not Superbee's cross-edition authority.
|
|
5
5
|
resource: https://github.com/GoogleCloudPlatform/knowledge-catalog/blob/main/okf/SPEC.md
|
|
6
6
|
tags: [okf, spec, reference]
|
|
7
|
-
timestamp: 2026-
|
|
7
|
+
timestamp: 2026-08-23T17:47:52Z
|
|
8
8
|
---
|
|
9
9
|
# Summary
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
This reference is scoped to OKF v0.1 interop; it is not the authority for
|
|
12
|
+
Superbee's v0.2 behavior or cross-edition compatibility. Open Knowledge Format
|
|
13
|
+
(OKF) v0.1 (Draft), published by Google Cloud in
|
|
12
14
|
`GoogleCloudPlatform/knowledge-catalog` under `okf/`, defines a "Knowledge
|
|
13
15
|
Bundle" as a directory tree of UTF-8 markdown files. Each non-reserved `.md`
|
|
14
16
|
file is a Concept whose ID is its path minus `.md`. The only required
|