@vheins/local-memory-mcp 0.19.0 → 0.19.2

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.
@@ -6064,6 +6064,34 @@ var KG_TOOL_DEFINITIONS = [
6064
6064
  deletedCount: { type: "number" }
6065
6065
  }
6066
6066
  }
6067
+ },
6068
+ {
6069
+ name: "kg-backfill",
6070
+ description: "Scan existing memories and standards to extract Knowledge Graph entities via NLP. If no repo specified, scans all repositories. Progress logged every 100 items.",
6071
+ annotations: {
6072
+ readOnlyHint: false,
6073
+ idempotentHint: false,
6074
+ destructiveHint: false,
6075
+ openWorldHint: false
6076
+ },
6077
+ inputSchema: {
6078
+ type: "object",
6079
+ properties: {
6080
+ repo: {
6081
+ type: "string",
6082
+ description: "Optional repo filter. If omitted, scans all repos."
6083
+ },
6084
+ owner: {
6085
+ type: "string",
6086
+ description: "Optional owner."
6087
+ },
6088
+ source: {
6089
+ type: "string",
6090
+ enum: ["memories", "standards", "both"],
6091
+ description: "Source to scan."
6092
+ }
6093
+ }
6094
+ }
6067
6095
  }
6068
6096
  ];
6069
6097
 
@@ -6706,7 +6734,7 @@ var TaskGetSchema = z4.object({
6706
6734
  // src/mcp/tools/schemas/handoff.ts
6707
6735
  import { z as z5 } from "zod";
6708
6736
  var HandoffCreateSchema = z5.object({
6709
- owner: z5.string().min(1),
6737
+ owner: z5.string().min(1).optional().default(""),
6710
6738
  repo: z5.string().min(1).transform(normalizeRepo),
6711
6739
  from_agent: z5.string().min(1),
6712
6740
  to_agent: z5.string().min(1).optional(),
@@ -6730,7 +6758,7 @@ var HandoffUpdateSchema = z5.object({
6730
6758
  structured: z5.boolean().default(false)
6731
6759
  });
6732
6760
  var HandoffListSchema = z5.object({
6733
- owner: z5.string().min(1),
6761
+ owner: z5.string().min(1).optional().default(""),
6734
6762
  repo: z5.string().min(1).transform(normalizeRepo),
6735
6763
  status: HandoffStatusSchema.optional(),
6736
6764
  from_agent: z5.string().min(1).optional(),
@@ -6740,7 +6768,7 @@ var HandoffListSchema = z5.object({
6740
6768
  structured: z5.boolean().default(false)
6741
6769
  });
6742
6770
  var TaskClaimSchema = z5.object({
6743
- owner: z5.string().min(1),
6771
+ owner: z5.string().min(1).optional().default(""),
6744
6772
  repo: z5.string().min(1).transform(normalizeRepo),
6745
6773
  task_id: z5.string().uuid().optional(),
6746
6774
  task_code: z5.string().optional(),
@@ -6754,7 +6782,7 @@ var TaskClaimSchema = z5.object({
6754
6782
  message: "Provide either task_id or task_code, not both"
6755
6783
  });
6756
6784
  var ClaimListSchema = z5.object({
6757
- owner: z5.string().min(1),
6785
+ owner: z5.string().min(1).optional().default(""),
6758
6786
  repo: z5.string().min(1).transform(normalizeRepo),
6759
6787
  agent: z5.string().min(1).optional(),
6760
6788
  active_only: z5.boolean().default(true),
@@ -6763,7 +6791,7 @@ var ClaimListSchema = z5.object({
6763
6791
  structured: z5.boolean().default(false)
6764
6792
  });
6765
6793
  var ClaimReleaseSchema = z5.object({
6766
- owner: z5.string().min(1),
6794
+ owner: z5.string().min(1).optional().default(""),
6767
6795
  repo: z5.string().min(1).transform(normalizeRepo),
6768
6796
  task_id: z5.string().uuid().optional(),
6769
6797
  task_code: z5.string().optional(),
@@ -6935,6 +6963,11 @@ var DeleteObservationSchema = z8.object({
6935
6963
  repo: z8.string().optional(),
6936
6964
  structured: z8.boolean().default(false)
6937
6965
  });
6966
+ var KGBackfillSchema = z8.object({
6967
+ repo: z8.string().optional(),
6968
+ owner: z8.string().optional().default(""),
6969
+ source: z8.enum(["memories", "standards", "both"]).optional().default("both")
6970
+ });
6938
6971
 
6939
6972
  // src/mcp/tools/handoff.manage.ts
6940
6973
  function buildHandoffListSummary(repo, count, status, fromAgent, toAgent) {
@@ -7290,6 +7323,7 @@ export {
7290
7323
  CreateRelationSchema,
7291
7324
  DeleteRelationSchema,
7292
7325
  DeleteObservationSchema,
7326
+ KGBackfillSchema,
7293
7327
  handleHandoffCreate,
7294
7328
  handleHandoffList,
7295
7329
  handleHandoffUpdate,