@primeinc/swarm 0.57.8-beta.0 → 0.57.10-beta.0
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/bin/swarm.ts +3 -3
- package/claude-plugin/dist/index.js +1419 -693
- package/claude-plugin/dist/utils/arg-normalizer.d.ts +9 -0
- package/claude-plugin/dist/utils/arg-normalizer.d.ts.map +1 -0
- package/dist/bin/swarm.js +3563 -1632
- package/dist/dashboard.d.ts +2 -6
- package/dist/dashboard.d.ts.map +1 -1
- package/dist/hive.d.ts +7 -2
- package/dist/hive.d.ts.map +1 -1
- package/dist/hive.js +545 -76
- package/dist/index.js +781 -302
- package/dist/marketplace/index.js +1419 -693
- package/dist/plugin.js +781 -288
- package/dist/swarm-mail.d.ts.map +1 -1
- package/dist/swarm-prompts.js +593 -118
- package/dist/swarm-research.d.ts +1 -2
- package/dist/swarm-research.d.ts.map +1 -1
- package/dist/utils/arg-normalizer.d.ts +9 -0
- package/dist/utils/arg-normalizer.d.ts.map +1 -0
- package/package.json +6 -5
- package/claude-plugin/dist/utils/normalize-path.d.ts +0 -75
- package/claude-plugin/dist/utils/normalize-path.d.ts.map +0 -1
- package/dist/utils/normalize-path.d.ts +0 -75
- package/dist/utils/normalize-path.d.ts.map +0 -1
package/bin/swarm.ts
CHANGED
|
@@ -38,7 +38,7 @@ import {
|
|
|
38
38
|
checkBeadsMigrationNeeded,
|
|
39
39
|
migrateBeadsToHive,
|
|
40
40
|
mergeHistoricBeads,
|
|
41
|
-
|
|
41
|
+
importJsonlToLibSQL,
|
|
42
42
|
ensureHiveDirectory,
|
|
43
43
|
getHiveAdapter,
|
|
44
44
|
} from "../dist/hive.js";
|
|
@@ -2429,9 +2429,9 @@ async function setup(forceReinstall = false, nonInteractive = false) {
|
|
|
2429
2429
|
migrateSpinner.stop("No historic cells to merge");
|
|
2430
2430
|
}
|
|
2431
2431
|
|
|
2432
|
-
// Import JSONL into
|
|
2432
|
+
// Import JSONL into libSQL database
|
|
2433
2433
|
migrateSpinner.start("Importing to database...");
|
|
2434
|
-
const importResult = await
|
|
2434
|
+
const importResult = await importJsonlToLibSQL(cwd);
|
|
2435
2435
|
migrateSpinner.stop("Database import complete");
|
|
2436
2436
|
if (importResult.imported > 0 || importResult.updated > 0) {
|
|
2437
2437
|
p.log.success(`Database: ${importResult.imported} imported, ${importResult.updated} updated`);
|