conare 0.5.1 → 0.5.2
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 +22 -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,27 @@ 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(" \x1B[1mWhat happens now?\x1B[0m");
|
|
4145
|
+
log("");
|
|
4146
|
+
log(` Conare is running as an MCP server inside ${toolList}.`);
|
|
4147
|
+
log(" When you start a new conversation, your AI will automatically");
|
|
4148
|
+
log(" recall relevant context from past sessions — no extra commands needed.");
|
|
4149
|
+
log("");
|
|
4150
|
+
log(" \x1B[2mTry it:\x1B[0m Open a project you've worked on before and ask your AI");
|
|
4151
|
+
log(" about something you discussed in a previous conversation.");
|
|
4152
|
+
log("");
|
|
4153
|
+
log(` \x1B[2mDashboard:\x1B[0m ${CONARE_URL2}/dashboard`);
|
|
4154
|
+
log("");
|
|
4133
4155
|
}
|
|
4134
4156
|
main().catch((e2) => {
|
|
4135
4157
|
console.error("Error:", e2.message || e2);
|