conare 0.6.2 → 0.6.3
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/dist/index.js +35 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5711,9 +5711,6 @@ Nothing new to index.`);
|
|
|
5711
5711
|
}
|
|
5712
5712
|
}
|
|
5713
5713
|
}
|
|
5714
|
-
log("");
|
|
5715
|
-
log(" \x1B[32m✓\x1B[0m Done! Every new conversation now starts with context.");
|
|
5716
|
-
log("");
|
|
5717
5714
|
const configuredTools = selectedTargets.filter((t) => t !== "conare-skill").map((t) => {
|
|
5718
5715
|
if (t === "claude")
|
|
5719
5716
|
return "Claude Code";
|
|
@@ -5728,10 +5725,42 @@ Nothing new to index.`);
|
|
|
5728
5725
|
return t;
|
|
5729
5726
|
});
|
|
5730
5727
|
const toolList = configuredTools.length > 0 ? configuredTools.join(", ") : "your AI tools";
|
|
5731
|
-
|
|
5732
|
-
|
|
5728
|
+
const oneTool = configuredTools[0] ?? "your agent";
|
|
5729
|
+
const dim = (s) => `\x1B[2m${s}\x1B[0m`;
|
|
5730
|
+
const bold = (s) => `\x1B[1m${s}\x1B[0m`;
|
|
5731
|
+
let memoryTotal = 0;
|
|
5732
|
+
if (!opts.dryRun) {
|
|
5733
|
+
memoryTotal = await getRemoteMemoryCount(apiKey).catch(() => null) ?? 0;
|
|
5734
|
+
}
|
|
5735
|
+
if (memoryTotal <= 0)
|
|
5736
|
+
memoryTotal = uploadedCount;
|
|
5737
|
+
log("");
|
|
5738
|
+
if (memoryTotal > 0) {
|
|
5739
|
+
log(` \x1B[32m✓\x1B[0m ${bold(`${memoryTotal.toLocaleString()} memories`)} are now recallable inside ${toolList}.`);
|
|
5740
|
+
} else {
|
|
5741
|
+
log(` \x1B[32m✓\x1B[0m Conare is connected to ${toolList}.`);
|
|
5742
|
+
}
|
|
5743
|
+
log("");
|
|
5744
|
+
log(` ${bold("How it works")} Every new session, your agent recalls the right`);
|
|
5745
|
+
log(` past context automatically — no prompting, no copy-paste.`);
|
|
5746
|
+
log("");
|
|
5747
|
+
log(` ${bold("What that means")}`);
|
|
5748
|
+
log(` ${dim("•")} Hit a bug you already solved? Your agent gets the past fix`);
|
|
5749
|
+
log(` instead of re-debugging from scratch.`);
|
|
5750
|
+
log(` ${dim("•")} Touch a gnarly data model or API? It remembers how the`);
|
|
5751
|
+
log(` pieces connect — you stop re-explaining the same thing.`);
|
|
5752
|
+
log("");
|
|
5753
|
+
log(` ${bold("Try it now")} — open ${oneTool} and ask:`);
|
|
5754
|
+
log(` ${dim("›")} "what did I work on most recently?"`);
|
|
5755
|
+
log(` ${dim("›")} "how did I set up <something you built before>?"`);
|
|
5756
|
+
log(` ${dim("›")} "what broke last time I touched <area>?"`);
|
|
5757
|
+
log("");
|
|
5758
|
+
log(` ${bold("You're in control")}`);
|
|
5759
|
+
log(` ${dim("•")} Recall runs automatically at the start of every session.`);
|
|
5760
|
+
log(` ${dim("•")} New chats auto-index every ${opts.syncInterval} min in the background.`);
|
|
5761
|
+
log(` ${dim("•")} Tune it or remove any memory anytime in the dashboard.`);
|
|
5733
5762
|
log("");
|
|
5734
|
-
log(`
|
|
5763
|
+
log(` ${dim("Dashboard:")} ${CONARE_URL2}/dashboard`);
|
|
5735
5764
|
log("");
|
|
5736
5765
|
}
|
|
5737
5766
|
main().catch((e2) => {
|