remove yes parameter

This commit is contained in:
Joe Danziger
2025-05-11 18:33:26 -04:00
parent 16de4cbb88
commit 89fa5af656
2 changed files with 1 additions and 13 deletions

View File

@@ -24,13 +24,6 @@ export function registerInitializeProjectTool(server) {
.optional()
.default(false)
.describe('Add shell aliases (tm, taskmaster) to shell config file.'),
yes: z
.boolean()
.optional()
.default(true)
.describe(
'Skip prompts and use default values. Always set to true for MCP tools.'
),
projectRoot: z
.string()
.describe(

View File

@@ -34,12 +34,7 @@ export function registerRulesTool(server) {
.string()
.describe(
'The root directory of the project. Must be an absolute path.'
),
yes: z
.boolean()
.optional()
.default(true)
.describe('Run non-interactively (default: true).')
)
}),
execute: withNormalizedProjectRoot(async (args, { log, session }) => {
try {