@unbrained/pm-cli 2026.5.28 → 2026.5.29
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/CHANGELOG.md +100 -83
- package/dist/cli/commander-usage.js +8 -8
- package/dist/cli/commander-usage.js.map +1 -1
- package/dist/cli/commands/aggregate.js +4 -3
- package/dist/cli/commands/aggregate.js.map +1 -1
- package/dist/cli/commands/calendar.d.ts +8 -0
- package/dist/cli/commands/calendar.js +13 -2
- package/dist/cli/commands/calendar.js.map +1 -1
- package/dist/cli/commands/completion.js +34 -2
- package/dist/cli/commands/completion.js.map +1 -1
- package/dist/cli/commands/config.d.ts +11 -1
- package/dist/cli/commands/config.js +68 -6
- package/dist/cli/commands/config.js.map +1 -1
- package/dist/cli/commands/create.d.ts +1 -0
- package/dist/cli/commands/create.js +40 -4
- package/dist/cli/commands/create.js.map +1 -1
- package/dist/cli/commands/extension/bundled-catalog.js +4 -3
- package/dist/cli/commands/extension/bundled-catalog.js.map +1 -1
- package/dist/cli/commands/health.js +3 -11
- package/dist/cli/commands/health.js.map +1 -1
- package/dist/cli/commands/linked-test-parsers.js +5 -4
- package/dist/cli/commands/linked-test-parsers.js.map +1 -1
- package/dist/cli/commands/plan.js +5 -4
- package/dist/cli/commands/plan.js.map +1 -1
- package/dist/cli/commands/search.js +45 -2
- package/dist/cli/commands/search.js.map +1 -1
- package/dist/cli/commands/update-many.js +35 -6
- package/dist/cli/commands/update-many.js.map +1 -1
- package/dist/cli/commands/update.d.ts +2 -0
- package/dist/cli/commands/update.js +38 -6
- package/dist/cli/commands/update.js.map +1 -1
- package/dist/cli/help-json-payload.d.ts +1 -11
- package/dist/cli/help-json-payload.js +12 -12
- package/dist/cli/help-json-payload.js.map +1 -1
- package/dist/cli/register-mutation.js +20 -8
- package/dist/cli/register-mutation.js.map +1 -1
- package/dist/cli/register-setup.js +4 -2
- package/dist/cli/register-setup.js.map +1 -1
- package/dist/cli/registration-helpers.d.ts +2 -6
- package/dist/cli/registration-helpers.js +9 -6
- package/dist/cli/registration-helpers.js.map +1 -1
- package/dist/core/config/nested-settings.d.ts +86 -0
- package/dist/core/config/nested-settings.js +258 -0
- package/dist/core/config/nested-settings.js.map +1 -0
- package/dist/core/item/parse.d.ts +19 -0
- package/dist/core/item/parse.js +76 -2
- package/dist/core/item/parse.js.map +1 -1
- package/dist/core/item/priority.d.ts +2 -1
- package/dist/core/item/priority.js +12 -2
- package/dist/core/item/priority.js.map +1 -1
- package/dist/core/search/providers.js +25 -5
- package/dist/core/search/providers.js.map +1 -1
- package/dist/core/search/staleness.d.ts +23 -0
- package/dist/core/search/staleness.js +34 -0
- package/dist/core/search/staleness.js.map +1 -0
- package/dist/core/search/vector-stores.js +12 -3
- package/dist/core/search/vector-stores.js.map +1 -1
- package/dist/core/shared/html-entity-decode.d.ts +21 -0
- package/dist/core/shared/html-entity-decode.js +122 -0
- package/dist/core/shared/html-entity-decode.js.map +1 -0
- package/dist/core/shared/split-comma-list.d.ts +20 -0
- package/dist/core/shared/split-comma-list.js +29 -0
- package/dist/core/shared/split-comma-list.js.map +1 -0
- package/dist/mcp/server.js +10 -3
- package/dist/mcp/server.js.map +1 -1
- package/dist/sdk/cli-contracts/commander-mutation-options.js +47 -11
- package/dist/sdk/cli-contracts/commander-mutation-options.js.map +1 -1
- package/dist/sdk/cli-contracts/tool-option-contracts.js +5 -2
- package/dist/sdk/cli-contracts/tool-option-contracts.js.map +1 -1
- package/dist/sdk/cli-contracts/tool-parameter-tables.js +12 -2
- package/dist/sdk/cli-contracts/tool-parameter-tables.js.map +1 -1
- package/dist/sdk/cli-contracts.js +25 -4
- package/dist/sdk/cli-contracts.js.map +1 -1
- package/dist/sdk/runtime.d.ts +1 -1
- package/dist/sdk/runtime.js +3 -3
- package/dist/sdk/runtime.js.map +1 -1
- package/docs/AGENT_GUIDE.md +7 -0
- package/docs/COMMANDS.md +17 -0
- package/docs/CONFIGURATION.md +55 -0
- package/docs/QUICKSTART.md +3 -0
- package/package.json +1 -1
- package/packages/pm-calendar/extensions/calendar/runtime.js +5 -0
- package/packages/pm-calendar/extensions/calendar/runtime.ts +6 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tool-parameter-tables.js","sources":["sdk/cli-contracts/tool-parameter-tables.ts"],"sourceRoot":"/","sourcesContent":["import {\n PLAN_HARNESS_VALUES,\n PLAN_MODE_VALUES,\n PLAN_STEP_LINK_KIND_VALUES,\n PLAN_STEP_STATUS_VALUES,\n} from \"../../types/index.js\";\n\nexport const PM_TOOL_PARAMETER_PROPERTIES: Record<string, unknown> = {\n json: { type: \"boolean\", default: true },\n quiet: { type: \"boolean\" },\n profile: { type: \"boolean\" },\n noExtensions: { type: \"boolean\" },\n noPager: { type: \"boolean\" },\n path: { type: \"string\" },\n pmExecutable: { type: \"string\" },\n timeoutMs: { type: \"number\" },\n id: { type: \"string\" },\n target: { type: \"string\" },\n github: { type: \"string\" },\n ref: { type: \"string\" },\n query: { type: \"string\" },\n keywords: { type: \"string\" },\n fields: { type: \"string\" },\n sort: { type: \"string\", enum: [\"priority\", \"deadline\", \"updated_at\", \"created_at\", \"title\", \"parent\"] },\n prefix: { type: \"string\" },\n preset: { type: \"string\", enum: [\"minimal\", \"default\", \"strict\", \"custom\"] },\n defaults: { type: \"boolean\" },\n agentGuidance: { type: \"string\", enum: [\"ask\", \"add\", \"skip\", \"status\"] },\n withPackages: { type: \"boolean\" },\n scope: { type: \"string\", enum: [\"project\", \"global\"] },\n contractAction: { type: \"string\" },\n command: { type: \"string\" },\n schemaOnly: { type: \"boolean\" },\n flagsOnly: { type: \"boolean\" },\n availabilityOnly: { type: \"boolean\" },\n runtimeOnly: { type: \"boolean\" },\n activeOnly: { type: \"boolean\" },\n eagerTags: { type: \"boolean\" },\n configAction: { type: \"string\", enum: [\"get\", \"set\", \"list\", \"export\"] },\n key: { type: \"string\" },\n title: { type: \"string\" },\n description: { type: \"string\" },\n type: { type: \"string\" },\n template: { type: \"string\" },\n createMode: { type: \"string\", enum: [\"strict\", \"progressive\"] },\n schedulePreset: { type: \"string\", enum: [\"lightweight\"] },\n status: { type: \"string\", enum: [\"draft\", \"open\", \"in_progress\", \"blocked\", \"closed\", \"canceled\", \"in-progress\"] },\n filterStatus: { type: \"string\" },\n filterType: { type: \"string\" },\n filterTag: { type: \"string\" },\n filterPriority: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n filterDeadlineBefore: { type: \"string\" },\n filterDeadlineAfter: { type: \"string\" },\n filterAssignee: { type: \"string\" },\n filterAssigneeFilter: { type: \"string\", enum: [\"assigned\", \"unassigned\"] },\n filterParent: { type: \"string\" },\n filterSprint: { type: \"string\" },\n filterRelease: { type: \"string\" },\n closeReason: { type: \"string\" },\n priority: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n tags: { type: \"string\" },\n body: { type: \"string\" },\n deadline: { type: \"string\" },\n estimate: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n acceptanceCriteria: { type: \"string\" },\n author: { type: \"string\" },\n message: { type: \"string\" },\n assignee: { type: \"string\" },\n assigneeFilter: { type: \"string\", enum: [\"assigned\", \"unassigned\"] },\n parent: { type: \"string\" },\n reviewer: { type: \"string\" },\n risk: { type: \"string\" },\n confidence: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n sprint: { type: \"string\" },\n release: { type: \"string\" },\n blockedBy: { type: \"string\" },\n blockedReason: { type: \"string\" },\n unblockNote: { type: \"string\" },\n reporter: { type: \"string\" },\n severity: { type: \"string\" },\n environment: { type: \"string\" },\n reproSteps: { type: \"string\" },\n resolution: { type: \"string\" },\n expectedResult: { type: \"string\" },\n actualResult: { type: \"string\" },\n affectedVersion: { type: \"string\" },\n fixedVersion: { type: \"string\" },\n component: { type: \"string\" },\n regression: { anyOf: [{ type: \"boolean\" }, { type: \"string\" }, { type: \"number\" }] },\n customerImpact: { type: \"string\" },\n definitionOfReady: { type: \"string\" },\n order: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n goal: { type: \"string\" },\n objective: { type: \"string\" },\n value: { type: \"string\" },\n impact: { type: \"string\" },\n outcome: { type: \"string\" },\n whyNow: { type: \"string\" },\n mode: {\n type: \"string\",\n enum: [\"keyword\", \"semantic\", \"hybrid\", \"title_exact\", \"title_fuzzy\", \"parent_scope\"],\n },\n op: { type: \"string\" },\n compact: { type: \"boolean\" },\n brief: { type: \"boolean\" },\n full: { type: \"boolean\" },\n view: { type: \"string\", enum: [\"agenda\", \"day\", \"week\", \"month\"] },\n date: { type: \"string\" },\n from: { type: \"string\" },\n to: { type: \"string\" },\n past: { type: \"boolean\" },\n fullPeriod: { type: \"boolean\" },\n include: { type: \"string\" },\n recurrenceLookaheadDays: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n recurrenceLookbackDays: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n occurrenceLimit: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n includeLinked: { type: \"boolean\" },\n semantic: { type: \"boolean\" },\n hybrid: { type: \"boolean\" },\n titleExact: { type: \"boolean\" },\n phraseExact: { type: \"boolean\" },\n includeBody: { type: \"boolean\" },\n tag: { type: \"string\" },\n deadlineBefore: { type: \"string\" },\n deadlineAfter: { type: \"string\" },\n limit: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n limitItems: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n fullHistory: { type: \"boolean\" },\n latest: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n offset: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n progress: { type: \"boolean\" },\n background: { type: \"boolean\" },\n runId: { type: \"string\" },\n stream: {\n anyOf: [{ type: \"boolean\" }, { type: \"string\", enum: [\"stdout\", \"stderr\", \"both\", \"rows\", \"ndjson\", \"jsonl\"] }],\n },\n tail: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n envSet: { type: \"array\", items: { type: \"string\" } },\n envClear: { type: \"array\", items: { type: \"string\" } },\n sharedHostSafe: { type: \"boolean\" },\n detail: { type: \"string\", enum: [\"summary\", \"deep\"] },\n trace: { type: \"boolean\" },\n reload: { type: \"boolean\" },\n watch: { type: \"boolean\" },\n runtimeProbe: { type: \"boolean\" },\n fixManagedState: { type: \"boolean\" },\n pmContext: { type: \"string\", enum: [\"schema\", \"tracker\", \"auto\"] },\n overrideLinkedPmContext: { type: \"boolean\" },\n failOnContextMismatch: { type: \"boolean\" },\n failOnSkipped: { type: \"boolean\" },\n failOnEmptyTestRun: { type: \"boolean\" },\n requireAssertionsForPm: { type: \"boolean\" },\n checkContext: { type: \"boolean\" },\n autoPmContext: { type: \"boolean\" },\n diff: { type: \"boolean\" },\n verify: { type: \"boolean\" },\n literal: { type: \"array\", items: { type: \"string\" } },\n regex: { type: \"array\", items: { type: \"string\" } },\n replacement: { type: \"string\" },\n timeout: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n validateClose: { type: \"string\", enum: [\"off\", \"warn\", \"strict\"] },\n checkMetadata: { type: \"boolean\" },\n metadataProfile: { type: \"string\", enum: [\"core\", \"strict\", \"custom\"] },\n checkResolution: { type: \"boolean\" },\n checkLifecycle: { type: \"boolean\" },\n checkStaleBlockers: { type: \"boolean\" },\n dependencyCycleSeverity: { type: \"string\", enum: [\"off\", \"warn\", \"error\"] },\n checkFiles: { type: \"boolean\" },\n strictDirectories: { type: \"boolean\" },\n checkOnly: { type: \"boolean\" },\n checkTelemetry: { type: \"boolean\" },\n noRefresh: { type: \"boolean\" },\n refreshVectors: { type: \"boolean\" },\n verboseStaleItems: { type: \"boolean\" },\n skipVectors: { type: \"boolean\" },\n skipIntegrity: { type: \"boolean\" },\n skipDrift: { type: \"boolean\" },\n verboseDiagnostics: { type: \"boolean\" },\n scanMode: { type: \"string\", enum: [\"default\", \"tracked-all\", \"tracked-all-strict\"] },\n includePmInternals: { type: \"boolean\" },\n verboseFileLists: { type: \"boolean\" },\n strictExit: { type: \"boolean\" },\n failOnWarn: { type: \"boolean\" },\n checkHistoryDrift: { type: \"boolean\" },\n checkCommandReferences: { type: \"boolean\" },\n allowAuditNote: { type: \"boolean\" },\n allowAuditLearning: { type: \"boolean\" },\n allowAuditComment: { type: \"boolean\" },\n allowAuditUpdate: { type: \"boolean\" },\n allowAuditDepUpdate: { type: \"boolean\" },\n allowAuditRelease: { type: \"boolean\" },\n dryRun: { type: \"boolean\" },\n cliOnly: { type: \"boolean\" },\n packagesOnly: { type: \"boolean\" },\n repair: { type: \"boolean\" },\n packageName: { type: \"string\" },\n rollback: { type: \"string\" },\n noCheckpoint: { type: \"boolean\" },\n force: { type: \"boolean\" },\n run: { type: \"boolean\" },\n count: { type: \"boolean\" },\n includeUnparented: { type: \"boolean\" },\n gcScope: {\n type: \"array\",\n items: { type: \"string\", enum: [\"index\", \"embeddings\", \"runtime\"] },\n },\n maxDepth: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n collapse: { type: \"string\", enum: [\"none\", \"repeated\"] },\n summary: { type: \"boolean\" },\n shell: { type: \"string\", enum: [\"bash\", \"zsh\", \"fish\"] },\n stdin: { type: \"boolean\" },\n file: { type: \"string\" },\n preserveSourceIds: { type: \"boolean\" },\n folder: { type: \"string\" },\n subcommand: { type: \"string\" },\n name: { type: \"string\" },\n defaultStatus: { type: \"string\" },\n alias: { type: \"array\", items: { type: \"string\" } },\n text: { type: \"string\" },\n add: { type: \"array\", items: { type: \"string\" } },\n addGlob: { type: \"array\", items: { type: \"string\" } },\n remove: { type: \"array\", items: { type: \"string\" } },\n migrate: { type: \"array\", items: { type: \"string\" } },\n discover: { type: \"boolean\" },\n apply: { type: \"boolean\" },\n discoveryNote: { type: \"string\" },\n appendStable: { type: \"boolean\" },\n validatePaths: { type: \"boolean\" },\n audit: { type: \"boolean\" },\n dep: { type: \"array\", items: { type: \"string\" } },\n depRemove: { type: \"array\", items: { type: \"string\" } },\n replaceDeps: { type: \"boolean\" },\n replaceTests: { type: \"boolean\" },\n comment: { type: \"array\", items: { type: \"string\" } },\n note: { type: \"array\", items: { type: \"string\" } },\n learning: { type: \"array\", items: { type: \"string\" } },\n linkedFile: { type: \"array\", items: { type: \"string\" } },\n linkedTest: { type: \"array\", items: { type: \"string\" } },\n doc: { type: \"array\", items: { type: \"string\" } },\n reminder: { type: \"array\", items: { type: \"string\" } },\n event: { type: \"array\", items: { type: \"string\" } },\n typeOption: { type: \"array\", items: { type: \"string\" } },\n unset: { type: \"array\", items: { type: \"string\" } },\n clearDeps: { type: \"boolean\" },\n clearComments: { type: \"boolean\" },\n clearNotes: { type: \"boolean\" },\n clearLearnings: { type: \"boolean\" },\n clearFiles: { type: \"boolean\" },\n clearTests: { type: \"boolean\" },\n clearDocs: { type: \"boolean\" },\n clearReminders: { type: \"boolean\" },\n clearEvents: { type: \"boolean\" },\n clearTypeOptions: { type: \"boolean\" },\n criterion: { type: \"array\", items: { type: \"string\" } },\n clearCriteria: { type: \"boolean\" },\n groupBy: { type: \"string\" },\n threshold: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n format: { type: \"string\" },\n depth: { type: \"string\", enum: [\"brief\", \"standard\", \"deep\"] },\n section: { type: \"array\", items: { type: \"string\", enum: [\"hierarchy\", \"activity\", \"progress\", \"blockers\", \"files\", \"workload\", \"staleness\", \"tests\"] } },\n activityLimit: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n staleThreshold: { type: \"string\" },\n policy: { type: \"string\" },\n};\n\nexport const PLAN_SUBCOMMAND_VALUES = [\n \"create\",\n \"show\",\n \"add-step\",\n \"update-step\",\n \"complete-step\",\n \"block-step\",\n \"reorder-step\",\n \"remove-step\",\n \"link\",\n \"unlink\",\n \"decision\",\n \"discovery\",\n \"validation\",\n \"resume\",\n \"approve\",\n \"materialize\",\n] as const;\n\nexport const PLAN_ACTION_PARAMETER_PROPERTIES: Record<string, unknown> = {\n subcommand: { type: \"string\", enum: [...PLAN_SUBCOMMAND_VALUES] },\n stepRef: { type: \"string\" },\n reorderTo: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n scope: { type: \"string\" },\n harness: { type: \"string\", enum: [...PLAN_HARNESS_VALUES] },\n mode: { type: \"string\", enum: [...PLAN_MODE_VALUES] },\n resumeContext: { type: \"string\" },\n related: { type: \"string\" },\n blocks: { type: \"string\" },\n claim: { type: \"boolean\" },\n fromSearch: { type: \"string\" },\n stepTitle: { type: \"string\" },\n stepBody: { type: \"string\" },\n stepOwner: { type: \"string\" },\n stepStatus: { type: \"string\", enum: [...PLAN_STEP_STATUS_VALUES] },\n stepEvidence: { type: \"string\" },\n stepBlockedReason: { type: \"string\" },\n stepReplacement: { type: \"string\" },\n dependsOn: { type: \"string\" },\n link: { type: \"string\" },\n linkKind: { type: \"string\", enum: [...PLAN_STEP_LINK_KIND_VALUES] },\n linkNote: { type: \"string\" },\n promoteToItemDep: { type: \"boolean\" },\n allowMultipleActive: { type: \"boolean\" },\n file: { anyOf: [{ type: \"string\" }, { type: \"array\", items: { type: \"string\" } }] },\n test: { anyOf: [{ type: \"string\" }, { type: \"array\", items: { type: \"string\" } }] },\n doc: { anyOf: [{ type: \"string\" }, { type: \"array\", items: { type: \"string\" } }] },\n decisionText: { type: \"string\" },\n decision: { type: \"string\" },\n decisionRationale: { type: \"string\" },\n decisionEvidence: { type: \"string\" },\n discoveryText: { type: \"string\" },\n discovery: { type: \"string\" },\n validationText: { type: \"string\" },\n validation: { type: \"string\" },\n validationCommand: { type: \"string\" },\n validationExpected: { type: \"string\" },\n steps: { type: \"array\", items: { type: \"string\" } },\n materializeType: { type: \"string\" },\n materializeParent: { type: \"string\" },\n materializeTags: { type: \"string\" },\n};\n\nexport const PLAN_ACTION_PARAMETER_METADATA: Record<string, { description: string; examples?: unknown[] }> = {\n subcommand: {\n description: \"Plan workflow operation to run.\",\n examples: [\"create\", \"show\", \"add-step\", \"approve\"],\n },\n stepRef: {\n description: \"Plan step id or order for step lifecycle subcommands.\",\n examples: [\"plan-step-001\", \"1\"],\n },\n reorderTo: {\n description: \"New integer order for reorder-step.\",\n examples: [1, \"2\"],\n },\n scope: {\n description: \"Short free-text scope statement describing what the Plan covers.\",\n examples: [\"Release readiness audit\", \"Search package migration\"],\n },\n mode: {\n description: \"Plan lifecycle mode.\",\n examples: [\"draft\", \"research\", \"approved\"],\n },\n file: {\n description: \"File link to attach while creating or materializing a Plan.\",\n examples: [\"path=src/cli.ts,note=implementation surface\"],\n },\n test: {\n description: \"Test command link to attach while creating or materializing a Plan.\",\n examples: [\"command=pnpm build,timeout_seconds=300\"],\n },\n doc: {\n description: \"Documentation link to attach while creating or materializing a Plan.\",\n examples: [\"path=docs/SDK.md,note=public API reference\"],\n },\n};\n\nexport const PM_TOOL_PARAMETER_METADATA: Record<string, { description: string; examples?: unknown[] }> = {\n action: {\n description: \"Tool action to execute.\",\n },\n path: {\n description: \"Optional PM data root override for this invocation.\",\n examples: [\".agents/pm\"],\n },\n scope: {\n description: \"Scope selector for commands that operate on project or global state. Linked files, docs, and tests default to project scope when omitted.\",\n examples: [\"project\", \"global\"],\n },\n detail: {\n description: \"Detail mode for commands that support concise and deep diagnostics.\",\n examples: [\"summary\", \"deep\"],\n },\n trace: {\n description: \"When true for extension-doctor, include actionable registration traces in deep diagnostics.\",\n },\n reload: {\n description: \"When true for extension action payloads, trigger cache-busted extension module reload.\",\n },\n watch: {\n description: \"When true for extension-reload/extension action payloads, enable watch mode semantics.\",\n },\n runtimeProbe: {\n description: \"When true for extension-manage, run a doctor-like runtime activation probe for parity fields.\",\n },\n fixManagedState: {\n description: \"When true for extension-manage/extension-doctor, adopt unmanaged extensions before diagnostics/update checks.\",\n },\n target: {\n description: \"Positional target argument for the selected action (ID, source, package source, or extension name).\",\n examples: [\"pm-a1b2\", \".agents/pm/extensions/sample\", \"sample-extension\"],\n },\n github: {\n description: \"GitHub shorthand owner/repo[/path] source for package/extension install actions.\",\n examples: [\"org/repo/extensions/sample\"],\n },\n ref: {\n description: \"Git ref/branch/tag used when installing from GitHub shorthand/URL sources.\",\n examples: [\"main\", \"v1.0.0\"],\n },\n cliOnly: {\n description: \"Restrict upgrade to the pm CLI/SDK npm package.\",\n },\n packagesOnly: {\n description: \"Restrict upgrade to managed installable pm packages.\",\n },\n repair: {\n description: \"Force npm global reinstall semantics when upgrading the pm CLI/SDK.\",\n },\n tag: {\n description: \"npm version or dist-tag used for CLI and registry package upgrades.\",\n examples: [\"latest\", \"next\", \"2026.5.11\"],\n },\n packageName: {\n description: \"Override the pm CLI package name for self-upgrade automation and tests.\",\n examples: [\"@unbrained/pm-cli\"],\n },\n json: {\n description: \"Emit machine-readable JSON output.\",\n },\n quiet: {\n description: \"Suppress stdout payload output.\",\n },\n noExtensions: {\n description: \"Disable extension loading for this invocation.\",\n },\n noPager: {\n description: \"Disable pager integration for help and long output.\",\n },\n profile: {\n description: \"Emit deterministic timing diagnostics to stderr.\",\n },\n timeoutMs: {\n description: \"Tool execution timeout in milliseconds.\",\n examples: [120000],\n },\n id: {\n description: \"Item identifier for read or mutation actions.\",\n examples: [\"pm-a1b2\"],\n },\n runId: {\n description: \"Background test run identifier.\",\n examples: [\"tr-kq9x3f-93acde\"],\n },\n title: {\n description: \"Item title text.\",\n },\n description: {\n description: \"Item description text.\",\n },\n type: {\n description: \"Item type name from the active runtime type registry.\",\n examples: [\"Task\", \"Feature\"],\n },\n subcommand: {\n description: \"Subcommand for the schema action.\",\n examples: [\"add-type\"],\n },\n name: {\n description: \"Custom item type name to register (for schema add-type).\",\n examples: [\"Spike\"],\n },\n defaultStatus: {\n description: \"Default status hint recorded for a custom item type.\",\n examples: [\"open\"],\n },\n alias: {\n description: \"Aliases for the custom item type (repeatable).\",\n examples: [[\"spike\", \"research\"]],\n },\n preset: {\n description: \"Governance preset for initialization flows.\",\n examples: [\"minimal\", \"default\", \"strict\"],\n },\n defaults: {\n description: \"Use non-interactive setup defaults during initialization.\",\n },\n agentGuidance: {\n description: \"Control AGENTS.md/CLAUDE.md guidance behavior during init: ask, add, skip, or status.\",\n examples: [\"ask\", \"add\", \"skip\", \"status\"],\n },\n withPackages: {\n description: \"Install all bundled first-party pm packages during initialization.\",\n },\n createMode: {\n description: \"Create required-option policy mode.\",\n examples: [\"strict\", \"progressive\"],\n },\n schedulePreset: {\n description: \"Schedule-centric create preset for Reminder, Meeting, and Event types.\",\n examples: [\"lightweight\"],\n },\n status: {\n description: \"Item status value.\",\n examples: [\"open\", \"in_progress\"],\n },\n priority: {\n description: \"Priority value in range 0..4.\",\n examples: [0, 1, \"2\"],\n },\n order: {\n description: \"Planning order/rank value for create/update, or sort direction (asc|desc) for list-family sorting.\",\n examples: [0, 1, \"2\", \"asc\", \"desc\"],\n },\n sort: {\n description: \"List-family sort field selector.\",\n examples: [\"priority\", \"deadline\", \"updated_at\", \"created_at\", \"title\", \"parent\"],\n },\n tags: {\n description: \"Comma-delimited tag list.\",\n examples: [\"pm-cli,agent-ux\"],\n },\n deadline: {\n description: \"ISO/date timestamp or relative offset (+6h/+1d/+2w/+6m).\",\n examples: [\"2026-04-01T00:00:00.000Z\", \"+1d\"],\n },\n estimate: {\n description: \"Estimated effort in minutes.\",\n examples: [60, \"120\"],\n },\n acceptanceCriteria: {\n description: \"Acceptance criteria text.\",\n },\n author: {\n description: \"Mutation author identity.\",\n examples: [\"codex-agent\"],\n },\n message: {\n description: \"History message for mutation audit trail.\",\n },\n assignee: {\n description: \"Assignee identity.\",\n examples: [\"codex-agent\"],\n },\n assigneeFilter: {\n description: \"Assignee presence selector for list/calendar/context/comments-audit filters.\",\n examples: [\"assigned\", \"unassigned\"],\n },\n parent: {\n description: \"Parent item ID filter for hierarchical list queries.\",\n examples: [\"pm-epic01\"],\n },\n unset: {\n description: \"Repeatable list of front-matter fields to clear explicitly during create/update mutations.\",\n examples: [[\"deadline\", \"assignee\"], [\"close-reason\"]],\n },\n clearDeps: {\n description: \"When true, clear linked dependencies.\",\n },\n replaceDeps: {\n description: \"When true for update, atomically replace dependencies with the supplied --dep values.\",\n },\n replaceTests: {\n description: \"When true for update, atomically replace linked tests with the supplied --test values.\",\n },\n clearComments: {\n description: \"When true, clear item comments.\",\n },\n clearNotes: {\n description: \"When true, clear item notes.\",\n },\n clearLearnings: {\n description: \"When true, clear item learnings.\",\n },\n clearFiles: {\n description: \"When true, clear linked files.\",\n },\n clearTests: {\n description: \"When true, clear linked tests.\",\n },\n clearDocs: {\n description: \"When true, clear linked docs.\",\n },\n clearReminders: {\n description: \"When true, clear reminders.\",\n },\n clearEvents: {\n description: \"When true, clear events.\",\n },\n clearTypeOptions: {\n description: \"When true, clear type option metadata.\",\n },\n clearCriteria: {\n description:\n \"When true for config set criteria-list keys (definition-of-done, metadata-required-fields, lifecycle pattern lists), clear the criteria list.\",\n },\n mode: {\n description:\n \"Mode selector for search/reindex (keyword|semantic|hybrid) and dedupe-audit (title_exact|title_fuzzy|parent_scope).\",\n examples: [\"keyword\", \"hybrid\", \"title_exact\"],\n },\n op: {\n description: \"History operation filter for activity output.\",\n examples: [\"create\", \"update\", \"close\", \"update_audit\"],\n },\n fullPeriod: {\n description: \"For day/week/month calendar views, include the full anchored period instead of clipping the start to now.\",\n },\n progress: {\n description: \"Emit progress diagnostics to stderr for long-running operations.\",\n },\n background: {\n description: \"Run linked tests in managed background mode.\",\n },\n envSet: {\n description: \"Repeatable runtime environment KEY=VALUE overrides for linked-test execution.\",\n examples: [[\"PORT=0\", \"PLAYWRIGHT_HTML_OPEN=never\"]],\n },\n envClear: {\n description: \"Repeatable runtime environment variable names to clear before linked-test execution.\",\n examples: [[\"PLAYWRIGHT_BASE_URL\"]],\n },\n sharedHostSafe: {\n description: \"Apply additive shared-host-safe runtime defaults during linked-test execution.\",\n },\n pmContext: {\n description:\n \"PM linked-test context mode (schema keeps isolated tracker data; tracker seeds source tracker data; auto uses tracker for PM tracker-read linked commands).\",\n examples: [\"schema\", \"tracker\", \"auto\"],\n },\n overrideLinkedPmContext: {\n description: \"Force run-level --pm-context to override per-linked-test pm_context_mode metadata for all linked-test entries.\",\n },\n failOnContextMismatch: {\n description: \"Fail linked PM command runs when source and sandbox tracker item counts differ.\",\n },\n failOnSkipped: {\n description: \"Treat skipped linked tests as dependency-failed policy violations.\",\n },\n failOnEmptyTestRun: {\n description: \"Treat successful linked-test commands that report zero executed tests as failures.\",\n },\n requireAssertionsForPm: {\n description: \"Require assertion metadata for linked PM command test entries during run execution.\",\n },\n checkContext: {\n description: \"Run linked PM command context preflight diagnostics before command execution.\",\n },\n autoPmContext: {\n description:\n \"Auto-remediate PM tracker-read linked commands by routing those entries through tracker context regardless of linked-test pm_context_mode overrides.\",\n },\n dryRun: {\n description: \"Preview command effects without mutating storage artifacts.\",\n },\n gcScope: {\n description: \"Repeatable gc scope selector values (index, embeddings, runtime).\",\n examples: [[\"index\", \"embeddings\"], [\"runtime\"]],\n },\n offset: {\n description: \"Number of matching rows to skip before limit is applied.\",\n examples: [0, 50, \"100\"],\n },\n limitItems: {\n description: \"Maximum number of filtered items to include in comments-audit output (alias: --limit).\",\n examples: [10, \"25\"],\n },\n fullHistory: {\n description: \"When true for comments-audit, export full per-item comment history rows; cannot be combined with latest.\",\n },\n latest: {\n description: \"Number of most recent comments to include per item in comments-audit output (use 0 for summary-only item rows).\",\n examples: [0, 1, \"3\"],\n },\n literal: {\n description: \"Repeatable literal matcher used by history-redact to scrub exact string values.\",\n examples: [\"[redacted_path_prefix]/private/path\"],\n },\n regex: {\n description:\n \"Repeatable regex matcher used by history-redact. Accepts either /pattern/flags or a raw pattern (global mode is auto-enabled).\",\n examples: [\"/192\\\\\\\\.168\\\\\\\\.[0-9.]+/g\", \"token=[A-Za-z0-9_-]+\"],\n },\n replacement: {\n description: 'Replacement text used by history-redact (defaults to \"[redacted]\").',\n examples: [\"[scrubbed_path]\"],\n },\n validateClose: {\n description: 'Close-time metadata validation mode (\"off\", \"warn\", or \"strict\").',\n examples: [\"off\", \"warn\", \"strict\"],\n },\n checkMetadata: {\n description: \"Run metadata completeness checks.\",\n },\n metadataProfile: {\n description: \"Select metadata validation profile for --check-metadata.\",\n examples: [\"core\", \"strict\", \"custom\"],\n },\n checkResolution: {\n description: \"Run closed-item resolution metadata checks.\",\n },\n checkLifecycle: {\n description: \"Run active-item lifecycle governance drift checks.\",\n },\n checkStaleBlockers: {\n description: \"Include stale blocker-pattern diagnostics in lifecycle checks.\",\n },\n dependencyCycleSeverity: {\n description: \"Set dependency-cycle warning policy for lifecycle checks.\",\n examples: [\"off\", \"warn\", \"error\"],\n },\n checkFiles: {\n description: \"Run linked-file and orphaned-file checks.\",\n },\n strictDirectories: {\n description: \"Treat optional item-type directories as required health failures.\",\n },\n checkOnly: {\n description: \"For health action, run read-only diagnostics without refreshing vectors.\",\n },\n checkTelemetry: {\n description: \"For health action, probe telemetry endpoint health and include network diagnostics.\",\n },\n noRefresh: {\n description: \"For health action, skip vector refresh while still running checks.\",\n },\n refreshVectors: {\n description: \"For health action, explicitly refresh stale vectors.\",\n },\n verboseStaleItems: {\n description: \"For health action, include full stale-item arrays in vectorization details.\",\n },\n skipVectors: {\n description: \"For health action, skip vectorization checks for a faster diagnostic run.\",\n },\n skipIntegrity: {\n description: \"For health action, skip item/history file integrity checks for a faster diagnostic run.\",\n },\n skipDrift: {\n description: \"For health action, skip history drift hash checks for a faster diagnostic run.\",\n },\n scanMode: {\n description: \"Select file candidate scan mode for --check-files.\",\n examples: [\"default\", \"tracked-all\", \"tracked-all-strict\"],\n },\n includePmInternals: {\n description: \"Include PM storage internals in tracked-all candidate scans.\",\n },\n verboseFileLists: {\n description: \"For validate action, include full file-path lists for --check-files details.\",\n },\n verboseDiagnostics: {\n description: \"For validate action, include full diagnostic ID lists instead of compact summaries.\",\n },\n strictExit: {\n description: \"Return non-zero exit when health/validate/extension-doctor warnings are present.\",\n },\n failOnWarn: {\n description: \"Alias for strictExit in health/validate/extension-doctor action payloads.\",\n },\n checkHistoryDrift: {\n description: \"Run item/history hash drift checks.\",\n },\n checkCommandReferences: {\n description: \"Run linked-command PM-ID reference checks.\",\n },\n allowAuditNote: {\n description: \"For notes action, allow non-owner append-only note audits without requiring --force.\",\n },\n allowAuditLearning: {\n description: \"For learnings action, allow non-owner append-only learning audits without requiring --force.\",\n },\n allowAuditComment: {\n description: \"For comments action, allow non-owner append-only comment audits without requiring --force.\",\n },\n stdin: {\n description: \"When true for comments action, read comment text from piped stdin (supports multiline markdown).\",\n },\n file: {\n description: \"Path to input file for actions that read payload text, such as comments --file.\",\n examples: [\"notes/comment.md\"],\n },\n allowAuditUpdate: {\n description: \"Allow non-owner metadata-only update audits without requiring --force.\",\n },\n allowAuditDepUpdate: {\n description: \"Allow non-owner append-only dependency update audits without requiring --force.\",\n },\n allowAuditRelease: {\n description: \"Allow non-owner release handoffs that clear assignee metadata without requiring --force.\",\n },\n preserveSourceIds: {\n description: \"Preserve explicit source IDs during Beads imports instead of normalizing to tracker prefix.\",\n examples: [true],\n },\n appendStable: {\n description: \"When true for files action, preserve existing linked-file order and append new links without full-array resorting.\",\n },\n discover: {\n description: \"When true for files action, use `pm files discover <id>` to scan item text for referenced file paths.\",\n },\n apply: {\n description: \"When true for files discovery, add missing discovered file links instead of returning a dry-run preview.\",\n },\n discoveryNote: {\n description: \"Note attached to file links added by files discovery.\",\n examples: [\"discovered from item text\"],\n },\n stream: {\n description:\n \"Stream selector: test-runs logs accepts stdout|stderr|both; activity accepts boolean/rows|ndjson|jsonl for line-delimited output.\",\n examples: [\"stderr\", \"stdout\", \"both\", \"rows\", \"ndjson\", \"jsonl\", true],\n },\n tail: {\n description: \"Number of lines to tail for background run logs.\",\n examples: [100],\n },\n query: {\n description: \"Search query text for search action.\",\n },\n keywords: {\n description: \"Alias for query in search action payloads.\",\n },\n includeLinked: {\n description: \"Include readable linked docs/files/tests content in keyword and hybrid lexical scoring.\",\n },\n titleExact: {\n description: \"For search action, require exact normalized title match for the full query string.\",\n },\n phraseExact: {\n description: \"For search action, require exact normalized query phrase match in item text fields.\",\n },\n includeBody: {\n description: \"When true for list-family actions, include item body text in projected rows.\",\n },\n compact: {\n description: \"Render compact projection output for search and list-family actions.\",\n },\n full: {\n description: \"Enable command-specific full/detail output mode when supported, such as deep item reads for get or full payload mode for search/history.\",\n },\n fields: {\n description: \"Comma-separated projection fields for get, search, or list-family outputs.\",\n examples: [\"id,title,status,parent,type\", \"id,title,score,matched_fields\"],\n },\n groupBy: {\n description:\n \"Comma-separated aggregate grouping fields (supported: parent,type,priority,status,assignee,tags,sprint,release).\",\n examples: [\"parent,type\", \"type,status\", \"priority,assignee\", \"tags\", \"sprint,release\"],\n },\n count: {\n description: \"Enable grouped count output for aggregate action.\",\n },\n includeUnparented: {\n description: \"Include unparented rows when aggregate grouping includes parent.\",\n },\n maxDepth: {\n description: \"Maximum dependency traversal depth for deps action (0 keeps only the root node).\",\n examples: [0, 1, \"2\"],\n },\n collapse: {\n description: 'Dependency tree collapse mode for deps action (\"none\" or \"repeated\").',\n examples: [\"none\", \"repeated\"],\n },\n summary: {\n description: \"When true for deps action, return counts only without full tree/graph payloads.\",\n },\n threshold: {\n description: \"Dedupe-audit fuzzy title similarity threshold between 0 and 1.\",\n examples: [0.5, \"0.75\"],\n },\n shell: {\n description: \"Shell target for completion generation.\",\n examples: [\"bash\"],\n },\n eagerTags: {\n description: \"When true for completion, eagerly embed current tracker tags into generated scripts (legacy mode).\",\n },\n contractAction: {\n description: \"Filter contracts schema to one tool action.\",\n examples: [\"create\", \"update\"],\n },\n command: {\n description: \"Scope contracts output to one CLI command name; action/schema surfaces narrow by default.\",\n examples: [\"create\", \"search\", \"list\"],\n },\n schemaOnly: {\n description: \"When true, contracts action returns schema-focused payloads (mutually exclusive with flagsOnly/availabilityOnly).\",\n },\n flagsOnly: {\n description: \"When true, contracts action returns only command flag surface payloads (mutually exclusive projection mode).\",\n },\n availabilityOnly: {\n description: \"When true, contracts action returns only action availability payloads (mutually exclusive projection mode).\",\n },\n runtimeOnly: {\n description: \"When true, contracts action only includes actions invocable in the current runtime.\",\n },\n activeOnly: {\n description: \"Alias for runtimeOnly in contracts action payloads.\",\n },\n depth: {\n description: \"Context depth level controlling how many sections are included (brief=focus+agenda, standard=+hierarchy/activity/progress/workload, deep=all sections).\",\n examples: [\"brief\", \"standard\", \"deep\"],\n },\n section: {\n description: \"Repeatable section selector for context; overrides --depth when provided.\",\n examples: [[\"hierarchy\", \"activity\"], [\"blockers\", \"files\", \"staleness\"]],\n },\n activityLimit: {\n description: \"Maximum number of recent activity entries to include in context output.\",\n examples: [5, 10, \"20\"],\n },\n staleThreshold: {\n description: \"Staleness cutoff in days for context staleness section (e.g. 7 or 7d).\",\n examples: [\"7\", \"14d\", \"30\"],\n },\n};\n"],"names":[],"mappings":"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","debugId":"e3fd61cb-aea2-5f3c-9dcc-e7a5c649dde2"}
|
|
1
|
+
{"version":3,"file":"tool-parameter-tables.js","sources":["sdk/cli-contracts/tool-parameter-tables.ts"],"sourceRoot":"/","sourcesContent":["import {\n PLAN_HARNESS_VALUES,\n PLAN_MODE_VALUES,\n PLAN_STEP_LINK_KIND_VALUES,\n PLAN_STEP_STATUS_VALUES,\n} from \"../../types/index.js\";\n\nexport const PM_TOOL_PARAMETER_PROPERTIES: Record<string, unknown> = {\n json: { type: \"boolean\", default: true },\n quiet: { type: \"boolean\" },\n profile: { type: \"boolean\" },\n noExtensions: { type: \"boolean\" },\n noPager: { type: \"boolean\" },\n path: { type: \"string\" },\n pmExecutable: { type: \"string\" },\n timeoutMs: { type: \"number\" },\n id: { type: \"string\" },\n target: { type: \"string\" },\n github: { type: \"string\" },\n ref: { type: \"string\" },\n query: { type: \"string\" },\n keywords: { type: \"string\" },\n fields: { type: \"string\" },\n sort: { type: \"string\", enum: [\"priority\", \"deadline\", \"updated_at\", \"created_at\", \"title\", \"parent\"] },\n prefix: { type: \"string\" },\n preset: { type: \"string\", enum: [\"minimal\", \"default\", \"strict\", \"custom\"] },\n defaults: { type: \"boolean\" },\n agentGuidance: { type: \"string\", enum: [\"ask\", \"add\", \"skip\", \"status\"] },\n withPackages: { type: \"boolean\" },\n scope: { type: \"string\", enum: [\"project\", \"global\"] },\n contractAction: { type: \"string\" },\n command: { type: \"string\" },\n schemaOnly: { type: \"boolean\" },\n flagsOnly: { type: \"boolean\" },\n availabilityOnly: { type: \"boolean\" },\n runtimeOnly: { type: \"boolean\" },\n activeOnly: { type: \"boolean\" },\n eagerTags: { type: \"boolean\" },\n configAction: { type: \"string\", enum: [\"get\", \"set\", \"list\", \"export\"] },\n key: { type: \"string\" },\n title: { type: \"string\" },\n description: { type: \"string\" },\n type: { type: \"string\" },\n template: { type: \"string\" },\n createMode: { type: \"string\", enum: [\"strict\", \"progressive\"] },\n schedulePreset: { type: \"string\", enum: [\"lightweight\"] },\n status: { type: \"string\", enum: [\"draft\", \"open\", \"in_progress\", \"blocked\", \"closed\", \"canceled\", \"in-progress\"] },\n filterStatus: { type: \"string\" },\n filterType: { type: \"string\" },\n filterTag: { type: \"string\" },\n filterPriority: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n filterDeadlineBefore: { type: \"string\" },\n filterDeadlineAfter: { type: \"string\" },\n filterAssignee: { type: \"string\" },\n filterAssigneeFilter: { type: \"string\", enum: [\"assigned\", \"unassigned\"] },\n filterParent: { type: \"string\" },\n filterSprint: { type: \"string\" },\n filterRelease: { type: \"string\" },\n closeReason: { type: \"string\" },\n priority: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n tags: { type: \"string\" },\n addTags: { type: \"array\", items: { type: \"string\" } },\n removeTags: { type: \"array\", items: { type: \"string\" } },\n body: { type: \"string\" },\n deadline: { type: \"string\" },\n estimate: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n acceptanceCriteria: { type: \"string\" },\n author: { type: \"string\" },\n message: { type: \"string\" },\n assignee: { type: \"string\" },\n assigneeFilter: { type: \"string\", enum: [\"assigned\", \"unassigned\"] },\n parent: { type: \"string\" },\n reviewer: { type: \"string\" },\n risk: { type: \"string\" },\n confidence: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n sprint: { type: \"string\" },\n release: { type: \"string\" },\n blockedBy: { type: \"string\" },\n blockedReason: { type: \"string\" },\n unblockNote: { type: \"string\" },\n reporter: { type: \"string\" },\n severity: { type: \"string\" },\n environment: { type: \"string\" },\n reproSteps: { type: \"string\" },\n resolution: { type: \"string\" },\n expectedResult: { type: \"string\" },\n actualResult: { type: \"string\" },\n affectedVersion: { type: \"string\" },\n fixedVersion: { type: \"string\" },\n component: { type: \"string\" },\n regression: { anyOf: [{ type: \"boolean\" }, { type: \"string\" }, { type: \"number\" }] },\n customerImpact: { type: \"string\" },\n definitionOfReady: { type: \"string\" },\n order: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n goal: { type: \"string\" },\n objective: { type: \"string\" },\n value: { type: \"string\" },\n impact: { type: \"string\" },\n outcome: { type: \"string\" },\n whyNow: { type: \"string\" },\n mode: {\n type: \"string\",\n enum: [\"keyword\", \"semantic\", \"hybrid\", \"title_exact\", \"title_fuzzy\", \"parent_scope\"],\n },\n op: { type: \"string\" },\n compact: { type: \"boolean\" },\n brief: { type: \"boolean\" },\n full: { type: \"boolean\" },\n view: { type: \"string\", enum: [\"agenda\", \"day\", \"week\", \"month\"] },\n date: { type: \"string\" },\n from: { type: \"string\" },\n to: { type: \"string\" },\n past: { type: \"boolean\" },\n fullPeriod: { type: \"boolean\" },\n include: { type: \"string\" },\n recurrenceLookaheadDays: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n recurrenceLookbackDays: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n occurrenceLimit: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n includeLinked: { type: \"boolean\" },\n semantic: { type: \"boolean\" },\n hybrid: { type: \"boolean\" },\n titleExact: { type: \"boolean\" },\n phraseExact: { type: \"boolean\" },\n includeBody: { type: \"boolean\" },\n tag: { type: \"string\" },\n deadlineBefore: { type: \"string\" },\n deadlineAfter: { type: \"string\" },\n limit: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n limitItems: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n fullHistory: { type: \"boolean\" },\n latest: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n offset: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n progress: { type: \"boolean\" },\n background: { type: \"boolean\" },\n runId: { type: \"string\" },\n stream: {\n anyOf: [{ type: \"boolean\" }, { type: \"string\", enum: [\"stdout\", \"stderr\", \"both\", \"rows\", \"ndjson\", \"jsonl\"] }],\n },\n tail: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n envSet: { type: \"array\", items: { type: \"string\" } },\n envClear: { type: \"array\", items: { type: \"string\" } },\n sharedHostSafe: { type: \"boolean\" },\n detail: { type: \"string\", enum: [\"summary\", \"deep\"] },\n trace: { type: \"boolean\" },\n reload: { type: \"boolean\" },\n watch: { type: \"boolean\" },\n runtimeProbe: { type: \"boolean\" },\n fixManagedState: { type: \"boolean\" },\n pmContext: { type: \"string\", enum: [\"schema\", \"tracker\", \"auto\"] },\n overrideLinkedPmContext: { type: \"boolean\" },\n failOnContextMismatch: { type: \"boolean\" },\n failOnSkipped: { type: \"boolean\" },\n failOnEmptyTestRun: { type: \"boolean\" },\n requireAssertionsForPm: { type: \"boolean\" },\n checkContext: { type: \"boolean\" },\n autoPmContext: { type: \"boolean\" },\n diff: { type: \"boolean\" },\n verify: { type: \"boolean\" },\n literal: { type: \"array\", items: { type: \"string\" } },\n regex: { type: \"array\", items: { type: \"string\" } },\n replacement: { type: \"string\" },\n timeout: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n validateClose: { type: \"string\", enum: [\"off\", \"warn\", \"strict\"] },\n checkMetadata: { type: \"boolean\" },\n metadataProfile: { type: \"string\", enum: [\"core\", \"strict\", \"custom\"] },\n checkResolution: { type: \"boolean\" },\n checkLifecycle: { type: \"boolean\" },\n checkStaleBlockers: { type: \"boolean\" },\n dependencyCycleSeverity: { type: \"string\", enum: [\"off\", \"warn\", \"error\"] },\n checkFiles: { type: \"boolean\" },\n strictDirectories: { type: \"boolean\" },\n checkOnly: { type: \"boolean\" },\n checkTelemetry: { type: \"boolean\" },\n noRefresh: { type: \"boolean\" },\n refreshVectors: { type: \"boolean\" },\n verboseStaleItems: { type: \"boolean\" },\n skipVectors: { type: \"boolean\" },\n skipIntegrity: { type: \"boolean\" },\n skipDrift: { type: \"boolean\" },\n verboseDiagnostics: { type: \"boolean\" },\n scanMode: { type: \"string\", enum: [\"default\", \"tracked-all\", \"tracked-all-strict\"] },\n includePmInternals: { type: \"boolean\" },\n verboseFileLists: { type: \"boolean\" },\n strictExit: { type: \"boolean\" },\n failOnWarn: { type: \"boolean\" },\n checkHistoryDrift: { type: \"boolean\" },\n checkCommandReferences: { type: \"boolean\" },\n allowAuditNote: { type: \"boolean\" },\n allowAuditLearning: { type: \"boolean\" },\n allowAuditComment: { type: \"boolean\" },\n allowAuditUpdate: { type: \"boolean\" },\n allowAuditDepUpdate: { type: \"boolean\" },\n allowAuditRelease: { type: \"boolean\" },\n dryRun: { type: \"boolean\" },\n cliOnly: { type: \"boolean\" },\n packagesOnly: { type: \"boolean\" },\n repair: { type: \"boolean\" },\n packageName: { type: \"string\" },\n rollback: { type: \"string\" },\n noCheckpoint: { type: \"boolean\" },\n force: { type: \"boolean\" },\n run: { type: \"boolean\" },\n count: { type: \"boolean\" },\n includeUnparented: { type: \"boolean\" },\n gcScope: {\n type: \"array\",\n items: { type: \"string\", enum: [\"index\", \"embeddings\", \"runtime\"] },\n },\n maxDepth: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n collapse: { type: \"string\", enum: [\"none\", \"repeated\"] },\n summary: { type: \"boolean\" },\n shell: { type: \"string\", enum: [\"bash\", \"zsh\", \"fish\"] },\n stdin: { type: \"boolean\" },\n file: { type: \"string\" },\n preserveSourceIds: { type: \"boolean\" },\n folder: { type: \"string\" },\n subcommand: { type: \"string\" },\n name: { type: \"string\" },\n defaultStatus: { type: \"string\" },\n alias: { type: \"array\", items: { type: \"string\" } },\n text: { type: \"string\" },\n add: { type: \"array\", items: { type: \"string\" } },\n addGlob: { type: \"array\", items: { type: \"string\" } },\n remove: { type: \"array\", items: { type: \"string\" } },\n migrate: { type: \"array\", items: { type: \"string\" } },\n discover: { type: \"boolean\" },\n apply: { type: \"boolean\" },\n discoveryNote: { type: \"string\" },\n appendStable: { type: \"boolean\" },\n validatePaths: { type: \"boolean\" },\n audit: { type: \"boolean\" },\n dep: { type: \"array\", items: { type: \"string\" } },\n depRemove: { type: \"array\", items: { type: \"string\" } },\n replaceDeps: { type: \"boolean\" },\n replaceTests: { type: \"boolean\" },\n comment: { type: \"array\", items: { type: \"string\" } },\n note: { type: \"array\", items: { type: \"string\" } },\n learning: { type: \"array\", items: { type: \"string\" } },\n linkedFile: { type: \"array\", items: { type: \"string\" } },\n linkedTest: { type: \"array\", items: { type: \"string\" } },\n doc: { type: \"array\", items: { type: \"string\" } },\n reminder: { type: \"array\", items: { type: \"string\" } },\n event: { type: \"array\", items: { type: \"string\" } },\n typeOption: { type: \"array\", items: { type: \"string\" } },\n unset: { type: \"array\", items: { type: \"string\" } },\n clearDeps: { type: \"boolean\" },\n clearComments: { type: \"boolean\" },\n clearNotes: { type: \"boolean\" },\n clearLearnings: { type: \"boolean\" },\n clearFiles: { type: \"boolean\" },\n clearTests: { type: \"boolean\" },\n clearDocs: { type: \"boolean\" },\n clearReminders: { type: \"boolean\" },\n clearEvents: { type: \"boolean\" },\n clearTypeOptions: { type: \"boolean\" },\n criterion: { type: \"array\", items: { type: \"string\" } },\n clearCriteria: { type: \"boolean\" },\n groupBy: { type: \"string\" },\n threshold: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n format: { type: \"string\" },\n depth: { type: \"string\", enum: [\"brief\", \"standard\", \"deep\"] },\n section: { type: \"array\", items: { type: \"string\", enum: [\"hierarchy\", \"activity\", \"progress\", \"blockers\", \"files\", \"workload\", \"staleness\", \"tests\"] } },\n activityLimit: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n staleThreshold: { type: \"string\" },\n policy: { type: \"string\" },\n};\n\nexport const PLAN_SUBCOMMAND_VALUES = [\n \"create\",\n \"show\",\n \"add-step\",\n \"update-step\",\n \"complete-step\",\n \"block-step\",\n \"reorder-step\",\n \"remove-step\",\n \"link\",\n \"unlink\",\n \"decision\",\n \"discovery\",\n \"validation\",\n \"resume\",\n \"approve\",\n \"materialize\",\n] as const;\n\nexport const PLAN_ACTION_PARAMETER_PROPERTIES: Record<string, unknown> = {\n subcommand: { type: \"string\", enum: [...PLAN_SUBCOMMAND_VALUES] },\n stepRef: { type: \"string\" },\n reorderTo: { anyOf: [{ type: \"string\" }, { type: \"number\" }] },\n scope: { type: \"string\" },\n harness: { type: \"string\", enum: [...PLAN_HARNESS_VALUES] },\n mode: { type: \"string\", enum: [...PLAN_MODE_VALUES] },\n resumeContext: { type: \"string\" },\n related: { type: \"string\" },\n blocks: { type: \"string\" },\n claim: { type: \"boolean\" },\n fromSearch: { type: \"string\" },\n stepTitle: { type: \"string\" },\n stepBody: { type: \"string\" },\n stepOwner: { type: \"string\" },\n stepStatus: { type: \"string\", enum: [...PLAN_STEP_STATUS_VALUES] },\n stepEvidence: { type: \"string\" },\n stepBlockedReason: { type: \"string\" },\n stepReplacement: { type: \"string\" },\n dependsOn: { type: \"string\" },\n link: { type: \"string\" },\n linkKind: { type: \"string\", enum: [...PLAN_STEP_LINK_KIND_VALUES] },\n linkNote: { type: \"string\" },\n promoteToItemDep: { type: \"boolean\" },\n allowMultipleActive: { type: \"boolean\" },\n file: { anyOf: [{ type: \"string\" }, { type: \"array\", items: { type: \"string\" } }] },\n test: { anyOf: [{ type: \"string\" }, { type: \"array\", items: { type: \"string\" } }] },\n doc: { anyOf: [{ type: \"string\" }, { type: \"array\", items: { type: \"string\" } }] },\n decisionText: { type: \"string\" },\n decision: { type: \"string\" },\n decisionRationale: { type: \"string\" },\n decisionEvidence: { type: \"string\" },\n discoveryText: { type: \"string\" },\n discovery: { type: \"string\" },\n validationText: { type: \"string\" },\n validation: { type: \"string\" },\n validationCommand: { type: \"string\" },\n validationExpected: { type: \"string\" },\n steps: { type: \"array\", items: { type: \"string\" } },\n materializeType: { type: \"string\" },\n materializeParent: { type: \"string\" },\n materializeTags: { type: \"string\" },\n};\n\nexport const PLAN_ACTION_PARAMETER_METADATA: Record<string, { description: string; examples?: unknown[] }> = {\n subcommand: {\n description: \"Plan workflow operation to run.\",\n examples: [\"create\", \"show\", \"add-step\", \"approve\"],\n },\n stepRef: {\n description: \"Plan step id or order for step lifecycle subcommands.\",\n examples: [\"plan-step-001\", \"1\"],\n },\n reorderTo: {\n description: \"New integer order for reorder-step.\",\n examples: [1, \"2\"],\n },\n scope: {\n description: \"Short free-text scope statement describing what the Plan covers.\",\n examples: [\"Release readiness audit\", \"Search package migration\"],\n },\n mode: {\n description: \"Plan lifecycle mode.\",\n examples: [\"draft\", \"research\", \"approved\"],\n },\n file: {\n description: \"File link to attach while creating or materializing a Plan.\",\n examples: [\"path=src/cli.ts,note=implementation surface\"],\n },\n test: {\n description: \"Test command link to attach while creating or materializing a Plan.\",\n examples: [\"command=pnpm build,timeout_seconds=300\"],\n },\n doc: {\n description: \"Documentation link to attach while creating or materializing a Plan.\",\n examples: [\"path=docs/SDK.md,note=public API reference\"],\n },\n};\n\nexport const PM_TOOL_PARAMETER_METADATA: Record<string, { description: string; examples?: unknown[] }> = {\n action: {\n description: \"Tool action to execute.\",\n },\n path: {\n description: \"Optional PM data root override for this invocation.\",\n examples: [\".agents/pm\"],\n },\n scope: {\n description: \"Scope selector for commands that operate on project or global state. Linked files, docs, and tests default to project scope when omitted.\",\n examples: [\"project\", \"global\"],\n },\n detail: {\n description: \"Detail mode for commands that support concise and deep diagnostics.\",\n examples: [\"summary\", \"deep\"],\n },\n trace: {\n description: \"When true for extension-doctor, include actionable registration traces in deep diagnostics.\",\n },\n reload: {\n description: \"When true for extension action payloads, trigger cache-busted extension module reload.\",\n },\n watch: {\n description: \"When true for extension-reload/extension action payloads, enable watch mode semantics.\",\n },\n runtimeProbe: {\n description: \"When true for extension-manage, run a doctor-like runtime activation probe for parity fields.\",\n },\n fixManagedState: {\n description: \"When true for extension-manage/extension-doctor, adopt unmanaged extensions before diagnostics/update checks.\",\n },\n target: {\n description: \"Positional target argument for the selected action (ID, source, package source, or extension name).\",\n examples: [\"pm-a1b2\", \".agents/pm/extensions/sample\", \"sample-extension\"],\n },\n github: {\n description: \"GitHub shorthand owner/repo[/path] source for package/extension install actions.\",\n examples: [\"org/repo/extensions/sample\"],\n },\n ref: {\n description: \"Git ref/branch/tag used when installing from GitHub shorthand/URL sources.\",\n examples: [\"main\", \"v1.0.0\"],\n },\n cliOnly: {\n description: \"Restrict upgrade to the pm CLI/SDK npm package.\",\n },\n packagesOnly: {\n description: \"Restrict upgrade to managed installable pm packages.\",\n },\n repair: {\n description: \"Force npm global reinstall semantics when upgrading the pm CLI/SDK.\",\n },\n tag: {\n description: \"npm version or dist-tag used for CLI and registry package upgrades.\",\n examples: [\"latest\", \"next\", \"2026.5.11\"],\n },\n packageName: {\n description: \"Override the pm CLI package name for self-upgrade automation and tests.\",\n examples: [\"@unbrained/pm-cli\"],\n },\n json: {\n description: \"Emit machine-readable JSON output.\",\n },\n quiet: {\n description: \"Suppress stdout payload output.\",\n },\n noExtensions: {\n description: \"Disable extension loading for this invocation.\",\n },\n noPager: {\n description: \"Disable pager integration for help and long output.\",\n },\n profile: {\n description: \"Emit deterministic timing diagnostics to stderr.\",\n },\n timeoutMs: {\n description: \"Tool execution timeout in milliseconds.\",\n examples: [120000],\n },\n id: {\n description: \"Item identifier for read or mutation actions.\",\n examples: [\"pm-a1b2\"],\n },\n runId: {\n description: \"Background test run identifier.\",\n examples: [\"tr-kq9x3f-93acde\"],\n },\n title: {\n description: \"Item title text.\",\n },\n description: {\n description: \"Item description text.\",\n },\n type: {\n description: \"Item type name from the active runtime type registry.\",\n examples: [\"Task\", \"Feature\"],\n },\n subcommand: {\n description: \"Subcommand for the schema action.\",\n examples: [\"add-type\"],\n },\n name: {\n description: \"Custom item type name to register (for schema add-type).\",\n examples: [\"Spike\"],\n },\n defaultStatus: {\n description: \"Default status hint recorded for a custom item type.\",\n examples: [\"open\"],\n },\n alias: {\n description: \"Aliases for the custom item type (repeatable).\",\n examples: [[\"spike\", \"research\"]],\n },\n preset: {\n description: \"Governance preset for initialization flows.\",\n examples: [\"minimal\", \"default\", \"strict\"],\n },\n defaults: {\n description: \"Use non-interactive setup defaults during initialization.\",\n },\n agentGuidance: {\n description: \"Control AGENTS.md/CLAUDE.md guidance behavior during init: ask, add, skip, or status.\",\n examples: [\"ask\", \"add\", \"skip\", \"status\"],\n },\n withPackages: {\n description: \"Install all bundled first-party pm packages during initialization.\",\n },\n createMode: {\n description: \"Create required-option policy mode.\",\n examples: [\"strict\", \"progressive\"],\n },\n schedulePreset: {\n description: \"Schedule-centric create preset for Reminder, Meeting, and Event types.\",\n examples: [\"lightweight\"],\n },\n status: {\n description: \"Item status value.\",\n examples: [\"open\", \"in_progress\"],\n },\n priority: {\n description: \"Priority value in range 0..4.\",\n examples: [0, 1, \"2\"],\n },\n order: {\n description: \"Planning order/rank value for create/update, or sort direction (asc|desc) for list-family sorting.\",\n examples: [0, 1, \"2\", \"asc\", \"desc\"],\n },\n sort: {\n description: \"List-family sort field selector.\",\n examples: [\"priority\", \"deadline\", \"updated_at\", \"created_at\", \"title\", \"parent\"],\n },\n tags: {\n description: \"Comma-delimited tag list.\",\n examples: [\"pm-cli,agent-ux\"],\n },\n addTags: {\n description: \"Tags to add to the existing list without replacing it. Each entry may be CSV or a JSON array.\",\n examples: [[\"agent-ux\"], [\"fix\", \"security\"]],\n },\n removeTags: {\n description: \"Tags to remove from the existing list. Each entry may be CSV or a JSON array.\",\n examples: [[\"stale\"], [\"legacy\", \"wontfix\"]],\n },\n deadline: {\n description: \"ISO/date timestamp or relative offset (+6h/+1d/+2w/+6m).\",\n examples: [\"2026-04-01T00:00:00.000Z\", \"+1d\"],\n },\n estimate: {\n description: \"Estimated effort in minutes.\",\n examples: [60, \"120\"],\n },\n acceptanceCriteria: {\n description: \"Acceptance criteria text.\",\n },\n author: {\n description: \"Mutation author identity.\",\n examples: [\"codex-agent\"],\n },\n message: {\n description: \"History message for mutation audit trail.\",\n },\n assignee: {\n description: \"Assignee identity.\",\n examples: [\"codex-agent\"],\n },\n assigneeFilter: {\n description: \"Assignee presence selector for list/calendar/context/comments-audit filters.\",\n examples: [\"assigned\", \"unassigned\"],\n },\n parent: {\n description: \"Parent item ID filter for hierarchical list queries.\",\n examples: [\"pm-epic01\"],\n },\n unset: {\n description: \"Repeatable list of front-matter fields to clear explicitly during create/update mutations.\",\n examples: [[\"deadline\", \"assignee\"], [\"close-reason\"]],\n },\n clearDeps: {\n description: \"When true, clear linked dependencies.\",\n },\n replaceDeps: {\n description: \"When true for update, atomically replace dependencies with the supplied --dep values.\",\n },\n replaceTests: {\n description: \"When true for update, atomically replace linked tests with the supplied --test values.\",\n },\n clearComments: {\n description: \"When true, clear item comments.\",\n },\n clearNotes: {\n description: \"When true, clear item notes.\",\n },\n clearLearnings: {\n description: \"When true, clear item learnings.\",\n },\n clearFiles: {\n description: \"When true, clear linked files.\",\n },\n clearTests: {\n description: \"When true, clear linked tests.\",\n },\n clearDocs: {\n description: \"When true, clear linked docs.\",\n },\n clearReminders: {\n description: \"When true, clear reminders.\",\n },\n clearEvents: {\n description: \"When true, clear events.\",\n },\n clearTypeOptions: {\n description: \"When true, clear type option metadata.\",\n },\n clearCriteria: {\n description:\n \"When true for config set criteria-list keys (definition-of-done, metadata-required-fields, lifecycle pattern lists), clear the criteria list.\",\n },\n mode: {\n description:\n \"Mode selector for search/reindex (keyword|semantic|hybrid) and dedupe-audit (title_exact|title_fuzzy|parent_scope).\",\n examples: [\"keyword\", \"hybrid\", \"title_exact\"],\n },\n op: {\n description: \"History operation filter for activity output.\",\n examples: [\"create\", \"update\", \"close\", \"update_audit\"],\n },\n fullPeriod: {\n description: \"For day/week/month calendar views, include the full anchored period instead of clipping the start to now.\",\n },\n progress: {\n description: \"Emit progress diagnostics to stderr for long-running operations.\",\n },\n background: {\n description: \"Run linked tests in managed background mode.\",\n },\n envSet: {\n description: \"Repeatable runtime environment KEY=VALUE overrides for linked-test execution.\",\n examples: [[\"PORT=0\", \"PLAYWRIGHT_HTML_OPEN=never\"]],\n },\n envClear: {\n description: \"Repeatable runtime environment variable names to clear before linked-test execution.\",\n examples: [[\"PLAYWRIGHT_BASE_URL\"]],\n },\n sharedHostSafe: {\n description: \"Apply additive shared-host-safe runtime defaults during linked-test execution.\",\n },\n pmContext: {\n description:\n \"PM linked-test context mode (schema keeps isolated tracker data; tracker seeds source tracker data; auto uses tracker for PM tracker-read linked commands).\",\n examples: [\"schema\", \"tracker\", \"auto\"],\n },\n overrideLinkedPmContext: {\n description: \"Force run-level --pm-context to override per-linked-test pm_context_mode metadata for all linked-test entries.\",\n },\n failOnContextMismatch: {\n description: \"Fail linked PM command runs when source and sandbox tracker item counts differ.\",\n },\n failOnSkipped: {\n description: \"Treat skipped linked tests as dependency-failed policy violations.\",\n },\n failOnEmptyTestRun: {\n description: \"Treat successful linked-test commands that report zero executed tests as failures.\",\n },\n requireAssertionsForPm: {\n description: \"Require assertion metadata for linked PM command test entries during run execution.\",\n },\n checkContext: {\n description: \"Run linked PM command context preflight diagnostics before command execution.\",\n },\n autoPmContext: {\n description:\n \"Auto-remediate PM tracker-read linked commands by routing those entries through tracker context regardless of linked-test pm_context_mode overrides.\",\n },\n dryRun: {\n description: \"Preview command effects without mutating storage artifacts.\",\n },\n gcScope: {\n description: \"Repeatable gc scope selector values (index, embeddings, runtime).\",\n examples: [[\"index\", \"embeddings\"], [\"runtime\"]],\n },\n offset: {\n description: \"Number of matching rows to skip before limit is applied.\",\n examples: [0, 50, \"100\"],\n },\n limitItems: {\n description: \"Maximum number of filtered items to include in comments-audit output (alias: --limit).\",\n examples: [10, \"25\"],\n },\n fullHistory: {\n description: \"When true for comments-audit, export full per-item comment history rows; cannot be combined with latest.\",\n },\n latest: {\n description: \"Number of most recent comments to include per item in comments-audit output (use 0 for summary-only item rows).\",\n examples: [0, 1, \"3\"],\n },\n literal: {\n description: \"Repeatable literal matcher used by history-redact to scrub exact string values.\",\n examples: [\"[redacted_path_prefix]/private/path\"],\n },\n regex: {\n description:\n \"Repeatable regex matcher used by history-redact. Accepts either /pattern/flags or a raw pattern (global mode is auto-enabled).\",\n examples: [\"/192\\\\\\\\.168\\\\\\\\.[0-9.]+/g\", \"token=[A-Za-z0-9_-]+\"],\n },\n replacement: {\n description: 'Replacement text used by history-redact (defaults to \"[redacted]\").',\n examples: [\"[scrubbed_path]\"],\n },\n validateClose: {\n description: 'Close-time metadata validation mode (\"off\", \"warn\", or \"strict\").',\n examples: [\"off\", \"warn\", \"strict\"],\n },\n checkMetadata: {\n description: \"Run metadata completeness checks.\",\n },\n metadataProfile: {\n description: \"Select metadata validation profile for --check-metadata.\",\n examples: [\"core\", \"strict\", \"custom\"],\n },\n checkResolution: {\n description: \"Run closed-item resolution metadata checks.\",\n },\n checkLifecycle: {\n description: \"Run active-item lifecycle governance drift checks.\",\n },\n checkStaleBlockers: {\n description: \"Include stale blocker-pattern diagnostics in lifecycle checks.\",\n },\n dependencyCycleSeverity: {\n description: \"Set dependency-cycle warning policy for lifecycle checks.\",\n examples: [\"off\", \"warn\", \"error\"],\n },\n checkFiles: {\n description: \"Run linked-file and orphaned-file checks.\",\n },\n strictDirectories: {\n description: \"Treat optional item-type directories as required health failures.\",\n },\n checkOnly: {\n description: \"For health action, run read-only diagnostics without refreshing vectors.\",\n },\n checkTelemetry: {\n description: \"For health action, probe telemetry endpoint health and include network diagnostics.\",\n },\n noRefresh: {\n description: \"For health action, skip vector refresh while still running checks.\",\n },\n refreshVectors: {\n description: \"For health action, explicitly refresh stale vectors.\",\n },\n verboseStaleItems: {\n description: \"For health action, include full stale-item arrays in vectorization details.\",\n },\n skipVectors: {\n description: \"For health action, skip vectorization checks for a faster diagnostic run.\",\n },\n skipIntegrity: {\n description: \"For health action, skip item/history file integrity checks for a faster diagnostic run.\",\n },\n skipDrift: {\n description: \"For health action, skip history drift hash checks for a faster diagnostic run.\",\n },\n scanMode: {\n description: \"Select file candidate scan mode for --check-files.\",\n examples: [\"default\", \"tracked-all\", \"tracked-all-strict\"],\n },\n includePmInternals: {\n description: \"Include PM storage internals in tracked-all candidate scans.\",\n },\n verboseFileLists: {\n description: \"For validate action, include full file-path lists for --check-files details.\",\n },\n verboseDiagnostics: {\n description: \"For validate action, include full diagnostic ID lists instead of compact summaries.\",\n },\n strictExit: {\n description: \"Return non-zero exit when health/validate/extension-doctor warnings are present.\",\n },\n failOnWarn: {\n description: \"Alias for strictExit in health/validate/extension-doctor action payloads.\",\n },\n checkHistoryDrift: {\n description: \"Run item/history hash drift checks.\",\n },\n checkCommandReferences: {\n description: \"Run linked-command PM-ID reference checks.\",\n },\n allowAuditNote: {\n description: \"For notes action, allow non-owner append-only note audits without requiring --force.\",\n },\n allowAuditLearning: {\n description: \"For learnings action, allow non-owner append-only learning audits without requiring --force.\",\n },\n allowAuditComment: {\n description: \"For comments action, allow non-owner append-only comment audits without requiring --force.\",\n },\n stdin: {\n description: \"When true for comments action, read comment text from piped stdin (supports multiline markdown).\",\n },\n file: {\n description: \"Path to input file for actions that read payload text, such as comments --file.\",\n examples: [\"notes/comment.md\"],\n },\n allowAuditUpdate: {\n description: \"Allow non-owner metadata-only update audits without requiring --force.\",\n },\n allowAuditDepUpdate: {\n description: \"Allow non-owner append-only dependency update audits without requiring --force.\",\n },\n allowAuditRelease: {\n description: \"Allow non-owner release handoffs that clear assignee metadata without requiring --force.\",\n },\n preserveSourceIds: {\n description: \"Preserve explicit source IDs during Beads imports instead of normalizing to tracker prefix.\",\n examples: [true],\n },\n appendStable: {\n description: \"When true for files action, preserve existing linked-file order and append new links without full-array resorting.\",\n },\n discover: {\n description: \"When true for files action, use `pm files discover <id>` to scan item text for referenced file paths.\",\n },\n apply: {\n description: \"When true for files discovery, add missing discovered file links instead of returning a dry-run preview.\",\n },\n discoveryNote: {\n description: \"Note attached to file links added by files discovery.\",\n examples: [\"discovered from item text\"],\n },\n stream: {\n description:\n \"Stream selector: test-runs logs accepts stdout|stderr|both; activity accepts boolean/rows|ndjson|jsonl for line-delimited output.\",\n examples: [\"stderr\", \"stdout\", \"both\", \"rows\", \"ndjson\", \"jsonl\", true],\n },\n tail: {\n description: \"Number of lines to tail for background run logs.\",\n examples: [100],\n },\n query: {\n description: \"Search query text for search action.\",\n },\n keywords: {\n description: \"Alias for query in search action payloads.\",\n },\n includeLinked: {\n description: \"Include readable linked docs/files/tests content in keyword and hybrid lexical scoring.\",\n },\n titleExact: {\n description: \"For search action, require exact normalized title match for the full query string.\",\n },\n phraseExact: {\n description: \"For search action, require exact normalized query phrase match in item text fields.\",\n },\n includeBody: {\n description: \"When true for list-family actions, include item body text in projected rows.\",\n },\n compact: {\n description: \"Render compact projection output for search and list-family actions.\",\n },\n full: {\n description: \"Enable command-specific full/detail output mode when supported, such as deep item reads for get or full payload mode for search/history.\",\n },\n fields: {\n description: \"Comma-separated projection fields for get, search, or list-family outputs.\",\n examples: [\"id,title,status,parent,type\", \"id,title,score,matched_fields\"],\n },\n groupBy: {\n description:\n \"Comma-separated aggregate grouping fields (supported: parent,type,priority,status,assignee,tags,sprint,release).\",\n examples: [\"parent,type\", \"type,status\", \"priority,assignee\", \"tags\", \"sprint,release\"],\n },\n count: {\n description: \"Enable grouped count output for aggregate action.\",\n },\n includeUnparented: {\n description: \"Include unparented rows when aggregate grouping includes parent.\",\n },\n maxDepth: {\n description: \"Maximum dependency traversal depth for deps action (0 keeps only the root node).\",\n examples: [0, 1, \"2\"],\n },\n collapse: {\n description: 'Dependency tree collapse mode for deps action (\"none\" or \"repeated\").',\n examples: [\"none\", \"repeated\"],\n },\n summary: {\n description: \"When true for deps action, return counts only without full tree/graph payloads.\",\n },\n threshold: {\n description: \"Dedupe-audit fuzzy title similarity threshold between 0 and 1.\",\n examples: [0.5, \"0.75\"],\n },\n shell: {\n description: \"Shell target for completion generation.\",\n examples: [\"bash\"],\n },\n eagerTags: {\n description: \"When true for completion, eagerly embed current tracker tags into generated scripts (legacy mode).\",\n },\n contractAction: {\n description: \"Filter contracts schema to one tool action.\",\n examples: [\"create\", \"update\"],\n },\n command: {\n description: \"Scope contracts output to one CLI command name; action/schema surfaces narrow by default.\",\n examples: [\"create\", \"search\", \"list\"],\n },\n schemaOnly: {\n description: \"When true, contracts action returns schema-focused payloads (mutually exclusive with flagsOnly/availabilityOnly).\",\n },\n flagsOnly: {\n description: \"When true, contracts action returns only command flag surface payloads (mutually exclusive projection mode).\",\n },\n availabilityOnly: {\n description: \"When true, contracts action returns only action availability payloads (mutually exclusive projection mode).\",\n },\n runtimeOnly: {\n description: \"When true, contracts action only includes actions invocable in the current runtime.\",\n },\n activeOnly: {\n description: \"Alias for runtimeOnly in contracts action payloads.\",\n },\n depth: {\n description: \"Context depth level controlling how many sections are included (brief=focus+agenda, standard=+hierarchy/activity/progress/workload, deep=all sections).\",\n examples: [\"brief\", \"standard\", \"deep\"],\n },\n section: {\n description: \"Repeatable section selector for context; overrides --depth when provided.\",\n examples: [[\"hierarchy\", \"activity\"], [\"blockers\", \"files\", \"staleness\"]],\n },\n activityLimit: {\n description: \"Maximum number of recent activity entries to include in context output.\",\n examples: [5, 10, \"20\"],\n },\n staleThreshold: {\n description: \"Staleness cutoff in days for context staleness section (e.g. 7 or 7d).\",\n examples: [\"7\", \"14d\", \"30\"],\n },\n};\n"],"names":[],"mappings":"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","debugId":"1ef63b39-464c-54c0-952c-66932a014900"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="dac50b36-6b18-594d-9705-e7cc992d8066")}catch(e){}}();
|
|
3
3
|
export { ACTIVITY_COMMANDER_STRING_OPTION_CONTRACTS, CALENDAR_COMMANDER_STRING_OPTION_CONTRACTS, CONTEXT_COMMANDER_STRING_OPTION_CONTRACTS, LIST_COMMANDER_STRING_OPTION_CONTRACTS, SEARCH_COMMANDER_STRING_OPTION_CONTRACTS, readFirstStringFromCommanderOptions, readStringArrayFromCommanderOptions, } from "./cli-contracts/commander-types.js";
|
|
4
4
|
export { CREATE_COMMANDER_OPTION_REGISTRATION_CONTRACTS, CREATE_COMMANDER_REPEATABLE_OPTION_CONTRACTS, CREATE_COMMANDER_STRING_OPTION_CONTRACTS, UPDATE_COMMANDER_OPTION_REGISTRATION_CONTRACTS, UPDATE_COMMANDER_REPEATABLE_OPTION_CONTRACTS, UPDATE_COMMANDER_STRING_OPTION_CONTRACTS, } from "./cli-contracts/commander-mutation-options.js";
|
|
5
5
|
// PM_* enum/guard contracts and the bulk tool-parameter property/metadata data
|
|
@@ -366,8 +366,8 @@ export const CLOSE_FLAG_CONTRACTS = [
|
|
|
366
366
|
// close`, the JSON help payload, and bootstrap flag normalization /
|
|
367
367
|
// suggestions all stay consistent with the commander registration.
|
|
368
368
|
{ flag: "--resolution" },
|
|
369
|
-
{ flag: "--expected-result", aliases: ["--expected_result"] },
|
|
370
|
-
{ flag: "--actual-result", aliases: ["--actual_result"] },
|
|
369
|
+
{ flag: "--expected-result", aliases: ["--expected_result", "--expected"] },
|
|
370
|
+
{ flag: "--actual-result", aliases: ["--actual_result", "--actual"] },
|
|
371
371
|
{ flag: "--force" },
|
|
372
372
|
];
|
|
373
373
|
export const APPEND_FLAG_CONTRACTS = [
|
|
@@ -512,6 +512,11 @@ export const CREATE_FLAG_CONTRACTS = [
|
|
|
512
512
|
{ short: "-s", flag: "--status" },
|
|
513
513
|
{ short: "-p", flag: "--priority" },
|
|
514
514
|
{ flag: "--tags", list: true },
|
|
515
|
+
// NOT list:true — these use Commander's repeatable collector. Marking them
|
|
516
|
+
// list:true would make the bootstrap coalescer comma-join repeated
|
|
517
|
+
// occurrences (`--add-tags '["a","b"]' --add-tags c` -> `["a","b"],c`),
|
|
518
|
+
// corrupting the JSON-array value form before parseTags sees it.
|
|
519
|
+
{ flag: "--add-tags", aliases: ["--add_tags"] },
|
|
515
520
|
{ short: "-b", flag: "--body" },
|
|
516
521
|
{ flag: "--deadline" },
|
|
517
522
|
{ flag: "--estimate" },
|
|
@@ -562,6 +567,8 @@ export const CREATE_FLAG_CONTRACTS = [
|
|
|
562
567
|
{ flag: "--repro_steps" },
|
|
563
568
|
{ flag: "--expected_result" },
|
|
564
569
|
{ flag: "--actual_result" },
|
|
570
|
+
{ flag: "--expected" },
|
|
571
|
+
{ flag: "--actual" },
|
|
565
572
|
{ flag: "--affected_version" },
|
|
566
573
|
{ flag: "--fixed_version" },
|
|
567
574
|
{ flag: "--dep" },
|
|
@@ -597,6 +604,11 @@ export const UPDATE_FLAG_CONTRACTS = [
|
|
|
597
604
|
{ short: "-p", flag: "--priority" },
|
|
598
605
|
{ flag: "--type" },
|
|
599
606
|
{ flag: "--tags", list: true },
|
|
607
|
+
// NOT list:true — Commander's repeatable collector accumulates these, so
|
|
608
|
+
// bootstrap coalescing must not comma-join repeated occurrences (it would
|
|
609
|
+
// corrupt JSON-array values like `--add-tags '["a","b"]' --add-tags c`).
|
|
610
|
+
{ flag: "--add-tags", aliases: ["--add_tags"] },
|
|
611
|
+
{ flag: "--remove-tags", aliases: ["--remove_tags"] },
|
|
600
612
|
{ flag: "--deadline" },
|
|
601
613
|
{ flag: "--estimate" },
|
|
602
614
|
{ flag: "--estimated-minutes" },
|
|
@@ -647,6 +659,8 @@ export const UPDATE_FLAG_CONTRACTS = [
|
|
|
647
659
|
{ flag: "--repro_steps" },
|
|
648
660
|
{ flag: "--expected_result" },
|
|
649
661
|
{ flag: "--actual_result" },
|
|
662
|
+
{ flag: "--expected" },
|
|
663
|
+
{ flag: "--actual" },
|
|
650
664
|
{ flag: "--affected_version" },
|
|
651
665
|
{ flag: "--dep" },
|
|
652
666
|
{ flag: "--dep-remove" },
|
|
@@ -704,6 +718,11 @@ export const UPDATE_MANY_FLAG_CONTRACTS = [
|
|
|
704
718
|
{ short: "-p", flag: "--priority" },
|
|
705
719
|
{ flag: "--type" },
|
|
706
720
|
{ flag: "--tags", list: true },
|
|
721
|
+
// NOT list:true — Commander's repeatable collector accumulates these, so
|
|
722
|
+
// bootstrap coalescing must not comma-join repeated occurrences (it would
|
|
723
|
+
// corrupt JSON-array values like `--add-tags '["a","b"]' --add-tags c`).
|
|
724
|
+
{ flag: "--add-tags", aliases: ["--add_tags"] },
|
|
725
|
+
{ flag: "--remove-tags", aliases: ["--remove_tags"] },
|
|
707
726
|
{ flag: "--deadline" },
|
|
708
727
|
{ flag: "--estimate" },
|
|
709
728
|
{ flag: "--estimated-minutes" },
|
|
@@ -735,8 +754,10 @@ export const UPDATE_MANY_FLAG_CONTRACTS = [
|
|
|
735
754
|
{ flag: "--resolution" },
|
|
736
755
|
{ flag: "--expected-result" },
|
|
737
756
|
{ flag: "--expected_result" },
|
|
757
|
+
{ flag: "--expected" },
|
|
738
758
|
{ flag: "--actual-result" },
|
|
739
759
|
{ flag: "--actual_result" },
|
|
760
|
+
{ flag: "--actual" },
|
|
740
761
|
{ flag: "--affected-version" },
|
|
741
762
|
{ flag: "--affected_version" },
|
|
742
763
|
{ flag: "--fixed-version" },
|
|
@@ -1614,4 +1635,4 @@ function buildProviderCompatibleToolSchema() {
|
|
|
1614
1635
|
}
|
|
1615
1636
|
export const PM_PROVIDER_TOOL_PARAMETERS_SCHEMA = buildProviderCompatibleToolSchema();
|
|
1616
1637
|
//# sourceMappingURL=cli-contracts.js.map
|
|
1617
|
-
//# debugId=
|
|
1638
|
+
//# debugId=dac50b36-6b18-594d-9705-e7cc992d8066
|