Update MEMORY.md: 30/30 API endpoints with project/sprint get
This commit is contained in:
parent
6b0cdea064
commit
8534a9976a
@ -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 <id> # Get specific project
|
||||
./scripts/gantt.sh project create "Name" [desc] [color] # Create project
|
||||
./scripts/gantt.sh project update <id> <field> <val> # Update project
|
||||
./scripts/gantt.sh project delete <id> # Delete project
|
||||
./scripts/gantt.sh sprint list # List sprints
|
||||
./scripts/gantt.sh sprint get <id> # Get specific sprint
|
||||
./scripts/gantt.sh sprint create "Name" <project-id> [start] [end] [goal] # Create sprint
|
||||
./scripts/gantt.sh sprint update <id> <field> <val> # Update sprint
|
||||
./scripts/gantt.sh sprint delete <id> # Delete sprint
|
||||
|
||||
Loading…
Reference in New Issue
Block a user