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