From ec5f76e6dd19095ebe902aae187f1dbe759a6f0a Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 7 Sep 2025 18:02:57 +0300 Subject: docs: document Custom prompt and CLI no-args editor; bump version to v0.7.3 --- README.md | 6 ++++++ internal/version.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 113a62d..a656c38 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ It has got improved capabilities for Go code understanding (for example, create * LSP in-editor chat with the LLM * Stand-alone command line tool for LLM interaction * TUI code-action runner (`hexai-tmux-action`) with Bubble Tea + - Includes a “Custom prompt” action (hotkey `p`) that opens your editor (`$HEXAI_EDITOR` or `$EDITOR`) on a temporary Markdown file. * Support for OpenAI, GitHub Copilot, and Ollama ## Documentation @@ -43,3 +44,8 @@ Either use the Mage method as mentioned above, or install directly with: - CLI: `go install codeberg.org/snonux/hexai/cmd/hexai@latest` - LSP: `go install codeberg.org/snonux/hexai/cmd/hexai-lsp@latest` - Action runner: `go install codeberg.org/snonux/hexai/cmd/hexai-tmux-action@latest` + +## Hexai CLI + +- When invoked without arguments, `hexai` opens your editor (`$HEXAI_EDITOR` or `$EDITOR`) on a temporary `.md` file to capture a prompt, and combines it with any piped stdin. +- With arguments, behavior is unchanged (no editor spawn). diff --git a/internal/version.go b/internal/version.go index d4734ff..2849241 100644 --- a/internal/version.go +++ b/internal/version.go @@ -1,4 +1,4 @@ // Summary: Hexai semantic version identifier used by CLI and LSP binaries. package internal -const Version = "0.7.2" +const Version = "0.7.3" -- cgit v1.2.3