utilities · v1.1.0 · 2026-03-21 · sha256 81184bd028e927a2
utilities v1.1.0A
Immutable. This exact content is served forever at /api/v1/blob/81184bd028e927a2.
---
name: utilities
description: Authentication and provider management
category: utility
aliases: [u, auth]
tags: [auth, provider, setup, utilities, subscription]
version: "1.1.0"
question:
header: "Utility"
question: "What do you need?"
multiSelect: false
options:
- label: "Show subscription status"
description: "Show subscription tier and auth strategy"
- label: "Show provider"
description: "Show current provider configuration"
- label: "Set provider"
description: "Change the active LLM provider"
- label: "Setup auth"
description: "Configure auth strategy interactively"
---
# utilities
Authentication, subscription, and provider management utilities.
## Routes
| Subcommand | Action |
| ---------- | ------ |
| `subscription` | Show subscription/auth strategy status |
| `show` | Show current provider configuration |
| `set` | Set the active LLM provider |
| `setup` | Configure auth strategy interactively |
## Usage
```bash
/utilities # Ask what to do
/utilities subscription # Show subscription status
/utilities show # Show current provider
/utilities set # Set provider
/utilities setup # Configure auth strategy
```
Or use natural language: "subscription status", "auth", "provider",
"show provider", "set provider", "what is my subscription".
## Behavior
### subscription
Run the auth status command to show subscription tier and strategy:
```bash
uv run attune auth status
```
Display the subscription tier (FREE/PRO/MAX/ENTERPRISE), default auth
mode, and module size thresholds.
### show
Run the provider show command:
```bash
uv run attune provider show
```
Display the current provider mode, primary provider,
and available providers.
### set
Use `AskUserQuestion` to confirm:
- Which provider? (anthropic, openai, hybrid)
Then run:
```bash
uv run attune provider set <provider>
```
### setup
Run the interactive auth strategy setup:
```bash
uv run attune auth setup
```