Skip to content

Releases: authai-io/authai

v0.1.1 — utf-8 charset fix in authai-cloud CLI

09 Jun 20:30

Choose a tag to compare

Patch release. Fixes one cosmetic issue in the `authai-cloud` CLI's success page.

Fixed

  • The CLI's local listener returns an HTML page ("You can close this tab. Return to your terminal — the CLI has your key.") after receiving the API key from the webapp. The response was missing a charset declaration, so browsers fell back to Latin-1 and rendered the em-dash as `â€"`. Now declares `Content-Type: text/html; charset=utf-8` and ships a `<meta charset="utf-8">` tag.

What you need to do

Nothing — `npx authai-cloud@latest init` picks up the new version automatically. If you have an older version cached, run `npx authai-cloud@0.1.1 init` once to refresh.

Affected package

Only `authai-cloud@0.1.1`. The five `@authai-io/*` SDK packages remain at `0.1.0`.

See CHANGELOG.md.

v0.1.0 — first public release

09 Jun 20:30

Choose a tag to compare

🎉 First public release. AuthAI is now installable from npm and AuthAI Cloud is live.

What shipped

Six npm packages, all at 0.1.0:

Package Use
@authai-io/react React SDK — <SignIn>, <AuthAIProvider>, useAuthAI()
@authai-io/server Backend helper — authai.session()
@authai-io/relay Core relay (Hono)
@authai-io/relay-store-sqlite SQLite storage driver
@authai-io/relay-store-postgres Postgres storage driver
authai-cloud npx authai-cloud init one-command setup

Get started

Use AuthAI Cloud (zero setup):
```bash
npx authai-cloud init
```

Self-host the relay:
```bash
git clone https://github.com/authai-io/authai.git
cd authai && pnpm install
pnpm dev:relay
```

See the README for the full integration walk-through.

Supported providers

  • ChatGPT (via Codex CLI device-code flow)
  • Grok (via xAI device-code flow)
  • GitHub Copilot (via GitHub device-code flow)

AuthAI is not affiliated with OpenAI, GitHub, or xAI. These OAuth surfaces are unofficial — see the risk callout before shipping anything to production.

Full changelog

See CHANGELOG.md.