From 1e2e96f92d6fb25ae55303d90444534369bda0aa Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 23 Mar 2026 08:21:27 +0200 Subject: fix: correct taskwarrior filter ordering in dep and info commands MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - command_dep.go handleDepAddRm: was passing uuid as a modification argument (task modify depends:...) which could modify ALL agent tasks; now uses uuid: as filter - command_dep.go handleDepList: updated deprecated 'uuid ' space syntax to canonical 'uuid:' colon syntax - command_info_add.go handleInfo: same space→colon fix for consistency All mutation commands now uniformly use uuid: as the filter before the action verb. Co-Authored-By: Claude Sonnet 4.6 --- internal/askcli/command_info_add.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/askcli/command_info_add.go') diff --git a/internal/askcli/command_info_add.go b/internal/askcli/command_info_add.go index 5b76b2b..5545881 100644 --- a/internal/askcli/command_info_add.go +++ b/internal/askcli/command_info_add.go @@ -18,7 +18,7 @@ func (d Dispatcher) handleInfo(ctx context.Context, args []string, stdout, stder return 1, nil } var outBuf bytes.Buffer - code, err := d.runner.Run(ctx, []string{"uuid", uuid, "export"}, nil, &outBuf, stderr) + code, err := d.runner.Run(ctx, []string{"uuid:" + uuid, "export"}, nil, &outBuf, stderr) if code != 0 { return code, err } -- cgit v1.2.3