Update MEMORY.md: Remove internal table CRUD, 22/22 core API endpoints

This commit is contained in:
Matt Bruce 2026-02-21 17:59:08 -06:00
parent 8534a9976a
commit de84f69000

View File

@ -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 <field> <value> # Update account
./scripts/gantt.sh auth users # List users
# User Admin
./scripts/gantt.sh user list # List all users
./scripts/gantt.sh user get <user-id> # Get specific user
./scripts/gantt.sh user update <id> <field> <val> # Update user
./scripts/gantt.sh user delete <user-id> # Delete user
# Meta
./scripts/gantt.sh meta list # List all meta entries
./scripts/gantt.sh meta get <key> # Get meta value
./scripts/gantt.sh meta set <key> <value> # Set meta value
./scripts/gantt.sh meta delete <key> # Delete meta entry
# Debug
./scripts/gantt.sh debug # Debug endpoint
```