From b478f10ecb0b2d75297165eb2f0477031924ae60 Mon Sep 17 00:00:00 2001 From: Lakshman Patel Date: Mon, 7 Sep 2026 09:25:58 +0530 Subject: [PATCH] Rename example hawk tool references to graycode in skills The hawk agent name is gone (rebranded to graycode in PR #40). These six skills used 'hawk' as a generic example CLI/binary name (cmd/hawk, .hawkrc, 'hawk db migrate', 'hawk tools'), which now reads as leftover branding. Rename them to 'graycode' to match the current agent name. Genuine third-party references (StackHawk, Nighthawk, HawkEye, chemprop 'starling' method) are intentionally left unchanged - renaming them would corrupt factual skill content. --- categories/debugging/debugging-and-error-recovery/SKILL.md | 2 +- categories/general/context-engineering/SKILL.md | 2 +- categories/general/incremental-implementation/SKILL.md | 4 ++-- categories/general/planning-and-task-breakdown/SKILL.md | 2 +- categories/general/rb-changelog/SKILL.md | 4 ++-- categories/general/spec-driven-development/SKILL.md | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/categories/debugging/debugging-and-error-recovery/SKILL.md b/categories/debugging/debugging-and-error-recovery/SKILL.md index c8d239716..6c16732ec 100644 --- a/categories/debugging/debugging-and-error-recovery/SKILL.md +++ b/categories/debugging/debugging-and-error-recovery/SKILL.md @@ -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 diff --git a/categories/general/context-engineering/SKILL.md b/categories/general/context-engineering/SKILL.md index 131580b5b..3ae61ed25 100644 --- a/categories/general/context-engineering/SKILL.md +++ b/categories/general/context-engineering/SKILL.md @@ -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 diff --git a/categories/general/incremental-implementation/SKILL.md b/categories/general/incremental-implementation/SKILL.md index ddf004553..3054a5a80 100644 --- a/categories/general/incremental-implementation/SKILL.md +++ b/categories/general/incremental-implementation/SKILL.md @@ -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." ``` @@ -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 diff --git a/categories/general/planning-and-task-breakdown/SKILL.md b/categories/general/planning-and-task-breakdown/SKILL.md index e1c81f474..5450285bf 100644 --- a/categories/general/planning-and-task-breakdown/SKILL.md +++ b/categories/general/planning-and-task-breakdown/SKILL.md @@ -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"] diff --git a/categories/general/rb-changelog/SKILL.md b/categories/general/rb-changelog/SKILL.md index 8cfaf8104..b6a0da9fb 100644 --- a/categories/general/rb-changelog/SKILL.md +++ b/categories/general/rb-changelog/SKILL.md @@ -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 diff --git a/categories/general/spec-driven-development/SKILL.md b/categories/general/spec-driven-development/SKILL.md index f7e25f354..db0dd29d2 100644 --- a/categories/general/spec-driven-development/SKILL.md +++ b/categories/general/spec-driven-development/SKILL.md @@ -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 ./... ```