meticulous-cli-auth
meticulous auth
Authentication management for the Meticulous CLI. OAuth tokens are stored on disk and reused across sessions.
auth whoami
meticulous auth whoami
Purpose: Display the currently authenticated user. If no valid token is stored, opens an OAuth browser login flow to authenticate.
Output: Logs name, email, admin status, and the list of organizations the user belongs to.
Effects:
- Reads the stored OAuth token
- If no token exists or it is expired (HTTP 403), prompts an interactive OAuth login
- Does not modify any stored state itself
Example output:
Logged in as: Jane Smith (jane@example.com)
Organizations:
- acme-corp
No options beyond global flags.
auth logout
meticulous auth logout [--dryRun]
Purpose: Clear all stored OAuth tokens from disk, effectively logging out.
Effects:
- Deletes the cached OAuth token file used by the CLI
- Subsequent commands that require authentication will prompt for login again
| Option | Type | Default | Description |
|---|---|---|---|
--dryRun |
boolean | false |
Print what would be cleared without actually deleting tokens |
Example:
meticulous auth logout
# Logged out successfully.
meticulous auth logout --dryRun
# Dry run: would clear stored OAuth tokens
More from alwaysmeticulous/skills
meticulous-cli
Overview of the Meticulous CLI tool and its global options. Use when asking about the meticulous CLI in general, available commands, or global flags that apply to all commands.
25test-with-meticulous
Run after implementing any frontend change to verify its visual impact. Triggers a Meticulous test run, then inspects screenshot diffs to classify each visual change as intended or unintended. Use this before marking a frontend task as complete.
21meticulous-simulate-and-diff
Run a Meticulous session simulation against a live URL and analyze the visual output — either by inspecting screenshots directly (quick-check mode) or by comparing pixel and HTML diffs against a base replay. Use when checking whether a code change has introduced visual regressions for a specific session.
20meticulous-cli-schema
Meticulous CLI schema command for outputting the full CLI command structure as JSON. Use when you need to programmatically inspect available commands and their options, or when building tooling that drives the Meticulous CLI.
19meticulous-cli-download
Meticulous CLI download commands for fetching recorded sessions, replays, and test runs to the local data directory. Covers `meticulous download session`, `meticulous download replay`, and `meticulous download test-run`.
19meticulous-cli-project
Meticulous CLI project commands for inspecting the project configuration linked to an API token. Covers `meticulous project show`.
19