conare 0.5.0 → 0.5.1
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 +15 -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
|
|