From c5469c6bdf9143173e52dee71e613552d3dd0bad Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Tue, 24 Mar 2026 20:23:57 -0700 Subject: [PATCH] Document single-user model and MCIAS migration path in AUDIT.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Single authenticated user by design. If multi-user is ever needed, auth migrates to MCIAS — standalone auth won't be extended. Co-Authored-By: Claude Opus 4.6 (1M context) --- AUDIT.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/AUDIT.md b/AUDIT.md index 3077c04..cf33c1f 100644 --- a/AUDIT.md +++ b/AUDIT.md @@ -177,3 +177,11 @@ severity levels. All critical and high issues resolved. | A-015 | Medium | Open | | A-016 | Low | Open | | A-017 | Low | Open | + +## Design Note: Single-User Model + +This server is designed for a single authenticated user. The users +table and multi-user schema exist but are used for one account only. +If multi-user support is ever needed, authentication will migrate to +MCIAS (Metacircular Identity and Access Service) — the standalone +auth implementation here will not be extended for multiple users.