ruvector 0.1.53 → 0.1.54

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/bin/cli.js CHANGED
@@ -3045,11 +3045,13 @@ hooksCmd.command('suggest-context').description('Suggest relevant context').acti
3045
3045
  console.log(`RuVector Intelligence: ${stats.total_patterns} learned patterns, ${stats.total_errors} error fixes available. Use 'ruvector hooks route' for agent suggestions.`);
3046
3046
  });
3047
3047
 
3048
- hooksCmd.command('remember').description('Store in memory').requiredOption('-t, --type <type>', 'Memory type').argument('<content...>', 'Content').action((content, opts) => {
3048
+ hooksCmd.command('remember').description('Store in memory').requiredOption('-t, --type <type>', 'Memory type').option('--silent', 'Suppress output').argument('<content...>', 'Content').action((content, opts) => {
3049
3049
  const intel = new Intelligence();
3050
3050
  const id = intel.remember(opts.type, content.join(' '));
3051
3051
  intel.save();
3052
- console.log(JSON.stringify({ success: true, id }));
3052
+ if (!opts.silent) {
3053
+ console.log(JSON.stringify({ success: true, id }));
3054
+ }
3053
3055
  });
3054
3056
 
3055
3057
  hooksCmd.command('recall').description('Search memory').argument('<query...>', 'Query').option('-k, --top-k <n>', 'Results', '5').action((query, opts) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ruvector",
3
- "version": "0.1.53",
3
+ "version": "0.1.54",
4
4
  "description": "High-performance vector database for Node.js with automatic native/WASM fallback",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/ruvector.db CHANGED
Binary file