Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .tasks/backlog/2026-02-17-rename-util-validate.md

This file was deleted.

32 changes: 32 additions & 0 deletions .tasks/done/2026-02-17-rename-util-validate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: Rename cmd/util_*.go files to descriptive names
status: done
created: 2026-02-17
updated: 2026-02-17
---

## Objective

`cmd/util_validate.go` needs to be renamed. The current name doesn't
follow the project's naming conventions for cmd/ files which use the
pattern `client_*.go`, `api_*.go`, `worker_*.go`, etc.

## Tasks

- [x] Determine correct name based on what the file does and where it
fits in the command hierarchy
- [x] Rename the file
- [x] Update any references/imports
- [x] Verify tests still pass

## Outcome

Renamed all three `util_` prefixed files to descriptive names, matching
the convention used by major Cobra CLI projects (Docker CLI, NATS CLI):

- `cmd/util_validate.go` → `cmd/validate.go`
- `cmd/util_log.go` → `cmd/log.go`
- `cmd/util_ui.go` → `cmd/ui.go`

No import changes needed — all files are in `package cmd`. Build, tests,
and vet all pass.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading