conare 0.5.1 → 0.5.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 +16 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3507,6 +3507,7 @@ function uninstallSync() {
|
|
|
3507
3507
|
|
|
3508
3508
|
// src/index.ts
|
|
3509
3509
|
init_interactive();
|
|
3510
|
+
var CONARE_URL2 = "https://conare.ai";
|
|
3510
3511
|
function getManifestFingerprint(memory) {
|
|
3511
3512
|
const metadata = memory.metadata;
|
|
3512
3513
|
if (metadata?.dedupKey && metadata?.contentHash) {
|
|
@@ -4130,6 +4131,21 @@ Nothing new to index.`);
|
|
|
4130
4131
|
log("");
|
|
4131
4132
|
log(" \x1B[32m✓\x1B[0m Done! Every new conversation now starts with context.");
|
|
4132
4133
|
log("");
|
|
4134
|
+
const configuredTools = selectedTargets.filter((t) => t !== "conare-skill").map((t) => {
|
|
4135
|
+
if (t === "claude")
|
|
4136
|
+
return "Claude Code";
|
|
4137
|
+
if (t === "codex")
|
|
4138
|
+
return "Codex";
|
|
4139
|
+
if (t === "cursor")
|
|
4140
|
+
return "Cursor";
|
|
4141
|
+
return t;
|
|
4142
|
+
});
|
|
4143
|
+
const toolList = configuredTools.length > 0 ? configuredTools.join(", ") : "your AI tools";
|
|
4144
|
+
log(` Your past conversations are now available inside ${toolList}.`);
|
|
4145
|
+
log(" Start a new session — context gets loaded automatically.");
|
|
4146
|
+
log("");
|
|
4147
|
+
log(` \x1B[2mDashboard:\x1B[0m ${CONARE_URL2}/dashboard`);
|
|
4148
|
+
log("");
|
|
4133
4149
|
}
|
|
4134
4150
|
main().catch((e2) => {
|
|
4135
4151
|
console.error("Error:", e2.message || e2);
|