@hiveai/mcp 0.24.0 → 0.26.0

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/index.js CHANGED
@@ -1183,6 +1183,7 @@ var IngestFindingsInputSchema = {
1183
1183
  scope: z16.enum(["personal", "team", "module"]).default("team").describe("Visibility scope for the created memories"),
1184
1184
  module: z16.string().optional().describe("Module name (required when scope=module)"),
1185
1185
  min_severity: z16.enum(["info", "minor", "major", "critical", "blocker"]).optional().describe("Ignore findings below this severity"),
1186
+ include_stylistic: z16.boolean().optional().describe("Also ingest auto-fixable stylistic rules (semi/quotes/prefer-const\u2026); off by default as low-value noise"),
1186
1187
  limit: z16.number().int().positive().optional().describe("Cap the number of memories created"),
1187
1188
  author: z16.string().optional().describe("Author handle or email"),
1188
1189
  dry_run: z16.boolean().default(false).describe("When true, return the drafts that WOULD be created without writing them")
@@ -1208,6 +1209,7 @@ async function ingestFindings(input, ctx) {
1208
1209
  module: input.module,
1209
1210
  author: input.author,
1210
1211
  ...input.min_severity ? { minSeverity: input.min_severity } : {},
1212
+ ...input.include_stylistic ? { includeStylistic: true } : {},
1211
1213
  ...input.limit ? { limit: input.limit } : {}
1212
1214
  });
1213
1215
  const existing = existsSync16(ctx.paths.memoriesDir) ? await loadMemoriesFromDir13(ctx.paths.memoriesDir) : [];
@@ -4270,7 +4272,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
4270
4272
  // src/server.ts
4271
4273
  import { hasRecentBriefingMarker, loadConfigSync } from "@hiveai/core";
4272
4274
  var SERVER_NAME = "haive";
4273
- var SERVER_VERSION = "0.24.0";
4275
+ var SERVER_VERSION = "0.26.0";
4274
4276
  function jsonResult(data) {
4275
4277
  return {
4276
4278
  content: [