Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion categories/debugging/debugging-and-error-recovery/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ go test -run TestSpecificName -v ./...
go test -race ./...

# Build the project (check for compilation errors)
go build ./cmd/hawk
go build ./cmd/graycode
```

## Error-Specific Patterns
Expand Down
2 changes: 1 addition & 1 deletion categories/general/context-engineering/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Use `Read` to load the specific section:

Before editing a file, read it. Before implementing a pattern, find an existing example in the codebase.

**Pre-task context loading with hawk tools:**
**Pre-task context loading with graycode tools:**
1. `Read` the file(s) you'll modify
2. `Read` related test files
3. Use `Grep` to find one example of a similar pattern already in the codebase
Expand Down
4 changes: 2 additions & 2 deletions categories/general/incremental-implementation/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ When directing an agent to implement incrementally:
Start with just the database schema change and the API endpoint.
Don't touch the UI yet — we'll do that in the next increment.

After implementing, run `go test ./...` and `go build ./cmd/hawk` to verify
After implementing, run `go test ./...` and `go build ./cmd/graycode` to verify
nothing is broken."
```

Expand All @@ -206,7 +206,7 @@ After each increment, verify:

- [ ] The change does one thing and does it completely
- [ ] All existing tests still pass (`go test -race ./...`)
- [ ] The build succeeds (`go build ./cmd/hawk`)
- [ ] The build succeeds (`go build ./cmd/graycode`)
- [ ] Linting passes (`go vet ./...`)
- [ ] The new functionality works as expected
- [ ] The change is committed with a descriptive message
Expand Down
2 changes: 1 addition & 1 deletion categories/general/planning-and-task-breakdown/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Each task follows this structure:

**Verification:**
- [ ] Tests pass: `go test -race ./...`
- [ ] Build succeeds: `go build ./cmd/hawk`
- [ ] Build succeeds: `go build ./cmd/graycode`
- [ ] Manual check: [description of what to verify]

**Dependencies:** [Task numbers this depends on, or "None"]
Expand Down
4 changes: 2 additions & 2 deletions categories/general/rb-changelog/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ Use Keep a Changelog format with structured entries:
## [1.2.0] - 2025-06-15

### Added
- New CLI command for database migrations (`hawk db migrate`) (#245)
- New CLI command for database migrations (`graycode db migrate`) (#245)
- Support for TypeScript 5.4 in IDE linting

### Fixed
- Crash when parsing malformed JSON in `.hawkrc` config file (#243)
- Crash when parsing malformed JSON in `.graycoderc` config file (#243)
- Memory leak in long-running agent sessions

### Changed
Expand Down
2 changes: 1 addition & 1 deletion categories/general/spec-driven-development/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Don't silently fill in ambiguous requirements. The spec's entire purpose is to s

2. **Commands** — Full executable commands with flags, not just tool names.
```
Build: go build ./cmd/hawk
Build: go build ./cmd/graycode
Test: go test -race ./...
Lint: go vet ./...
```
Expand Down