.claude/skills/deps/SKILL.md
Check and tidy Go module dependencies. Use after adding/removing imports or before releases.
npx skillsauth add PeterBooker/veloria depsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Check and tidy Go module dependencies to keep go.mod/go.sum clean.
/deps - Tidy and verify dependenciesTidy modules
go mod tidy 2>&1
Verify checksums
go mod verify 2>&1
Check for changes
git diff --stat go.mod go.sum 2>&1
Report findings
## Dependency Check
### Changes
- [added/removed/changed dependencies]
### Verification
- Checksums: OK / issues found
### Summary
- go.mod changed: yes/no
- go.sum changed: yes/no
If dependencies changed, show the diff and explain what was added or removed.
development
Run Go unit tests. Use after code changes to verify correctness.
development
Run gosec and govulncheck to find security vulnerabilities. Use before releases or after dependency changes.
tools
Trigger reindexing of a specific WordPress extension. Use to rebuild the search index for a plugin, theme, or core version.
development
Run Go race detector to find data races in concurrent code. Use after any change to mutexes, goroutines, or channels.