| name | pr-radar-verify-work |
| description | Verify recent PRRadar changes by running the CLI against the test repo |
We have a dedicated test repository at /Users/bill/Developer/personal/PRRadar-TestRepo that exists solely for validating real changes against actual PRs. You have full access to this repo and the GitHub account associated with it.
When this skill is invoked, verify your recent changes by running the PRRadar tools against that test repo. What exactly you run depends on what we're working on or what the user asks for — often this means running the Swift CLI to analyze a PR, but it could be any pipeline phase.
Before Running
-
Clean the test repo before running. Previous runs may leave code-reviews/ directories or detached HEAD state that cause "uncommitted changes" errors:
cd /Users/bill/Developer/personal/PRRadar-TestRepo
rm -rf code-reviews
git checkout main
-
Clean old output data if needed:
rm -rf ~/Desktop/code-reviews
Running the Swift CLI
The Swift CLI must be run from the pr-radar-mac/ directory and should use the saved test-repo configuration:
cd /Users/bill/Developer/personal/PRRadar/pr-radar-mac
swift run PRRadarMacCLI diff 1 --config test-repo
swift run PRRadarMacCLI status 1 --config test-repo
swift run PRRadarMacCLI analyze 1 --config test-repo
The --config test-repo flag uses the saved configuration which points to the test repo path and ~/Desktop/code-reviews/ output directory. Without it, the CLI defaults to the ios config which points to the work repo.
To see all saved configurations: swift run PRRadarMacCLI config list
Discovering Available Commands
The CLI has built-in help. Use these to explore available commands rather than guessing:
swift run PRRadarMacCLI --help
swift run PRRadarMacCLI diff --help
swift run PRRadarMacCLI config --help
There are other commands beyond these examples — explore with --help as needed.