From de84f69000cb2c3f7f8121a0c80d65dbe5d499ca Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Sat, 21 Feb 2026 17:59:08 -0600 Subject: [PATCH] Update MEMORY.md: Remove internal table CRUD, 22/22 core API endpoints --- MEMORY.md | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/MEMORY.md b/MEMORY.md index f43f428..c665e60 100644 --- a/MEMORY.md +++ b/MEMORY.md @@ -280,18 +280,9 @@ First question: "How will I (Max) interact with this programmatically without Ma | /api/auth/reset-password | POST | `auth reset-password` | ✅ | | /api/auth/account | PATCH | `auth account` | ✅ | | /api/auth/users | GET | `auth users` | ✅ | -| **Users Admin** |||| -| /api/users | GET | `user get` | ✅ | -| /api/users | PATCH | `user update` | ✅ | -| /api/users | DELETE | `user delete` | ✅ | -| **Meta** |||| -| /api/meta | GET | `meta list` | ✅ | -| /api/meta | GET | `meta get` | ✅ | -| /api/meta | POST | `meta set` | ✅ | -| /api/meta | DELETE | `meta delete` | ✅ | | **Debug** |||| | /api/debug | GET | `debug` | ✅ | -| **Total** | | | **30/30 (100%)** | +| **Total** | | | **22/22 (100%)** | ### Reference Implementation (Gantt Board) @@ -337,18 +328,6 @@ First question: "How will I (Max) interact with this programmatically without Ma ./scripts/gantt.sh auth account # Update account ./scripts/gantt.sh auth users # List users -# User Admin -./scripts/gantt.sh user list # List all users -./scripts/gantt.sh user get # Get specific user -./scripts/gantt.sh user update # Update user -./scripts/gantt.sh user delete # Delete user - -# Meta -./scripts/gantt.sh meta list # List all meta entries -./scripts/gantt.sh meta get # Get meta value -./scripts/gantt.sh meta set # Set meta value -./scripts/gantt.sh meta delete # Delete meta entry - # Debug ./scripts/gantt.sh debug # Debug endpoint ```