context_add_milestone
Add and manage project milestones by specifying details like title, description, and status, ensuring progress tracking within AI development workflows.
Instructions
Add a project milestone
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Milestone description | |
projectPath | Yes | Path to project directory | |
status | No | Milestone status | planned |
title | Yes | Milestone title |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Milestone description",
"type": "string"
},
"projectPath": {
"description": "Path to project directory",
"type": "string"
},
"status": {
"default": "planned",
"description": "Milestone status",
"enum": [
"planned",
"in-progress",
"completed"
],
"type": "string"
},
"title": {
"description": "Milestone title",
"type": "string"
}
},
"required": [
"projectPath",
"title"
],
"type": "object"
}