Acquire and stage Makestar integrated-admin bearer tokens with the makestar-admin auth CLI before falling back to browser extraction.
How this skill is triggered — by the user, by Claude, or both
Slash command
/makestar-admin-skills:makestar-admin-auth-tokenThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when Makestar admin resource scripts need a valid bearer token and the integrated `makestar-admin auth` CLI is available. This is the preferred path before browser network-token extraction.
Use this skill when Makestar admin resource scripts need a valid bearer token and the integrated makestar-admin auth CLI is available. This is the preferred path before browser network-token extraction.
makestar-admin --version.brew install makestarlab/tap/makestar-admin-cli; Windows winget install Makestar.MakestarAdminCLI; otherwise use the public release MSI/archive..venv, uv, PYTHONPATH, or Python module fallback from an installed skill/plugin bundle.MAKESTAR_ADMIN_ADMIN_TOKEN / MAKESTAR_ADMIN_OMS_TOKEN for read-only CLI/resource probes.Use the integrated makestar-admin auth command when the CLI binary or console entrypoint is available. Only use source-checkout Python module commands from a full repository checkout when makestar-admin is unavailable.
Check login state without printing secrets:
makestar-admin auth status
If not logged in, run:
makestar-admin auth login
Stage token env vars for the current terminal session only. First identify the shell the agent is actually using; Git for Windows often provides Git Bash, but Claude/Codex on Windows may run PowerShell instead.
macOS / Linux / Git Bash:
eval "$(makestar-admin auth token --shell)"
Windows PowerShell:
$tokens = makestar-admin auth token --json | ConvertFrom-Json
$env:MAKESTAR_ADMIN_ADMIN_TOKEN = $tokens.MAKESTAR_ADMIN_ADMIN_TOKEN
$env:MAKESTAR_ADMIN_OMS_TOKEN = $tokens.MAKESTAR_ADMIN_OMS_TOKEN
Plain cmd.exe is not recommended for agent runs; prefer PowerShell or Git Bash.
Verify with read-only probes using the unified CLI:
makestar-admin product-events latest --display-status displayed --size 1
makestar-admin skus search --size 1
~/.makestar-admin/credentials.json.MAKESTAR_ADMIN_AUTH_STORE is only for tests/temp stores.--raw, --json, PowerShell token objects, callback URLs, credential files, or shell exports in chat/logs/docs.token --shell only in POSIX-compatible shells; use token --json only to populate PowerShell env vars without displaying the values.expires_in; the CLI falls back to the access-token JWT exp only for expiry calculation.Use makestar-admin-browser-token only when the makestar-admin auth path is unavailable, not logged in and blocked, or independent browser recovery is explicitly needed.
references/auth-cli.mdnpx claudepluginhub makestarlab/makestar-admin-ai-toolkit --plugin makestar-admin-skillsCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.