conare 0.5.18 → 0.5.20

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1898,7 +1898,7 @@ async function promptAuth(options) {
1898
1898
  }
1899
1899
  async function selectChatSources(targets) {
1900
1900
  return ensureValue(await fe({
1901
- message: "Select chat sources to index (space to toggle, enter to confirm)",
1901
+ message: "Select chat sources to index",
1902
1902
  required: false,
1903
1903
  initialValues: targets.filter((target) => target.available !== false && (target.detectedCount ?? 0) > 0).map((target) => target.id),
1904
1904
  options: targets.map((target) => ({
@@ -1910,7 +1910,7 @@ async function selectChatSources(targets) {
1910
1910
  }
1911
1911
  async function selectMcpTargets(targets) {
1912
1912
  return ensureValue(await fe({
1913
- message: "Select where to install the MCP (space to toggle, enter to confirm)",
1913
+ message: "Select where to install the MCP",
1914
1914
  required: false,
1915
1915
  initialValues: targets.filter((target) => target.available !== false && (target.detectedCount ?? 0) > 0).map((target) => target.id),
1916
1916
  options: targets.map((target) => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conare",
3
- "version": "0.5.18",
3
+ "version": "0.5.20",
4
4
  "description": "Conare CLI for indexing AI chat history and configuring memory at conare.ai",
5
5
  "type": "module",
6
6
  "bin": {