From 9f401f4b850a884cb0a1342a753a60490ea9205d Mon Sep 17 00:00:00 2001 From: Ilia_Korol Date: Mon, 16 Mar 2026 16:31:06 +0300 Subject: [PATCH] docs: fix outdated `codemie auth` references in AUTHENTICATION.md The `codemie auth` command was consolidated into `codemie profile` in PR #51, but docs/AUTHENTICATION.md was not updated at the time. Replace all 10 occurrences of `codemie auth` with `codemie profile` to match the actual CLI. Generated with AI Co-Authored-By: codemie-ai --- docs/AUTHENTICATION.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/AUTHENTICATION.md b/docs/AUTHENTICATION.md index d5ce7460..062a27da 100644 --- a/docs/AUTHENTICATION.md +++ b/docs/AUTHENTICATION.md @@ -35,16 +35,16 @@ If you need to authenticate separately or refresh your credentials: ```bash # Authenticate with AI/Run CodeMie SSO -codemie auth login --url https://your-airun-codemie-instance.com +codemie profile login --url https://your-airun-codemie-instance.com # Check authentication status -codemie auth status +codemie profile status # Refresh expired tokens -codemie auth refresh +codemie profile refresh # Logout and clear credentials -codemie auth logout +codemie profile logout ``` ## Token Management @@ -57,7 +57,7 @@ AI/Run CodeMie CLI automatically refreshes tokens when they expire. For manual r ```bash # Refresh SSO credentials (extends session) -codemie auth refresh +codemie profile refresh ``` **When to refresh manually:** @@ -71,7 +71,7 @@ codemie auth refresh Check your current authentication state: ```bash -codemie auth status +codemie profile status ``` **Status information includes:** @@ -86,15 +86,15 @@ Common authentication issues and solutions: ```bash # Token expired -codemie auth refresh +codemie profile refresh # Connection issues codemie doctor # Full system diagnostics -codemie auth status # Check auth-specific issues +codemie profile status # Check auth-specific issues # Complete re-authentication -codemie auth logout -codemie auth login --url https://your-airun-codemie-instance.com +codemie profile logout +codemie profile login --url https://your-airun-codemie-instance.com # Reset all configuration codemie config reset