@legioncodeinc/honeycomb 0.1.8 → 0.1.9
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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/bundle/cli.js +496 -74
- package/daemon/dashboard-app.js +23 -23
- package/daemon/index.js +1576 -769
- package/daemon/restart-helper.js +41 -0
- package/embeddings/embed-daemon.js +1 -1
- package/harnesses/claude-code/.claude-plugin/plugin.json +1 -1
- package/harnesses/claude-code/bundle/capture.js +45 -31
- package/harnesses/claude-code/bundle/index.js +45 -31
- package/harnesses/claude-code/bundle/pre-tool-use.js +45 -31
- package/harnesses/claude-code/bundle/session-end.js +45 -31
- package/harnesses/claude-code/bundle/session-start.js +45 -31
- package/harnesses/codex/bundle/capture.js +45 -31
- package/harnesses/codex/bundle/index.js +45 -31
- package/harnesses/codex/bundle/pre-tool-use.js +45 -31
- package/harnesses/codex/bundle/session-start.js +45 -31
- package/harnesses/codex/package.json +1 -1
- package/harnesses/cursor/bundle/capture.js +45 -31
- package/harnesses/cursor/bundle/index.js +45 -31
- package/harnesses/cursor/bundle/pre-tool-use.js +45 -31
- package/harnesses/cursor/bundle/session-end.js +45 -31
- package/harnesses/cursor/bundle/session-start.js +45 -31
- package/harnesses/openclaw/dist/index.js +1 -1
- package/harnesses/openclaw/openclaw.plugin.json +1 -1
- package/harnesses/openclaw/package.json +1 -1
- package/mcp/bundle/server.js +1 -1
- package/package.json +1 -1
|
@@ -978,38 +978,52 @@ var SKILL_ROW_DEFAULTS = Object.freeze({
|
|
|
978
978
|
});
|
|
979
979
|
|
|
980
980
|
// dist/src/commands/contracts.js
|
|
981
|
+
var VERB_GROUPS = Object.freeze([
|
|
982
|
+
{ key: "memory", label: "Memory & recall" },
|
|
983
|
+
{ key: "knowledge", label: "Knowledge & skills" },
|
|
984
|
+
{ key: "agents", label: "Agents, routing & config" },
|
|
985
|
+
{ key: "account", label: "Account & workspaces" },
|
|
986
|
+
{ key: "system", label: "Setup & system" }
|
|
987
|
+
]);
|
|
981
988
|
var VERB_TABLE = Object.freeze([
|
|
982
|
-
|
|
983
|
-
{ verb: "
|
|
984
|
-
{ verb: "
|
|
985
|
-
{ verb: "
|
|
986
|
-
{ verb: "
|
|
987
|
-
{ verb: "
|
|
988
|
-
{ verb: "
|
|
989
|
-
|
|
990
|
-
{ verb: "
|
|
991
|
-
{ verb: "
|
|
992
|
-
{ verb: "
|
|
993
|
-
{ verb: "
|
|
994
|
-
{ verb: "
|
|
995
|
-
{ verb: "
|
|
996
|
-
{ verb: "
|
|
997
|
-
|
|
998
|
-
{ verb: "
|
|
999
|
-
{ verb: "
|
|
1000
|
-
{ verb: "
|
|
1001
|
-
{ verb: "
|
|
1002
|
-
|
|
1003
|
-
{ verb: "
|
|
1004
|
-
{ verb: "
|
|
1005
|
-
{ verb: "whoami", cls: "auth", summary: "show the authenticated user, org, and workspace (GET /me)" },
|
|
1006
|
-
{ verb: "org", cls: "auth", summary: "list/switch org (passthrough to the auth dispatcher)" },
|
|
1007
|
-
{ verb: "workspace", cls: "auth", summary: "list/switch/use workspace (passthrough to the auth dispatcher)" },
|
|
1008
|
-
{ verb: "workspaces", cls: "auth", summary: "list workspaces in the active org (alias of `workspace list`)" },
|
|
1009
|
-
{ verb: "project", cls: "auth", summary: "list/bind/use projects + show the resolved per-folder scope (049d)" },
|
|
1010
|
-
|
|
1011
|
-
{ verb: "
|
|
1012
|
-
{ verb: "
|
|
989
|
+
// Memory & recall — the product's core write/read/lifecycle surface.
|
|
990
|
+
{ verb: "remember", cls: "storage", group: "memory", summary: "write a memory through the daemon (--type fact|convention|preference|decision|gotcha|reference)" },
|
|
991
|
+
{ verb: "recall", cls: "storage", group: "memory", summary: "recall memories through the daemon" },
|
|
992
|
+
{ verb: "memory", cls: "storage", group: "memory", summary: "lifecycle: conflicts (list/resolve), stale-refs (list), inspect <id> --lifecycle (058d)" },
|
|
993
|
+
{ verb: "sessions", cls: "storage", group: "memory", summary: "list/prune captured sessions through the daemon" },
|
|
994
|
+
{ verb: "pollinate", cls: "storage", group: "memory", summary: "trigger a pollinating consolidation pass on the daemon (009/026)" },
|
|
995
|
+
{ verb: "maintenance", cls: "storage", group: "memory", summary: "run version-history compaction over version-bumped tables (030)" },
|
|
996
|
+
// Knowledge & skills — skills, assets, ontology, the codebase graph, and goals.
|
|
997
|
+
{ verb: "skill", cls: "storage", group: "knowledge", summary: "skillify scope/pull/unpull/force/promote through the daemon (promote = cross-project, 049c)" },
|
|
998
|
+
{ verb: "skillify", cls: "storage", group: "knowledge", summary: "pull team skills from the daemon (016c)" },
|
|
999
|
+
{ verb: "asset", cls: "storage", group: "knowledge", summary: "register/promote/demote/style skills+agents through the tier\xD7style lattice (033)" },
|
|
1000
|
+
{ verb: "ontology", cls: "storage", group: "knowledge", summary: "inspect/propose ontology changes through the daemon" },
|
|
1001
|
+
{ verb: "graph", cls: "storage", group: "knowledge", summary: "build/query the codebase graph through the daemon" },
|
|
1002
|
+
{ verb: "sources", cls: "storage", group: "knowledge", summary: "connect/index/purge sources through the daemon" },
|
|
1003
|
+
{ verb: "goal", cls: "storage", group: "knowledge", summary: "manage goals/KPIs through the daemon" },
|
|
1004
|
+
// Agents, routing & config — agent turns, inference routes, secrets, and vault settings.
|
|
1005
|
+
{ verb: "agent", cls: "storage", group: "agents", summary: "run an agent turn through the daemon" },
|
|
1006
|
+
{ verb: "route", cls: "storage", group: "agents", summary: "manage inference routes through the daemon" },
|
|
1007
|
+
{ verb: "secret", cls: "storage", group: "agents", summary: "manage named secrets through the daemon" },
|
|
1008
|
+
{ verb: "settings", cls: "storage", group: "agents", summary: "get/set/list vault settings + provider\u2192model selector through the daemon" },
|
|
1009
|
+
// Account & workspaces — auth, identity, and the org/workspace/project scope surface.
|
|
1010
|
+
{ verb: "login", cls: "auth", group: "account", summary: "authenticate via device flow, or --token <key> for headless (023)" },
|
|
1011
|
+
{ verb: "logout", cls: "auth", group: "account", summary: "remove the shared credentials and sign out (023)" },
|
|
1012
|
+
{ verb: "whoami", cls: "auth", group: "account", summary: "show the authenticated user, org, and workspace (GET /me)" },
|
|
1013
|
+
{ verb: "org", cls: "auth", group: "account", summary: "list/switch org (passthrough to the auth dispatcher)" },
|
|
1014
|
+
{ verb: "workspace", cls: "auth", group: "account", summary: "list/switch/use workspace (passthrough to the auth dispatcher)" },
|
|
1015
|
+
{ verb: "workspaces", cls: "auth", group: "account", summary: "list workspaces in the active org (alias of `workspace list`)" },
|
|
1016
|
+
{ verb: "project", cls: "auth", group: "account", summary: "list/bind/use projects + show the resolved per-folder scope (049d)" },
|
|
1017
|
+
// Setup & system — install/onboard, daemon lifecycle, dashboard, hooks, telemetry, update.
|
|
1018
|
+
{ verb: "setup", cls: "local", group: "system", summary: "detect assistants, wire hooks, bring up the daemon" },
|
|
1019
|
+
{ verb: "install", cls: "local", group: "system", summary: "bring up the daemon (health-gated) + open the dashboard (PRD-050a)" },
|
|
1020
|
+
{ verb: "status", cls: "local", group: "system", summary: "daemon connectivity + login + D1\u2013D5 environment health" },
|
|
1021
|
+
{ verb: "daemon", cls: "local", group: "system", summary: "start | stop | status the loopback daemon (3850)" },
|
|
1022
|
+
{ verb: "dashboard", cls: "local", group: "system", summary: "launch the daemon-served dashboard (020b)" },
|
|
1023
|
+
{ verb: "hook", cls: "local", group: "system", summary: "inspect/wire harness hooks" },
|
|
1024
|
+
{ verb: "telemetry", cls: "local", group: "system", summary: "show exactly what adoption telemetry has been / would be sent (--show, PRD-050e)" },
|
|
1025
|
+
{ verb: "update", cls: "local", group: "system", summary: "self-update the CLI, daemon, and bundles" },
|
|
1026
|
+
{ verb: "uninstall", cls: "local", group: "system", summary: "reverse only Honeycomb's changes" }
|
|
1013
1027
|
]);
|
|
1014
1028
|
var DEFAULT_GLOBAL_FLAGS = Object.freeze({
|
|
1015
1029
|
help: false,
|
|
@@ -978,38 +978,52 @@ var SKILL_ROW_DEFAULTS = Object.freeze({
|
|
|
978
978
|
});
|
|
979
979
|
|
|
980
980
|
// dist/src/commands/contracts.js
|
|
981
|
+
var VERB_GROUPS = Object.freeze([
|
|
982
|
+
{ key: "memory", label: "Memory & recall" },
|
|
983
|
+
{ key: "knowledge", label: "Knowledge & skills" },
|
|
984
|
+
{ key: "agents", label: "Agents, routing & config" },
|
|
985
|
+
{ key: "account", label: "Account & workspaces" },
|
|
986
|
+
{ key: "system", label: "Setup & system" }
|
|
987
|
+
]);
|
|
981
988
|
var VERB_TABLE = Object.freeze([
|
|
982
|
-
|
|
983
|
-
{ verb: "
|
|
984
|
-
{ verb: "
|
|
985
|
-
{ verb: "
|
|
986
|
-
{ verb: "
|
|
987
|
-
{ verb: "
|
|
988
|
-
{ verb: "
|
|
989
|
-
|
|
990
|
-
{ verb: "
|
|
991
|
-
{ verb: "
|
|
992
|
-
{ verb: "
|
|
993
|
-
{ verb: "
|
|
994
|
-
{ verb: "
|
|
995
|
-
{ verb: "
|
|
996
|
-
{ verb: "
|
|
997
|
-
|
|
998
|
-
{ verb: "
|
|
999
|
-
{ verb: "
|
|
1000
|
-
{ verb: "
|
|
1001
|
-
{ verb: "
|
|
1002
|
-
|
|
1003
|
-
{ verb: "
|
|
1004
|
-
{ verb: "
|
|
1005
|
-
{ verb: "whoami", cls: "auth", summary: "show the authenticated user, org, and workspace (GET /me)" },
|
|
1006
|
-
{ verb: "org", cls: "auth", summary: "list/switch org (passthrough to the auth dispatcher)" },
|
|
1007
|
-
{ verb: "workspace", cls: "auth", summary: "list/switch/use workspace (passthrough to the auth dispatcher)" },
|
|
1008
|
-
{ verb: "workspaces", cls: "auth", summary: "list workspaces in the active org (alias of `workspace list`)" },
|
|
1009
|
-
{ verb: "project", cls: "auth", summary: "list/bind/use projects + show the resolved per-folder scope (049d)" },
|
|
1010
|
-
|
|
1011
|
-
{ verb: "
|
|
1012
|
-
{ verb: "
|
|
989
|
+
// Memory & recall — the product's core write/read/lifecycle surface.
|
|
990
|
+
{ verb: "remember", cls: "storage", group: "memory", summary: "write a memory through the daemon (--type fact|convention|preference|decision|gotcha|reference)" },
|
|
991
|
+
{ verb: "recall", cls: "storage", group: "memory", summary: "recall memories through the daemon" },
|
|
992
|
+
{ verb: "memory", cls: "storage", group: "memory", summary: "lifecycle: conflicts (list/resolve), stale-refs (list), inspect <id> --lifecycle (058d)" },
|
|
993
|
+
{ verb: "sessions", cls: "storage", group: "memory", summary: "list/prune captured sessions through the daemon" },
|
|
994
|
+
{ verb: "pollinate", cls: "storage", group: "memory", summary: "trigger a pollinating consolidation pass on the daemon (009/026)" },
|
|
995
|
+
{ verb: "maintenance", cls: "storage", group: "memory", summary: "run version-history compaction over version-bumped tables (030)" },
|
|
996
|
+
// Knowledge & skills — skills, assets, ontology, the codebase graph, and goals.
|
|
997
|
+
{ verb: "skill", cls: "storage", group: "knowledge", summary: "skillify scope/pull/unpull/force/promote through the daemon (promote = cross-project, 049c)" },
|
|
998
|
+
{ verb: "skillify", cls: "storage", group: "knowledge", summary: "pull team skills from the daemon (016c)" },
|
|
999
|
+
{ verb: "asset", cls: "storage", group: "knowledge", summary: "register/promote/demote/style skills+agents through the tier\xD7style lattice (033)" },
|
|
1000
|
+
{ verb: "ontology", cls: "storage", group: "knowledge", summary: "inspect/propose ontology changes through the daemon" },
|
|
1001
|
+
{ verb: "graph", cls: "storage", group: "knowledge", summary: "build/query the codebase graph through the daemon" },
|
|
1002
|
+
{ verb: "sources", cls: "storage", group: "knowledge", summary: "connect/index/purge sources through the daemon" },
|
|
1003
|
+
{ verb: "goal", cls: "storage", group: "knowledge", summary: "manage goals/KPIs through the daemon" },
|
|
1004
|
+
// Agents, routing & config — agent turns, inference routes, secrets, and vault settings.
|
|
1005
|
+
{ verb: "agent", cls: "storage", group: "agents", summary: "run an agent turn through the daemon" },
|
|
1006
|
+
{ verb: "route", cls: "storage", group: "agents", summary: "manage inference routes through the daemon" },
|
|
1007
|
+
{ verb: "secret", cls: "storage", group: "agents", summary: "manage named secrets through the daemon" },
|
|
1008
|
+
{ verb: "settings", cls: "storage", group: "agents", summary: "get/set/list vault settings + provider\u2192model selector through the daemon" },
|
|
1009
|
+
// Account & workspaces — auth, identity, and the org/workspace/project scope surface.
|
|
1010
|
+
{ verb: "login", cls: "auth", group: "account", summary: "authenticate via device flow, or --token <key> for headless (023)" },
|
|
1011
|
+
{ verb: "logout", cls: "auth", group: "account", summary: "remove the shared credentials and sign out (023)" },
|
|
1012
|
+
{ verb: "whoami", cls: "auth", group: "account", summary: "show the authenticated user, org, and workspace (GET /me)" },
|
|
1013
|
+
{ verb: "org", cls: "auth", group: "account", summary: "list/switch org (passthrough to the auth dispatcher)" },
|
|
1014
|
+
{ verb: "workspace", cls: "auth", group: "account", summary: "list/switch/use workspace (passthrough to the auth dispatcher)" },
|
|
1015
|
+
{ verb: "workspaces", cls: "auth", group: "account", summary: "list workspaces in the active org (alias of `workspace list`)" },
|
|
1016
|
+
{ verb: "project", cls: "auth", group: "account", summary: "list/bind/use projects + show the resolved per-folder scope (049d)" },
|
|
1017
|
+
// Setup & system — install/onboard, daemon lifecycle, dashboard, hooks, telemetry, update.
|
|
1018
|
+
{ verb: "setup", cls: "local", group: "system", summary: "detect assistants, wire hooks, bring up the daemon" },
|
|
1019
|
+
{ verb: "install", cls: "local", group: "system", summary: "bring up the daemon (health-gated) + open the dashboard (PRD-050a)" },
|
|
1020
|
+
{ verb: "status", cls: "local", group: "system", summary: "daemon connectivity + login + D1\u2013D5 environment health" },
|
|
1021
|
+
{ verb: "daemon", cls: "local", group: "system", summary: "start | stop | status the loopback daemon (3850)" },
|
|
1022
|
+
{ verb: "dashboard", cls: "local", group: "system", summary: "launch the daemon-served dashboard (020b)" },
|
|
1023
|
+
{ verb: "hook", cls: "local", group: "system", summary: "inspect/wire harness hooks" },
|
|
1024
|
+
{ verb: "telemetry", cls: "local", group: "system", summary: "show exactly what adoption telemetry has been / would be sent (--show, PRD-050e)" },
|
|
1025
|
+
{ verb: "update", cls: "local", group: "system", summary: "self-update the CLI, daemon, and bundles" },
|
|
1026
|
+
{ verb: "uninstall", cls: "local", group: "system", summary: "reverse only Honeycomb's changes" }
|
|
1013
1027
|
]);
|
|
1014
1028
|
var DEFAULT_GLOBAL_FLAGS = Object.freeze({
|
|
1015
1029
|
help: false,
|
|
@@ -978,38 +978,52 @@ var SKILL_ROW_DEFAULTS = Object.freeze({
|
|
|
978
978
|
});
|
|
979
979
|
|
|
980
980
|
// dist/src/commands/contracts.js
|
|
981
|
+
var VERB_GROUPS = Object.freeze([
|
|
982
|
+
{ key: "memory", label: "Memory & recall" },
|
|
983
|
+
{ key: "knowledge", label: "Knowledge & skills" },
|
|
984
|
+
{ key: "agents", label: "Agents, routing & config" },
|
|
985
|
+
{ key: "account", label: "Account & workspaces" },
|
|
986
|
+
{ key: "system", label: "Setup & system" }
|
|
987
|
+
]);
|
|
981
988
|
var VERB_TABLE = Object.freeze([
|
|
982
|
-
|
|
983
|
-
{ verb: "
|
|
984
|
-
{ verb: "
|
|
985
|
-
{ verb: "
|
|
986
|
-
{ verb: "
|
|
987
|
-
{ verb: "
|
|
988
|
-
{ verb: "
|
|
989
|
-
|
|
990
|
-
{ verb: "
|
|
991
|
-
{ verb: "
|
|
992
|
-
{ verb: "
|
|
993
|
-
{ verb: "
|
|
994
|
-
{ verb: "
|
|
995
|
-
{ verb: "
|
|
996
|
-
{ verb: "
|
|
997
|
-
|
|
998
|
-
{ verb: "
|
|
999
|
-
{ verb: "
|
|
1000
|
-
{ verb: "
|
|
1001
|
-
{ verb: "
|
|
1002
|
-
|
|
1003
|
-
{ verb: "
|
|
1004
|
-
{ verb: "
|
|
1005
|
-
{ verb: "whoami", cls: "auth", summary: "show the authenticated user, org, and workspace (GET /me)" },
|
|
1006
|
-
{ verb: "org", cls: "auth", summary: "list/switch org (passthrough to the auth dispatcher)" },
|
|
1007
|
-
{ verb: "workspace", cls: "auth", summary: "list/switch/use workspace (passthrough to the auth dispatcher)" },
|
|
1008
|
-
{ verb: "workspaces", cls: "auth", summary: "list workspaces in the active org (alias of `workspace list`)" },
|
|
1009
|
-
{ verb: "project", cls: "auth", summary: "list/bind/use projects + show the resolved per-folder scope (049d)" },
|
|
1010
|
-
|
|
1011
|
-
{ verb: "
|
|
1012
|
-
{ verb: "
|
|
989
|
+
// Memory & recall — the product's core write/read/lifecycle surface.
|
|
990
|
+
{ verb: "remember", cls: "storage", group: "memory", summary: "write a memory through the daemon (--type fact|convention|preference|decision|gotcha|reference)" },
|
|
991
|
+
{ verb: "recall", cls: "storage", group: "memory", summary: "recall memories through the daemon" },
|
|
992
|
+
{ verb: "memory", cls: "storage", group: "memory", summary: "lifecycle: conflicts (list/resolve), stale-refs (list), inspect <id> --lifecycle (058d)" },
|
|
993
|
+
{ verb: "sessions", cls: "storage", group: "memory", summary: "list/prune captured sessions through the daemon" },
|
|
994
|
+
{ verb: "pollinate", cls: "storage", group: "memory", summary: "trigger a pollinating consolidation pass on the daemon (009/026)" },
|
|
995
|
+
{ verb: "maintenance", cls: "storage", group: "memory", summary: "run version-history compaction over version-bumped tables (030)" },
|
|
996
|
+
// Knowledge & skills — skills, assets, ontology, the codebase graph, and goals.
|
|
997
|
+
{ verb: "skill", cls: "storage", group: "knowledge", summary: "skillify scope/pull/unpull/force/promote through the daemon (promote = cross-project, 049c)" },
|
|
998
|
+
{ verb: "skillify", cls: "storage", group: "knowledge", summary: "pull team skills from the daemon (016c)" },
|
|
999
|
+
{ verb: "asset", cls: "storage", group: "knowledge", summary: "register/promote/demote/style skills+agents through the tier\xD7style lattice (033)" },
|
|
1000
|
+
{ verb: "ontology", cls: "storage", group: "knowledge", summary: "inspect/propose ontology changes through the daemon" },
|
|
1001
|
+
{ verb: "graph", cls: "storage", group: "knowledge", summary: "build/query the codebase graph through the daemon" },
|
|
1002
|
+
{ verb: "sources", cls: "storage", group: "knowledge", summary: "connect/index/purge sources through the daemon" },
|
|
1003
|
+
{ verb: "goal", cls: "storage", group: "knowledge", summary: "manage goals/KPIs through the daemon" },
|
|
1004
|
+
// Agents, routing & config — agent turns, inference routes, secrets, and vault settings.
|
|
1005
|
+
{ verb: "agent", cls: "storage", group: "agents", summary: "run an agent turn through the daemon" },
|
|
1006
|
+
{ verb: "route", cls: "storage", group: "agents", summary: "manage inference routes through the daemon" },
|
|
1007
|
+
{ verb: "secret", cls: "storage", group: "agents", summary: "manage named secrets through the daemon" },
|
|
1008
|
+
{ verb: "settings", cls: "storage", group: "agents", summary: "get/set/list vault settings + provider\u2192model selector through the daemon" },
|
|
1009
|
+
// Account & workspaces — auth, identity, and the org/workspace/project scope surface.
|
|
1010
|
+
{ verb: "login", cls: "auth", group: "account", summary: "authenticate via device flow, or --token <key> for headless (023)" },
|
|
1011
|
+
{ verb: "logout", cls: "auth", group: "account", summary: "remove the shared credentials and sign out (023)" },
|
|
1012
|
+
{ verb: "whoami", cls: "auth", group: "account", summary: "show the authenticated user, org, and workspace (GET /me)" },
|
|
1013
|
+
{ verb: "org", cls: "auth", group: "account", summary: "list/switch org (passthrough to the auth dispatcher)" },
|
|
1014
|
+
{ verb: "workspace", cls: "auth", group: "account", summary: "list/switch/use workspace (passthrough to the auth dispatcher)" },
|
|
1015
|
+
{ verb: "workspaces", cls: "auth", group: "account", summary: "list workspaces in the active org (alias of `workspace list`)" },
|
|
1016
|
+
{ verb: "project", cls: "auth", group: "account", summary: "list/bind/use projects + show the resolved per-folder scope (049d)" },
|
|
1017
|
+
// Setup & system — install/onboard, daemon lifecycle, dashboard, hooks, telemetry, update.
|
|
1018
|
+
{ verb: "setup", cls: "local", group: "system", summary: "detect assistants, wire hooks, bring up the daemon" },
|
|
1019
|
+
{ verb: "install", cls: "local", group: "system", summary: "bring up the daemon (health-gated) + open the dashboard (PRD-050a)" },
|
|
1020
|
+
{ verb: "status", cls: "local", group: "system", summary: "daemon connectivity + login + D1\u2013D5 environment health" },
|
|
1021
|
+
{ verb: "daemon", cls: "local", group: "system", summary: "start | stop | status the loopback daemon (3850)" },
|
|
1022
|
+
{ verb: "dashboard", cls: "local", group: "system", summary: "launch the daemon-served dashboard (020b)" },
|
|
1023
|
+
{ verb: "hook", cls: "local", group: "system", summary: "inspect/wire harness hooks" },
|
|
1024
|
+
{ verb: "telemetry", cls: "local", group: "system", summary: "show exactly what adoption telemetry has been / would be sent (--show, PRD-050e)" },
|
|
1025
|
+
{ verb: "update", cls: "local", group: "system", summary: "self-update the CLI, daemon, and bundles" },
|
|
1026
|
+
{ verb: "uninstall", cls: "local", group: "system", summary: "reverse only Honeycomb's changes" }
|
|
1013
1027
|
]);
|
|
1014
1028
|
var DEFAULT_GLOBAL_FLAGS = Object.freeze({
|
|
1015
1029
|
help: false,
|
|
@@ -978,38 +978,52 @@ var SKILL_ROW_DEFAULTS = Object.freeze({
|
|
|
978
978
|
});
|
|
979
979
|
|
|
980
980
|
// dist/src/commands/contracts.js
|
|
981
|
+
var VERB_GROUPS = Object.freeze([
|
|
982
|
+
{ key: "memory", label: "Memory & recall" },
|
|
983
|
+
{ key: "knowledge", label: "Knowledge & skills" },
|
|
984
|
+
{ key: "agents", label: "Agents, routing & config" },
|
|
985
|
+
{ key: "account", label: "Account & workspaces" },
|
|
986
|
+
{ key: "system", label: "Setup & system" }
|
|
987
|
+
]);
|
|
981
988
|
var VERB_TABLE = Object.freeze([
|
|
982
|
-
|
|
983
|
-
{ verb: "
|
|
984
|
-
{ verb: "
|
|
985
|
-
{ verb: "
|
|
986
|
-
{ verb: "
|
|
987
|
-
{ verb: "
|
|
988
|
-
{ verb: "
|
|
989
|
-
|
|
990
|
-
{ verb: "
|
|
991
|
-
{ verb: "
|
|
992
|
-
{ verb: "
|
|
993
|
-
{ verb: "
|
|
994
|
-
{ verb: "
|
|
995
|
-
{ verb: "
|
|
996
|
-
{ verb: "
|
|
997
|
-
|
|
998
|
-
{ verb: "
|
|
999
|
-
{ verb: "
|
|
1000
|
-
{ verb: "
|
|
1001
|
-
{ verb: "
|
|
1002
|
-
|
|
1003
|
-
{ verb: "
|
|
1004
|
-
{ verb: "
|
|
1005
|
-
{ verb: "whoami", cls: "auth", summary: "show the authenticated user, org, and workspace (GET /me)" },
|
|
1006
|
-
{ verb: "org", cls: "auth", summary: "list/switch org (passthrough to the auth dispatcher)" },
|
|
1007
|
-
{ verb: "workspace", cls: "auth", summary: "list/switch/use workspace (passthrough to the auth dispatcher)" },
|
|
1008
|
-
{ verb: "workspaces", cls: "auth", summary: "list workspaces in the active org (alias of `workspace list`)" },
|
|
1009
|
-
{ verb: "project", cls: "auth", summary: "list/bind/use projects + show the resolved per-folder scope (049d)" },
|
|
1010
|
-
|
|
1011
|
-
{ verb: "
|
|
1012
|
-
{ verb: "
|
|
989
|
+
// Memory & recall — the product's core write/read/lifecycle surface.
|
|
990
|
+
{ verb: "remember", cls: "storage", group: "memory", summary: "write a memory through the daemon (--type fact|convention|preference|decision|gotcha|reference)" },
|
|
991
|
+
{ verb: "recall", cls: "storage", group: "memory", summary: "recall memories through the daemon" },
|
|
992
|
+
{ verb: "memory", cls: "storage", group: "memory", summary: "lifecycle: conflicts (list/resolve), stale-refs (list), inspect <id> --lifecycle (058d)" },
|
|
993
|
+
{ verb: "sessions", cls: "storage", group: "memory", summary: "list/prune captured sessions through the daemon" },
|
|
994
|
+
{ verb: "pollinate", cls: "storage", group: "memory", summary: "trigger a pollinating consolidation pass on the daemon (009/026)" },
|
|
995
|
+
{ verb: "maintenance", cls: "storage", group: "memory", summary: "run version-history compaction over version-bumped tables (030)" },
|
|
996
|
+
// Knowledge & skills — skills, assets, ontology, the codebase graph, and goals.
|
|
997
|
+
{ verb: "skill", cls: "storage", group: "knowledge", summary: "skillify scope/pull/unpull/force/promote through the daemon (promote = cross-project, 049c)" },
|
|
998
|
+
{ verb: "skillify", cls: "storage", group: "knowledge", summary: "pull team skills from the daemon (016c)" },
|
|
999
|
+
{ verb: "asset", cls: "storage", group: "knowledge", summary: "register/promote/demote/style skills+agents through the tier\xD7style lattice (033)" },
|
|
1000
|
+
{ verb: "ontology", cls: "storage", group: "knowledge", summary: "inspect/propose ontology changes through the daemon" },
|
|
1001
|
+
{ verb: "graph", cls: "storage", group: "knowledge", summary: "build/query the codebase graph through the daemon" },
|
|
1002
|
+
{ verb: "sources", cls: "storage", group: "knowledge", summary: "connect/index/purge sources through the daemon" },
|
|
1003
|
+
{ verb: "goal", cls: "storage", group: "knowledge", summary: "manage goals/KPIs through the daemon" },
|
|
1004
|
+
// Agents, routing & config — agent turns, inference routes, secrets, and vault settings.
|
|
1005
|
+
{ verb: "agent", cls: "storage", group: "agents", summary: "run an agent turn through the daemon" },
|
|
1006
|
+
{ verb: "route", cls: "storage", group: "agents", summary: "manage inference routes through the daemon" },
|
|
1007
|
+
{ verb: "secret", cls: "storage", group: "agents", summary: "manage named secrets through the daemon" },
|
|
1008
|
+
{ verb: "settings", cls: "storage", group: "agents", summary: "get/set/list vault settings + provider\u2192model selector through the daemon" },
|
|
1009
|
+
// Account & workspaces — auth, identity, and the org/workspace/project scope surface.
|
|
1010
|
+
{ verb: "login", cls: "auth", group: "account", summary: "authenticate via device flow, or --token <key> for headless (023)" },
|
|
1011
|
+
{ verb: "logout", cls: "auth", group: "account", summary: "remove the shared credentials and sign out (023)" },
|
|
1012
|
+
{ verb: "whoami", cls: "auth", group: "account", summary: "show the authenticated user, org, and workspace (GET /me)" },
|
|
1013
|
+
{ verb: "org", cls: "auth", group: "account", summary: "list/switch org (passthrough to the auth dispatcher)" },
|
|
1014
|
+
{ verb: "workspace", cls: "auth", group: "account", summary: "list/switch/use workspace (passthrough to the auth dispatcher)" },
|
|
1015
|
+
{ verb: "workspaces", cls: "auth", group: "account", summary: "list workspaces in the active org (alias of `workspace list`)" },
|
|
1016
|
+
{ verb: "project", cls: "auth", group: "account", summary: "list/bind/use projects + show the resolved per-folder scope (049d)" },
|
|
1017
|
+
// Setup & system — install/onboard, daemon lifecycle, dashboard, hooks, telemetry, update.
|
|
1018
|
+
{ verb: "setup", cls: "local", group: "system", summary: "detect assistants, wire hooks, bring up the daemon" },
|
|
1019
|
+
{ verb: "install", cls: "local", group: "system", summary: "bring up the daemon (health-gated) + open the dashboard (PRD-050a)" },
|
|
1020
|
+
{ verb: "status", cls: "local", group: "system", summary: "daemon connectivity + login + D1\u2013D5 environment health" },
|
|
1021
|
+
{ verb: "daemon", cls: "local", group: "system", summary: "start | stop | status the loopback daemon (3850)" },
|
|
1022
|
+
{ verb: "dashboard", cls: "local", group: "system", summary: "launch the daemon-served dashboard (020b)" },
|
|
1023
|
+
{ verb: "hook", cls: "local", group: "system", summary: "inspect/wire harness hooks" },
|
|
1024
|
+
{ verb: "telemetry", cls: "local", group: "system", summary: "show exactly what adoption telemetry has been / would be sent (--show, PRD-050e)" },
|
|
1025
|
+
{ verb: "update", cls: "local", group: "system", summary: "self-update the CLI, daemon, and bundles" },
|
|
1026
|
+
{ verb: "uninstall", cls: "local", group: "system", summary: "reverse only Honeycomb's changes" }
|
|
1013
1027
|
]);
|
|
1014
1028
|
var DEFAULT_GLOBAL_FLAGS = Object.freeze({
|
|
1015
1029
|
help: false,
|
|
@@ -3,7 +3,7 @@ globalThis.__honeycomb_tuning__ ??= {};
|
|
|
3
3
|
// src/shared/constants.ts
|
|
4
4
|
var DAEMON_PORT = 3850;
|
|
5
5
|
var DAEMON_HOST = "127.0.0.1";
|
|
6
|
-
var HONEYCOMB_VERSION = true ? "0.1.
|
|
6
|
+
var HONEYCOMB_VERSION = true ? "0.1.9" : "0.0.0-dev";
|
|
7
7
|
|
|
8
8
|
// src/daemon-client/index.ts
|
|
9
9
|
function createDaemonClient(endpoint) {
|
package/mcp/bundle/server.js
CHANGED
|
@@ -6892,7 +6892,7 @@ var require_dist = __commonJS({
|
|
|
6892
6892
|
// dist/src/shared/constants.js
|
|
6893
6893
|
var DAEMON_PORT = 3850;
|
|
6894
6894
|
var DAEMON_HOST = "127.0.0.1";
|
|
6895
|
-
var HONEYCOMB_VERSION = true ? "0.1.
|
|
6895
|
+
var HONEYCOMB_VERSION = true ? "0.1.9" : "0.0.0-dev";
|
|
6896
6896
|
|
|
6897
6897
|
// dist/src/daemon-client/index.js
|
|
6898
6898
|
function createDaemonClient(endpoint) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@legioncodeinc/honeycomb",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"//go-public": "Go-public switches are flipped: scoped name, public+provenance publishConfig live, `private` removed. CI auth is npm Trusted Publishing (OIDC); there is NO NPM_TOKEN. The go-live procedure is RELEASING.md 'Cut the release': the first publish is a one-time manual 2FA bootstrap that creates the package, after which every CI publish from release.yaml is tokenless OIDC.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|