Update dependencies and add dependency management docs

- Upgrade charmbracelet/x/ansi v0.10.1 -> v0.11.3
- Upgrade spf13/cobra v1.8.1 -> v1.10.2
- Upgrade golang.org/x/text v0.3.8 -> v0.32.0
- Add dependency management section to AGENTS.md
This commit is contained in:
Joshua Samuel
2026-01-04 10:59:47 +11:00
parent 696573e644
commit 14085db392
3 changed files with 61 additions and 34 deletions

View File

@@ -29,3 +29,22 @@ This file exists for compatibility with tools that look for AGENTS.md.
- NEVER stop before pushing - that leaves work stranded locally
- NEVER say "ready to push when you are" - YOU must push
- If push fails, resolve and retry until it succeeds
## Dependency Management
Periodically check for outdated dependencies:
```bash
go list -m -u all | grep '\['
```
Update direct dependencies:
```bash
go get <package>@latest
go mod tidy
go build ./...
go test ./...
```
Check release notes for breaking changes before major version bumps.