Add agentpr and watchpr CLI tools #1

Merged
benvin merged 3 commits from benvin/init into main 2026-08-12 21:51:27 +10:00
2 changed files with 13 additions and 2 deletions
Showing only changes of commit fa8ccac0dd - Show all commits
+12 -1
View File
@@ -13,5 +13,16 @@ repos:
rev: v0.5.1
hooks:
- id: go-fmt
- id: go-vet
- id: go-unit-tests
# go-vet at the module level (dnephin's go-vet runs at repo root, which has no
# .go files here since both tools live under cmd/). The CI pre-commit image
# (almalinux9-gobuilder) has go installed.
- repo: local
hooks:
- id: go-vet-mod
name: go vet (module)
entry: go vet ./...
language: system
types: [go]
pass_filenames: false
+1 -1
View File
@@ -1,6 +1,6 @@
module git.unkin.net/unkin/agent-tools
go 1.26.5
go 1.25.7
require github.com/spf13/cobra v1.10.2