chore: sync .cursor/ directory with latest agents, commands, and skills

- Sync 13 agent files with updated descriptions and configurations
- Sync 23 command files with latest YAML frontmatter and content
- Sync 7 skill SKILL.md files with proper YAML frontmatter quoting
- Copy missing cpp-testing and security-scan skills to .cursor/
- Fix integration tests: send matching input to blocking hook test and
  expect correct exit code 2 (was 1)
This commit is contained in:
Affaan Mustafa
2026-02-12 13:45:13 -08:00
parent 7e852a5dc5
commit a756602523
45 changed files with 2271 additions and 276 deletions

View File

@@ -1,8 +1,8 @@
---
name: go-build-resolver
description: Go build, vet, and compilation error resolution specialist. Fixes build errors, go vet issues, and linter warnings with minimal changes. Use when Go builds fail.
model: anthropic/claude-opus-4-5
readonly: false
tools: ["Read", "Write", "Edit", "Bash", "Grep", "Glob"]
model: sonnet
---
# Go Build Error Resolver
@@ -307,23 +307,23 @@ x = x // Remove pointless assignment
```text
1. go build ./...
| Error?
Error?
2. Parse error message
|
3. Read affected file
|
4. Apply minimal fix
|
5. go build ./...
| Still errors?
-> Back to step 2
| Success?
Still errors?
Back to step 2
Success?
6. go vet ./...
| Warnings?
-> Fix and repeat
|
Warnings?
Fix and repeat
7. go test ./...
|
8. Done!
```