conare 0.5.3 → 0.5.5

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 +11 -11
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -1850,7 +1850,7 @@ async function selectMcpTargets(targets) {
1850
1850
  }
1851
1851
  async function confirmBackgroundSync() {
1852
1852
  const value = ensureValue(await ve({
1853
- message: "Auto-ingest new chats every 10 minutes?",
1853
+ message: "Auto-index new chats every 10 minutes?",
1854
1854
  initialValue: "yes",
1855
1855
  options: [
1856
1856
  { value: "yes", label: "Yes" },
@@ -2582,7 +2582,7 @@ async function ingestCursor(dbPath, wasmDir) {
2582
2582
  sessionIds.push(composerId);
2583
2583
  }
2584
2584
  } catch (e) {
2585
- console.log(` Cursor ingestion error: ${e.message}`);
2585
+ console.log(` Cursor indexing error: ${e.message}`);
2586
2586
  } finally {
2587
2587
  db.close();
2588
2588
  }
@@ -3621,7 +3621,7 @@ conare — AI memory for your coding tools
3621
3621
  Usage:
3622
3622
  conare Interactive setup with browser auth
3623
3623
  conare install Just install the MCP (all detected clients)
3624
- conare --key <api_key> Ingest chat history (key optional with browser auth)
3624
+ conare --key <api_key> Index chat history (key optional with browser auth)
3625
3625
  conare --key <api_key> --index [path] Index codebase
3626
3626
 
3627
3627
  Supported clients:
@@ -3634,16 +3634,16 @@ Options:
3634
3634
  --project <name> Project name for codebase indexing (auto-detected if omitted)
3635
3635
  --changed Only index files changed in the last git commit
3636
3636
  --dry-run Preview what would be uploaded
3637
- --force Re-ingest all / re-index all (bypass dedup)
3637
+ --force Re-index all (bypass dedup)
3638
3638
  --quiet Suppress all stdout output (for background timer runs)
3639
3639
  --install-sync Set up automatic background sync (every 10 min)
3640
3640
  --uninstall-sync Remove background sync timer and persisted files
3641
3641
  --sync-interval <n> Sync interval in minutes (default: 10)
3642
- --ingest-only Ingest memories without MCP configuration
3643
- --config-only Configure MCP only, skip ingestion
3642
+ --ingest-only Index memories without MCP configuration
3643
+ --config-only Configure MCP only, skip indexing
3644
3644
  --interactive Run guided setup prompts
3645
- --source <name> Only ingest from: claude, codex, cursor
3646
- --wasm-dir <path> Path to sql.js module (for Cursor ingestion)
3645
+ --source <name> Only index from: claude, codex, cursor
3646
+ --wasm-dir <path> Path to sql.js module (for Cursor indexing)
3647
3647
 
3648
3648
  Get your API key at https://conare.ai
3649
3649
  `);
@@ -3837,7 +3837,7 @@ async function main() {
3837
3837
  const localManifestCount = Object.values(localManifest).reduce((sum, entries) => sum + entries.length, 0);
3838
3838
  if (remoteMemoryCount === 0 && localManifestCount > 0) {
3839
3839
  clearIngested();
3840
- log("Remote account is empty; cleared stale local ingestion history.");
3840
+ log("Remote account is empty; cleared stale local index history.");
3841
3841
  log("");
3842
3842
  }
3843
3843
  }
@@ -3952,10 +3952,10 @@ Nothing new to index.`);
3952
3952
  if (opts.force) {
3953
3953
  if (opts.source) {
3954
3954
  clearIngested(opts.source);
3955
- log(`Cleared ingestion history for ${opts.source}`);
3955
+ log(`Cleared index history for ${opts.source}`);
3956
3956
  } else {
3957
3957
  clearIngested();
3958
- log("Cleared all ingestion history");
3958
+ log("Cleared all index history");
3959
3959
  }
3960
3960
  log();
3961
3961
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "conare",
3
- "version": "0.5.3",
4
- "description": "Conare CLI for ingesting AI chat history and configuring memory at conare.ai",
3
+ "version": "0.5.5",
4
+ "description": "Conare CLI for indexing AI chat history and configuring memory at conare.ai",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "conare": "./dist/index.js"