superbee 0.1.6-pre.1 → 0.2.1-pre.1
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 +10 -4
- package/SKILL.md +6 -0
- package/dist/publication-bridge.mjs +556 -1200
- package/dist/publication.mjs +1154 -1790
- package/dist/superbee.mjs +5613 -4543
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -48,9 +48,8 @@ Ubuntu, or Docker. On Windows, Superbee keeps per-user operational state under
|
|
|
48
48
|
|
|
49
49
|
Superbee currently has two npm release channels:
|
|
50
50
|
|
|
51
|
-
- `latest` is the stable channel selected by bare `superbee
|
|
52
|
-
|
|
53
|
-
- `next` is the prerelease channel. It contains the current native-Windows build.
|
|
51
|
+
- `latest` is the stable channel selected by bare `superbee`, including native Windows support.
|
|
52
|
+
- `next` is the prerelease channel for testing the current release candidate.
|
|
54
53
|
|
|
55
54
|
Install the current prerelease on Windows:
|
|
56
55
|
|
|
@@ -90,9 +89,16 @@ instructions into CLI commands. For example:
|
|
|
90
89
|
|
|
91
90
|
Behind those requests, the agent drives a small, predictable CLI: `init` creates a bundle in a
|
|
92
91
|
conventional `.superbee/` folder (discovered automatically, the way git finds `.git`); `new`,
|
|
93
|
-
`doc write`, `doc update`, and `link add` create and connect typed documents; `list` and
|
|
92
|
+
`doc write`, `doc update`, `doc field`, and `link add` create and connect typed documents; `list` and
|
|
94
93
|
`doc read` query them; `sync` shares the board with teammates.
|
|
95
94
|
|
|
95
|
+
Use `superbee doc field <action> <document-id> <field-name>` to change one field.
|
|
96
|
+
`set` assigns a supported non-collection field; `add` and `remove` change tags or sources;
|
|
97
|
+
`edit` changes a selected source; `replace-all` replaces the complete tags or sources list.
|
|
98
|
+
`edit` and `replace-all` require `--expected-version` from a document read. Source selectors
|
|
99
|
+
use an exact `--id` or a unique `--resource` for an ID-less source. Supply structured values
|
|
100
|
+
through a JSON or YAML `--from-file`. Verification remains `doc verify`.
|
|
101
|
+
|
|
96
102
|
When you want to see the knowledge yourself, ask the agent to open it — or run the two
|
|
97
103
|
human-facing commands directly:
|
|
98
104
|
|
package/SKILL.md
CHANGED
|
@@ -46,6 +46,11 @@ becoming a second source of truth. Add only the layer justified by current evide
|
|
|
46
46
|
|
|
47
47
|
- Operate only on the bundle resolved from the current project or one the user explicitly selects.
|
|
48
48
|
A catalog entry is available for selection; it is not ambient project context.
|
|
49
|
+
- Before remote publication, ask whether the intended remote repository exists, then whether
|
|
50
|
+
`origin/board` exists. If either is unknown, stop remote mutation and diagnose access.
|
|
51
|
+
- Superbee does not create the remote repository. If absence is confirmed, create it externally if authorized, or ask an authorized owner/teammate.
|
|
52
|
+
- On an existing repository without `board`, establishment needs consent, repository-specific Write access,
|
|
53
|
+
and branch-create policy clearance; creation authority is irrelevant. If `origin/board` exists, join with `superbee sync`; never establish another board.
|
|
49
54
|
- If no bundle resolves, determine whether this repository already shares a board and clarify the
|
|
50
55
|
intended purpose, privacy, participants, and sharing boundary before creating anything.
|
|
51
56
|
`superbee sync` joins an existing shared board; `superbee init --create-only --dir .superbee` is
|
|
@@ -54,6 +59,7 @@ becoming a second source of truth. Add only the layer justified by current evide
|
|
|
54
59
|
explicit publication decision.
|
|
55
60
|
- Never silently rewrite an established Kind, recipe, or its instances. Inspect dependencies and
|
|
56
61
|
explain migration consequences first.
|
|
62
|
+
- Writes carry an actor (`--actor`/`SUPERBEE_ACTOR`); OKF v0.2 bundles accept only `human:<id>`, `process:<id>`, or `<producer>/<version>` (e.g. `openai/codex`); a bare name is refused with the fix.
|
|
57
63
|
|
|
58
64
|
## Deliver after acceptance
|
|
59
65
|
|