From 8e351c86502cea78f1f0b3aa19cde7ca702bacab Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 8 Apr 2026 09:58:02 +0300 Subject: 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 --- internal/askcli/task_alias_cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/askcli/task_alias_cache.go') diff --git a/internal/askcli/task_alias_cache.go b/internal/askcli/task_alias_cache.go index e89dbb5..ff682d6 100644 --- a/internal/askcli/task_alias_cache.go +++ b/internal/askcli/task_alias_cache.go @@ -114,7 +114,7 @@ func taskAliasCachePath() (string, error) { // v2 uses reversed alias strings (e.g. "10" instead of "01") so that the // first character varies more often, improving shell auto-completion. The // old v1 file is intentionally abandoned so the mapping starts fresh. - return filepath.Join(dir, "ask", "task-aliases-v2.json"), nil + return filepath.Join(dir, "do", "task-aliases-v2.json"), nil } func (c *taskAliasCache) validate() error { -- cgit v1.2.3