diff --git a/MEMORY.md b/MEMORY.md index 91960c3..f43f428 100644 --- a/MEMORY.md +++ b/MEMORY.md @@ -261,11 +261,13 @@ First question: "How will I (Max) interact with this programmatically without Ma | /api/tasks/natural | POST | `task natural` | ✅ | | **Projects** |||| | /api/projects | GET | `project list` | ✅ | +| /api/projects/[id] | GET | `project get` | ✅ | | /api/projects | POST | `project create` | ✅ | | /api/projects | PATCH | `project update` | ✅ | | /api/projects | DELETE | `project delete` | ✅ | | **Sprints** |||| | /api/sprints | GET | `sprint list` | ✅ | +| /api/sprints/[id] | GET | `sprint get` | ✅ | | /api/sprints | POST | `sprint create` | ✅ | | /api/sprints | PATCH | `sprint update` | ✅ | | /api/sprints | DELETE | `sprint delete` | ✅ | @@ -289,7 +291,7 @@ First question: "How will I (Max) interact with this programmatically without Ma | /api/meta | DELETE | `meta delete` | ✅ | | **Debug** |||| | /api/debug | GET | `debug` | ✅ | -| **Total** | | | **28/28 (100%)** | +| **Total** | | | **30/30 (100%)** | ### Reference Implementation (Gantt Board) @@ -315,10 +317,12 @@ First question: "How will I (Max) interact with this programmatically without Ma # Projects & Sprints ./scripts/gantt.sh project list # List projects +./scripts/gantt.sh project get # Get specific project ./scripts/gantt.sh project create "Name" [desc] [color] # Create project ./scripts/gantt.sh project update # Update project ./scripts/gantt.sh project delete # Delete project ./scripts/gantt.sh sprint list # List sprints +./scripts/gantt.sh sprint get # Get specific sprint ./scripts/gantt.sh sprint create "Name" [start] [end] [goal] # Create sprint ./scripts/gantt.sh sprint update # Update sprint ./scripts/gantt.sh sprint delete # Delete sprint