update_checkpoint
Modify checkpoint details including title, description, dependencies, and Git references to track project progress and maintain accurate milestone records.
Instructions
Update a checkpoint's title, description, dependencies, or git references (branch URL, PR URL, commit URL).
Args:
milestone_id: The milestone ID
order: The checkpoint order number (1-based)
title: New checkpoint title (optional)
description: New checkpoint description (optional)
depends_on: Dependencies. Use number for same-milestone (e.g., 1), or "milestone_id:order" for cross-milestone (e.g., "ms_abc123:4"). Same-milestone deps must reference earlier checkpoints. Cross-milestone deps are validated for cycles.
git_branch_url: Git branch URL (full URL, e.g., https://github.com/org/repo/tree/feature/auth)
git_pr_url: Git pull request URL (full URL, e.g., https://github.com/org/repo/pull/123)
git_commit_url: Git commit URL (full URL, e.g., https://github.com/org/repo/commit/abc123)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| milestone_id | Yes | ||
| order | Yes | ||
| title | No | ||
| description | No | ||
| depends_on | No | ||
| git_branch_url | No | ||
| git_pr_url | No | ||
| git_commit_url | No |