Skip to content
Open
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
4 changes: 2 additions & 2 deletions cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ uipro update # Update to latest version

## How It Works

By default, `uipro init` tries to download the latest release from GitHub to ensure you get the most up-to-date version. If the download fails (network error, rate limit), it automatically falls back to the bundled assets included in the CLI package.
`uipro init` generates skill files from templates bundled inside the CLI package. This means installation works offline by default and does not require a network connection.

Use `--offline` to skip the GitHub download and use bundled assets directly.
Use `--offline` to make the offline behavior explicit (no-op with the current default, kept for clarity and future compatibility).

## Development

Expand Down
2 changes: 1 addition & 1 deletion cli/src/commands/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export async function versionsCommand(): Promise<void> {
});

console.log();
logger.dim('Use: uipro init --version <tag> to install a specific version');
logger.dim('Run uipro update to reinstall the skill with the current bundled version.');
} catch (error) {
spinner.fail('Failed to fetch versions');
if (error instanceof Error) {
Expand Down