From woz
Authenticates with the Woz service via browser login or token using node CLI script. Invoke when user needs to log in or authentication is required for Woz access.
npx claudepluginhub withwoz/wozcode-plugin --plugin wozThis skill is limited to using the following tools:
If the user passed `--token <token>` as arguments, skip directly to the Token Login section below.
Checks current Woz authentication status by running node wozcode-cli.js status via Bash. Useful for verifying Woz login before using related skills.
Opens browser via Playwright for Adobe ID login to authenticate with AEM Edge Delivery Services Config Service API and captures auth token. Use before generating API-requiring guides or on 401 errors.
Manages Zeabur authentication: login via browser or token, check status, logout using npx Zeabur CLI. For deployments, setup, and CI/CD environments.
Share bugs, ideas, or general feedback.
If the user passed --token <token> as arguments, skip directly to the Token Login section below.
Run the Woz authentication flow. This opens a browser for the user to log in:
node --no-warnings=ExperimentalWarning ${CLAUDE_PLUGIN_ROOT}/scripts/wozcode-cli.js login
If the command exits with code 0, login succeeded — confirm to the user.
Use this when:
--token <token> as arguments to this skillIf the browser login failed:
Once you have the token (from args or from the user), run:
node --no-warnings=ExperimentalWarning ${CLAUDE_PLUGIN_ROOT}/scripts/wozcode-cli.js login --token '<token>'
Replace <token> with the actual token.
Confirm success or relay any error to the user.