@productbrain/mcp 0.0.1-beta.4582 → 0.0.1-beta.4586
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.
|
@@ -11968,9 +11968,9 @@ function evictVocabIfFull() {
|
|
|
11968
11968
|
var AUDIT_ACTIONS = ["run"];
|
|
11969
11969
|
var auditSchema = z22.object({
|
|
11970
11970
|
action: z22.enum(AUDIT_ACTIONS).describe(
|
|
11971
|
-
"'run': run the hygiene audit for a
|
|
11971
|
+
"'run': run the hygiene audit for a work package entry."
|
|
11972
11972
|
),
|
|
11973
|
-
entryId: z22.string().describe("
|
|
11973
|
+
entryId: z22.string().describe("Work package entry ID to audit, e.g. '<PREFIX>-<n>'"),
|
|
11974
11974
|
phase: z22.enum(["shaping", "handoff"]).default("shaping").optional().describe(
|
|
11975
11975
|
"'shaping': check shaping-phase fields only. 'handoff': check all required fields including buildContract/buildSequence/exclusions/risks. Default: shaping."
|
|
11976
11976
|
)
|
|
@@ -11986,7 +11986,7 @@ async function handleAuditRun(entryId, phase) {
|
|
|
11986
11986
|
`Entry '${entryId}' not found.`,
|
|
11987
11987
|
"NOT_FOUND",
|
|
11988
11988
|
`Entry '${entryId}' not found.`,
|
|
11989
|
-
"Use entries action=search to find the correct
|
|
11989
|
+
"Use entries action=search to find the correct ID.",
|
|
11990
11990
|
[{ tool: "entries", description: "Search entries", parameters: { action: "search", query: entryId } }]
|
|
11991
11991
|
);
|
|
11992
11992
|
}
|
|
@@ -12166,7 +12166,7 @@ async function handleSpineCheck(story, refresh = false) {
|
|
|
12166
12166
|
var QUALITY_ACTIONS = ["check", "re-evaluate", "verify-chain", "audit", "spine-check"];
|
|
12167
12167
|
var qualitySchema = z23.object({
|
|
12168
12168
|
action: z23.enum(QUALITY_ACTIONS).describe(
|
|
12169
|
-
"'check': read the entry's server quality verdict (tier + criteria). 're-evaluate': trigger fresh evaluation. 'verify-chain': verify entries against the codebase (codeMapping drift, cross-references) \u2014 absorbs `verify`. 'audit': hygiene audit for a
|
|
12169
|
+
"'check': read the entry's server quality verdict (tier + criteria). 're-evaluate': trigger fresh evaluation. 'verify-chain': verify entries against the codebase (codeMapping drift, cross-references) \u2014 absorbs `verify`. 'audit': hygiene audit for a work package entry \u2014 absorbs `audit`. 'spine-check': structural completeness of the purpose+vision+strategy spine \u2014 story:true also runs the on-demand one-story judgment."
|
|
12170
12170
|
),
|
|
12171
12171
|
entryId: z23.string().max(200).optional().describe("For 'check'/'re-evaluate'/'audit': entry ID, e.g. 'TEN-graph-db', '<PREFIX>-<n>'."),
|
|
12172
12172
|
context: z23.enum(["capture", "commit", "review"]).default("review").optional().describe("For re-evaluate: evaluation context"),
|
|
@@ -12256,7 +12256,7 @@ function registerQualityTools(server) {
|
|
|
12256
12256
|
"quality",
|
|
12257
12257
|
{
|
|
12258
12258
|
title: "Quality",
|
|
12259
|
-
description: "Assess, re-evaluate, and verify entry/work package quality. Five actions:\n\n- **check**: Read the entry's server quality verdict (tier + criteria) \u2014 it does not re-score. Suggests links when the entry has no relations.\n- **re-evaluate**: Trigger a fresh quality evaluation. Returns heuristic verdict immediately, schedules LLM evaluation in background.\n- **verify-chain**: Verify knowledge entries against the actual codebase (codeMapping drift, cross-references) \u2014 absorbs `verify`. Produces a trust report with a trust score.\n- **audit**: Run hygiene audit on a
|
|
12259
|
+
description: "Assess, re-evaluate, and verify entry/work package quality. Five actions:\n\n- **check**: Read the entry's server quality verdict (tier + criteria) \u2014 it does not re-score. Suggests links when the entry has no relations.\n- **re-evaluate**: Trigger a fresh quality evaluation. Returns heuristic verdict immediately, schedules LLM evaluation in background.\n- **verify-chain**: Verify knowledge entries against the actual codebase (codeMapping drift, cross-references) \u2014 absorbs `verify`. Produces a trust report with a trust score.\n- **audit**: Run hygiene audit on a work package entry (13/18 gates) \u2014 absorbs `audit`.\n- **spine-check**: Structural completeness of the purpose+vision+strategy spine \u2014 duplicate singletons, connectedness, per-strategy refusal heuristic; story:true also runs the on-demand one-story LLM judgment (never scheduled, result labelled [unvalidated]). Async: a plain call reads back the latest stored verdict and auto-schedules a new run ONLY when none is already in flight AND the stored one is absent/stale/missing the requested story pass \u2014 repeated polling never re-triggers work. Pass refresh:true to force a fresh run regardless.",
|
|
12260
12260
|
inputSchema: qualitySchema,
|
|
12261
12261
|
annotations: { readOnlyHint: false, destructiveHint: false, idempotentHint: true, openWorldHint: false }
|
|
12262
12262
|
},
|
|
@@ -17048,4 +17048,4 @@ export {
|
|
|
17048
17048
|
createProductBrainServer,
|
|
17049
17049
|
initFeatureFlags
|
|
17050
17050
|
};
|
|
17051
|
-
//# sourceMappingURL=chunk-
|
|
17051
|
+
//# sourceMappingURL=chunk-EUMADRQX.js.map
|