Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
## Other Changes
- Minor improvements to the `agent` command and related utilities.
Bumping SDK version to latest
5 changes: 3 additions & 2 deletions dispatch-local-ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ The CLI serves a simple, static Local UI (HTML/CSS/JS) for managing agents local

```bash
cd cli/dispatch-local-ui
npm install
npm install --min-release-age=30
npm run dev # Development server at http://localhost:3001
```

For CLI testing:
```bash
npm run deploy-update # Build + reinstall CLI
dispatch router start # Test with router
dispatch router start # Start router in background
```

## Development
Expand All @@ -36,6 +36,7 @@ dispatch router start # Test with router
1. **Develop** - `npm run dev`
2. **Deploy** - `npm run deploy-update`
3. **Test** - `dispatch router start`
4. **Logs** - `dispatch router logs --follow`

## Architecture

Expand Down
4 changes: 2 additions & 2 deletions dispatch_cli/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import sys
from urllib.parse import urlparse

import typer
import questionary

from dispatch_cli.logger import get_logger
from dispatch_cli.utils import DISPATCH_API_BASE, DISPATCH_DEPLOY_URL
Expand Down Expand Up @@ -291,7 +291,7 @@ def prompt_for_api_key() -> str:
logger.info("")

while True:
api_key = typer.prompt("Enter your API key", hide_input=True)
api_key = questionary.password("Enter your API key:").ask() or ""

if not api_key.strip():
logger.error("API key cannot be empty. Please try again.")
Expand Down
Loading
Loading