Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/tools/approvals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ CRITICAL: Only provide filePath parameter for requests - the dashboard reads fil
}
},
required: ['action']
},
annotations: {
title: 'Approvals',
destructiveHint: true,
}
};

Expand Down
4 changes: 4 additions & 0 deletions src/tools/log-implementation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,10 @@ Task: "Implemented logs dashboard with real-time updates"
}
},
required: ['specName', 'taskId', 'summary', 'filesModified', 'filesCreated', 'statistics', 'artifacts']
},
annotations: {
title: 'Log Implementation',
destructiveHint: true,
}
};

Expand Down
8 changes: 6 additions & 2 deletions src/tools/spec-status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,20 @@ Call when resuming work on a spec or checking overall completion status. Shows w
inputSchema: {
type: 'object',
properties: {
projectPath: {
projectPath: {
type: 'string',
description: 'Absolute path to the project root (optional - uses server context path if not provided)'
},
specName: {
specName: {
type: 'string',
description: 'Name of the specification'
}
},
required: ['specName']
},
annotations: {
title: 'Spec Status',
readOnlyHint: true,
}
};

Expand Down
4 changes: 4 additions & 0 deletions src/tools/spec-workflow-guide.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ Call this tool FIRST when users request spec creation, feature development, or m
type: 'object',
properties: {},
additionalProperties: false
},
annotations: {
title: 'Spec Workflow Guide',
readOnlyHint: true,
}
};

Expand Down
4 changes: 4 additions & 0 deletions src/tools/steering-guide.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ Call ONLY when user explicitly requests steering document creation or asks about
type: 'object',
properties: {},
additionalProperties: false
},
annotations: {
title: 'Steering Guide',
readOnlyHint: true,
}
};

Expand Down