github charmbracelet/crush v0.50.0

latest release: nightly
13 hours ago

Catching up with crush run

Did you know that you can Crush in a non-interactive manner? It's easy as crush run.

crush run "what's the best tui framework for go?"

That’s been a thing for a while. Starting with this release you can pickup sessions non-interactively thanks to an awesome feature by @seroperson:

  • --continue (-C): continue last session
  • --session (-s): continue a specific session
# Continue a previous session
crush run --session {session-id} "um, can you repeat that?"

# Continue the most recent session
crush run --continue "tell me more"

How can you find your session ID? You can use the session management commands we added 4 days ago. In short:

# List all sessions (ordered by most recent)
crush session list

# Alternatively output JSON, useful for scripts, etc.
crush session list --json

The week is just started. See ya in a few!
Charm ✨

Changelog

New!

Fixed

Other stuff


Verifying the artifacts

First, download the checksums.txt file and the checksums.txt.sigstore.json file files, for example, with wget:

wget 'https://github.com/charmbracelet/crush/releases/download/v0.50.0/checksums.txt'
wget 'https://github.com/charmbracelet/crush/releases/download/v0.50.0/checksums.txt.sigstore.json'

Then, verify it using cosign:

cosign verify-blob \
  --certificate-identity 'https://github.com/charmbracelet/meta/.github/workflows/goreleaser.yml@refs/heads/main' \
  --certificate-oidc-issuer 'https://token.actions.githubusercontent.com' \
  --bundle 'checksums.txt.sigstore.json' \
  ./checksums.txt

If the output is Verified OK, you can safely use it to verify the checksums of other artifacts you downloaded from the release using sha256sum:

sha256sum --ignore-missing -c checksums.txt

Done! You artifacts are now verified!

The Charm logo

Thoughts? Questions? We love hearing from you. Feel free to reach out on X, Discord, Slack, The Fediverse, Bluesky.

Don't miss a new crush release

NewReleases is sending notifications on new releases.