enigma-memory 0.1.1 → 0.1.3

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.
@@ -386,6 +386,11 @@ function safeErrorMessage(error) {
386
386
  return 'Registry install verification failed.';
387
387
  }
388
388
 
389
+ export function registryInstallCliOutput(output) {
390
+ if (output.mode === 'dry-run') return output.commands;
391
+ return output;
392
+ }
393
+
389
394
  async function main() {
390
395
  const args = parseRegistryInstallArgs();
391
396
  if (args.help) {
@@ -393,7 +398,7 @@ async function main() {
393
398
  return;
394
399
  }
395
400
  const output = await runRegistryInstallVerification(args);
396
- process.stdout.write(`${JSON.stringify(output, null, 2)}\n`);
401
+ process.stdout.write(`${JSON.stringify(registryInstallCliOutput(output), null, 2)}\n`);
397
402
  if (output.ok !== true) process.exitCode = 1;
398
403
  }
399
404
 
@@ -0,0 +1,10 @@
1
+ {
2
+ "mcpServers": {
3
+ "enigma": {
4
+ "command": "enigma-mcp",
5
+ "env": {
6
+ "ENIGMA_BUNDLE": "<ENIGMA_BUNDLE>"
7
+ }
8
+ }
9
+ }
10
+ }