claude-memory-layer 1.0.39 → 1.0.40

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/dist/cli/index.js CHANGED
@@ -12693,7 +12693,7 @@ function streamClaudeResponse(prompt, stream) {
12693
12693
  import { Hono as Hono9 } from "hono";
12694
12694
  var healthRouter = new Hono9();
12695
12695
  healthRouter.get("/", async (c) => {
12696
- const memoryService = getServiceFromQuery(c);
12696
+ const memoryService = getLightweightServiceFromQuery(c);
12697
12697
  try {
12698
12698
  await memoryService.initialize();
12699
12699
  const [stats, outbox] = await Promise.all([
@@ -14614,7 +14614,7 @@ async function runMarketContextCommand(options) {
14614
14614
  }
14615
14615
  }
14616
14616
  var program = new Command();
14617
- program.name("claude-memory-layer").description("Claude Code Memory Plugin CLI").version("1.0.39");
14617
+ program.name("claude-memory-layer").description("Claude Code Memory Plugin CLI").version("1.0.40");
14618
14618
  program.command("market-context").description("Fetch read-only DART/FRED/Finnhub context with structured MarketContextSnapshot bull/bear/risk/catalyst analysis").option("--company <name>", "Company name for DART fallback search and report subject").option("--dart-corp-code <code>", "Exact DART corp_code for issuer-specific filings").option("--symbol <ticker>", "Listed ticker for Finnhub company profile").option("--providers <list>", "Comma-separated providers: dart,fred,finnhub").option("--fred-series <list>", "Comma-separated FRED series IDs").option("--json", "Print structured JSON including analysis.marketSnapshot").option("--no-snapshot", "Disable MarketContextSnapshot and DART company snapshot analysis").action(async (options) => {
14619
14619
  try {
14620
14620
  await runMarketContextCommand(options);