@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
|
+
"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",
|
|
@@ -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";
|