AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Glassity Auth

skill-glassity-agent-skills-glassity-auth · by glassity

Sign in to Glassity, check which tenant is active, or sign out. Run this before any other Glassity skill. `glassity auth login` is the normal path (browser sign-in, credential lands in the OS keychain); a Personal Access Token is the headless and CI path. Use when the user says "log in to Glassity", "who am I on Glassity", "log out", or when another skill reports `not authenticated`.

No reviews yet
0 installs
25 views
0.0% view→install

Install

$ agentstack add skill-glassity-agent-skills-glassity-auth

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-glassity-agent-skills-glassity-auth)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Glassity Auth? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Glassity authentication

When to use

  • The user says "log in to Glassity", "connect Glassity", "auth with Glassity"
  • The user asks "who am I on Glassity", "which tenant am I using", "show my scopes"
  • The user wants to clear credentials ("log out of Glassity")
  • Any Glassity skill reports not authenticated (exit code 3)

Binary check

Run command -v glassity before the first CLI call. If it is missing, stop and tell the user to install it with brew install glassity/tap/glassity or from . No account yet? Sign up at app.glassity.cloud.

Signing in

glassity auth login

This prints a URL and a short code. The user opens the URL in a browser on any device, signs in, and the credential is written to the OS keychain. Nothing has to launch a browser on this machine, so it works over SSH, in dev containers, and under WSL.

Show the user the printed URL and code verbatim, then wait — the command completes once they finish in the browser.

Checking the active tenant

glassity --output=json auth whoami

Returns the tenant name, account_prefix_id, AWS account ids, scopes, and token expiry. Always repeat the tenant and AWS account back to the user so a wrong-tenant session is caught before anything is read or written.

Headless and CI

A CI runner has no browser and often no keychain. Mint a Personal Access Token in the Glassity web app and pass it through the environment:

export GLASSITY_TOKEN=
glassity --output=json opp list

GLASSITY_TOKEN takes precedence over the keychain, so nothing is written to disk on the runner.

Where a keychain does exist and the user wants a token stored persistently instead of an OAuth session, pipe the secret so it never reaches argv:

echo "$GLASSITY_PAT" | glassity auth set-token --token=-

The binary validates the token against the API before persisting it, then writes the resolved tenant defaults into the profile so later commands do not need --account.

Signing out

glassity auth logout

Deletes the stored credential and clears the tenant defaults. The profile itself is kept, so a later login does not need the base URL re-entered.

What not to do

  • Never print a token back to the user or echo it into your output.
  • Never pass a token on argv — pipe it with --token=-, or use the

GLASSITY_TOKEN environment variable.

  • If whoami reports the credential is invalid or expired, say so and run

glassity auth login again. Do not silently retry with a different token.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.