claude-memory-layer 1.0.33 → 1.0.34
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 +5 -3
- package/dist/cli/index.js.map +2 -2
- package/dist/mcp/index.js +160 -19
- package/dist/mcp/index.js.map +2 -2
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -9813,7 +9813,8 @@ var HermesSessionHistoryImporter = class {
|
|
|
9813
9813
|
source: "hermes",
|
|
9814
9814
|
hermesSource: session.source,
|
|
9815
9815
|
sourceSessionId: session.id,
|
|
9816
|
-
sourceSessionHash: hashLabel(session.id)
|
|
9816
|
+
sourceSessionHash: hashLabel(session.id),
|
|
9817
|
+
projectPath: effectiveProjectPath
|
|
9817
9818
|
}
|
|
9818
9819
|
);
|
|
9819
9820
|
if (appendResult.success && appendResult.isDuplicate) {
|
|
@@ -9850,7 +9851,8 @@ var HermesSessionHistoryImporter = class {
|
|
|
9850
9851
|
source: "hermes",
|
|
9851
9852
|
hermesSource: session.source,
|
|
9852
9853
|
sourceSessionId: session.id,
|
|
9853
|
-
sourceSessionHash: hashLabel(session.id)
|
|
9854
|
+
sourceSessionHash: hashLabel(session.id),
|
|
9855
|
+
projectPath: effectiveProjectPath
|
|
9854
9856
|
}
|
|
9855
9857
|
);
|
|
9856
9858
|
if (appendResult.success && appendResult.isDuplicate) {
|
|
@@ -13969,7 +13971,7 @@ async function runMarketContextCommand(options) {
|
|
|
13969
13971
|
}
|
|
13970
13972
|
}
|
|
13971
13973
|
var program = new Command();
|
|
13972
|
-
program.name("claude-memory-layer").description("Claude Code Memory Plugin CLI").version("1.0.
|
|
13974
|
+
program.name("claude-memory-layer").description("Claude Code Memory Plugin CLI").version("1.0.34");
|
|
13973
13975
|
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) => {
|
|
13974
13976
|
try {
|
|
13975
13977
|
await runMarketContextCommand(options);
|