memax-cli 0.1.0-alpha.5 → 0.1.0-alpha.6

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/src/index.ts CHANGED
@@ -39,7 +39,7 @@ program
39
39
  // --- Core commands ---
40
40
 
41
41
  program
42
- .command("push")
42
+ .command("push [content]")
43
43
  .description("Save knowledge to your Memax workspace")
44
44
  .option("-f, --file <path>", "File to push")
45
45
  .option("-c, --category <category>", "Category (auto-detected if omitted)")
@@ -115,6 +115,8 @@ program
115
115
  .option("--mcp", "Enable MCP server (agent tools)")
116
116
  .option("--hooks", "Enable context injection hooks")
117
117
  .option("--all", "Enable both MCP and hooks")
118
+ .option("--local", "Use local stdio MCP instead of remote server")
119
+ .option("--print", "Print MCP config JSON to copy/paste (no changes made)")
118
120
  .option("--only <agents>", "Only configure these agents (comma-separated)")
119
121
  .option("--skip <agents>", "Skip these agents (comma-separated)")
120
122
  .action(setupCommand);