diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-08 09:58:02 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-08 09:58:02 +0300 |
| commit | 8e351c86502cea78f1f0b3aa19cde7ca702bacab (patch) | |
| tree | 1340e27219255b0ebe49bdbe3b5c2fbd95df8810 /internal/askcli/formatter.go | |
| parent | 9e8f558a1f6fcdb09a8a02dfcd2e3d8fc9ce613f (diff) | |
Rename task CLI from ask to do
- Move cmd/ask to cmd/do; mage BuildDo builds binary named do
- Update askcli help text, errors, Fish completion (complete -c do, __do_*)
- Task alias cache path: XDG cache hexai/do/task-aliases-v2.json
- Refresh README and docs; go install path cmd/do@latest
- Remove accidentally tracked cmd/ask build artifact; ignore cmd/do/do and cmd/do/ask
Made-with: Cursor
Diffstat (limited to 'internal/askcli/formatter.go')
| -rw-r--r-- | internal/askcli/formatter.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/askcli/formatter.go b/internal/askcli/formatter.go index d801f8a..fc4a1d9 100644 --- a/internal/askcli/formatter.go +++ b/internal/askcli/formatter.go @@ -168,7 +168,7 @@ func FormatSuccess(alias string) string { return fmt.Sprintf("ok %s\n", alias) } -// FormatCreatedTask returns the success string written to stdout after ask add creates a task. +// FormatCreatedTask returns the success string written to stdout after do add creates a task. func FormatCreatedTask(alias string) string { return fmt.Sprintf("created task %s\n", alias) } |
