Skip to content

Commit

Permalink
Release: 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
guywaldman committed Jul 22, 2024
1 parent f9b053c commit 63d75bf
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## Version 0.0.3

- A default configuration file is now created if it doesn't exist
- The default suggest mode is now `clipboard` instead of `unsafe-execution`
- The `suggest` subcommand now supports an `--output-only` flag to skip the interactive prompts (revisions and execution)
- A `--config` flag is now supported for all subcommands, where you can specify a custom configuration file
- Improved error messages (a lot more work is required)
- Under the hood:
- Added integration with the [orch](https://github.com/guywaldman/orch) library
- Added basic integration tests
- Improved CI

## Version 0.0.2

- Fixed an issue where error messages were not shown when subcommands failed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "magic-cli"
version = "0.0.2"
version = "0.0.3"
description = "Command line utility to make you a magician in the terminal"
homepage = "https://github.com/guywaldman/magic-cli"
repository = "https://github.com/guywaldman/magic-cli"
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@

# Magic CLI
![Magic CLI logo](/assets/logo_sm.png)

![Magic CLI logo](/assets/logo_sm.png)

![GitHub Actions CI](https://github.com/guywaldman/magic-cli/actions/workflows/ci.yml/badge.svg)

Magic CLI is a command line utility which uses LLMs to help you use the command line more efficiently, inspired by projects such as [Amazon Q (prev. Fig terminal)](https://fig.io/) and [GitHub Copilot for CLI](https://docs.github.com/en/copilot/using-github-copilot/using-github-copilot-in-the-command-line).

`magic-cli` relies on the [orch](https://github.com/guywaldman/orch) library for LLM interactions (execution, orchestration, model alignment, etc.).

> **Read the [announcement blog post](https://guywaldman.com/posts/introducing-magic-cli).**
> [!CAUTION]
Expand All @@ -26,7 +27,7 @@ Magic CLI is a command line utility which uses LLMs to help you use the command
### Shell

```shell
curl -LsSf https://github.com/guywaldman/magic-cli/releases/download/0.0.2/magic-cli-installer.sh | sh
curl -LsSf https://github.com/guywaldman/magic-cli/releases/download/0.0.3/magic-cli-installer.sh | sh
```

### Homebrew
Expand All @@ -38,7 +39,7 @@ brew install guywaldman/tap/magic-cli
### PowerShell

```powershell
powershell -c "irm https://github.com/guywaldman/magic-cli/releases/download/0.0.2/magic-cli-installer.ps1 | iex"
powershell -c "irm https://github.com/guywaldman/magic-cli/releases/download/0.0.3/magic-cli-installer.ps1 | iex"
```

### Binaries
Expand Down
1 change: 1 addition & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

| Version | Supported |
| ------- | ------------------ |
| 0.0.3 | :white_check_mark: |
| 0.0.2 | :white_check_mark: |
| 0.0.1 | :white_check_mark: |

Expand Down

0 comments on commit 63d75bf

Please sign in to comment.