@johpaz/hive-sdk 0.1.3 → 0.1.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@johpaz/hive-sdk",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Hive SDK — The Agent Harness SDK. Build, deploy, and scale AI agent applications with multi-channel support, context engineering, and swarm orchestration.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/johpaz/hive-sdk#readme",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hive/cli",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Hive CLI — init, run, test, trace",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hive/core",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Hive Core — Agentes AI con Context Engineering, FTS5, ACE, Swarm",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -55,6 +55,13 @@ export type { IStorage } from "./memory/index.ts";
55
55
 
56
56
  // ─── Storage ─────────────────────────────────────────────────────────────────
57
57
  export { initializeDatabase, dbService } from "./storage/index.ts";
58
+ // HiveDB-backed catalogs (tools/skills/providers/models/playbook) that the
59
+ // selectors and other HiveDB-backed features read from. Idempotent (upsert-
60
+ // based) — safe to call on every boot, same "reseed so code changes take
61
+ // effect" pattern as `initializeDatabase`. Not required to avoid crashes
62
+ // (selectors degrade to empty results when unseeded), but needed for
63
+ // dynamic skill/playbook discovery.
64
+ export { seedHiveDB } from "./storage/index.ts";
58
65
 
59
66
  // ─── Config ──────────────────────────────────────────────────────────────────
60
67
  export { loadConfig, loadEnv, getHiveDir } from "./config/index.ts";
@@ -18,3 +18,4 @@ export {
18
18
  hiveRead,
19
19
  isHiveDBInitialized,
20
20
  } from "./HiveDBStorage.ts";
21
+ export { seedHiveDB } from "./hiveSeed.ts";