summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-09-07 18:02:57 +0300
committerPaul Buetow <paul@buetow.org>2025-09-07 18:02:57 +0300
commitec5f76e6dd19095ebe902aae187f1dbe759a6f0a (patch)
tree2725b40c069976d72efdbf25685719717a4c5e98
parentf57d63831d604d726685fe31494788e81f17900a (diff)
docs: document Custom prompt and CLI no-args editor; bump version to v0.7.3
-rw-r--r--README.md6
-rw-r--r--internal/version.go2
2 files changed, 7 insertions, 1 deletions
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"