conare 0.5.0 → 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 +37 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -644,7 +644,7 @@ var init_api = __esm(() => {
|
|
|
644
644
|
};
|
|
645
645
|
});
|
|
646
646
|
|
|
647
|
-
// node_modules/sisteransi/src/index.js
|
|
647
|
+
// ../node_modules/sisteransi/src/index.js
|
|
648
648
|
var require_src = __commonJS((exports, module) => {
|
|
649
649
|
var ESC = "\x1B";
|
|
650
650
|
var CSI = `${ESC}[`;
|
|
@@ -702,7 +702,7 @@ var require_src = __commonJS((exports, module) => {
|
|
|
702
702
|
module.exports = { cursor, scroll, erase, beep };
|
|
703
703
|
});
|
|
704
704
|
|
|
705
|
-
// node_modules/picocolors/picocolors.js
|
|
705
|
+
// ../node_modules/picocolors/picocolors.js
|
|
706
706
|
var require_picocolors = __commonJS((exports, module) => {
|
|
707
707
|
var p = process || {};
|
|
708
708
|
var argv = p.argv || [];
|
|
@@ -772,7 +772,7 @@ var require_picocolors = __commonJS((exports, module) => {
|
|
|
772
772
|
module.exports.createColors = createColors;
|
|
773
773
|
});
|
|
774
774
|
|
|
775
|
-
// node_modules/@clack/core/dist/index.mjs
|
|
775
|
+
// ../node_modules/@clack/core/dist/index.mjs
|
|
776
776
|
import { stdin as j, stdout as M } from "node:process";
|
|
777
777
|
import * as g from "node:readline";
|
|
778
778
|
import O from "node:readline";
|
|
@@ -1308,7 +1308,7 @@ var init_dist = __esm(() => {
|
|
|
1308
1308
|
};
|
|
1309
1309
|
});
|
|
1310
1310
|
|
|
1311
|
-
// node_modules/@clack/prompts/dist/index.mjs
|
|
1311
|
+
// ../node_modules/@clack/prompts/dist/index.mjs
|
|
1312
1312
|
var exports_dist = {};
|
|
1313
1313
|
__export(exports_dist, {
|
|
1314
1314
|
updateSettings: () => cD,
|
|
@@ -2873,6 +2873,17 @@ This skill teaches the agent the default workflow, tool-selection rules, and que
|
|
|
2873
2873
|
| User says "remember this" | \`save\` | Save preferences, rules, decisions |
|
|
2874
2874
|
| User says "forget this" | \`forget\` | Remove a specific memory |
|
|
2875
2875
|
| Browse what's stored | \`list\` | "Show me recent memories" |
|
|
2876
|
+
| Narrative/summary question | \`search\` with \`deep: true\` | "What happened with the auth rewrite?" |
|
|
2877
|
+
| Deep + specific format | \`search\` with \`deep\` + \`prompt\` | query="auth rewrite bug", prompt="timeline with dates" |
|
|
2878
|
+
|
|
2879
|
+
## Deep Mode
|
|
2880
|
+
|
|
2881
|
+
\`deep: true\` on \`search\` or \`recall\` returns an LLM-synthesized answer instead of raw memories.
|
|
2882
|
+
|
|
2883
|
+
- **Use for**: narratives, summaries, "what happened with X", comparing approaches
|
|
2884
|
+
- **Don't use for**: exact values, config lookups, file paths — raw preserves full detail
|
|
2885
|
+
|
|
2886
|
+
\`prompt\` (deep only) separates retrieval from synthesis. Keep \`query\` keyword-dense to find the right memories. Use \`prompt\` to instruct the LLM on format: "chronological timeline with dates", "only shipped changes, not proposals", "compare X vs Y". Omit \`prompt\` to let the LLM infer format from the query.
|
|
2876
2887
|
|
|
2877
2888
|
## Critical Rules
|
|
2878
2889
|
|
|
@@ -3496,6 +3507,7 @@ function uninstallSync() {
|
|
|
3496
3507
|
|
|
3497
3508
|
// src/index.ts
|
|
3498
3509
|
init_interactive();
|
|
3510
|
+
var CONARE_URL2 = "https://conare.ai";
|
|
3499
3511
|
function getManifestFingerprint(memory) {
|
|
3500
3512
|
const metadata = memory.metadata;
|
|
3501
3513
|
if (metadata?.dedupKey && metadata?.contentHash) {
|
|
@@ -4119,6 +4131,27 @@ Nothing new to index.`);
|
|
|
4119
4131
|
log("");
|
|
4120
4132
|
log(" \x1B[32m✓\x1B[0m Done! Every new conversation now starts with context.");
|
|
4121
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("");
|
|
4122
4155
|
}
|
|
4123
4156
|
main().catch((e2) => {
|
|
4124
4157
|
console.error("Error:", e2.message || e2);
|