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
19 changes: 19 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,25 @@ changelog:
- title: "Other"
order: 999

# ---------------------------------------------------------------------------
# Homebrew — publishes a formula to GrayCodeAI/homebrew-tap so users can
# `brew install graycodeai/tap/hawk`. Requires HOMEBREW_TAP_TOKEN or
# TAP_GITHUB_TOKEN in the release workflow (both already wired there).
# ---------------------------------------------------------------------------
brews:
- repository:
owner: GrayCodeAI
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_TOKEN }}"
directory: Formula
homepage: "https://github.com/GrayCodeAI/hawk"
description: "AI coding agent — reads, writes, and runs code in your terminal"
license: "MIT"
install: |
bin.install "hawk"
test: |
system "#{bin}/hawk", "--version"

# ---------------------------------------------------------------------------
# Release — auto-detect prereleases (rc/beta tags). Created on the repo
# itself (not a separate release repo).
Expand Down
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,30 @@ hawk is an AI-powered coding agent that lives in your terminal. It reads your co

Follow [GrayCode](https://github.com/GrayCodeAI) for progress. When Hawk is ready to try, we will announce it on [graycodeai.com](https://graycodeai.com/changelog).

## Install (60 seconds)

Pick one — all install the same `hawk` binary (versioned into `~/.hawk/bin`, symlinked as `hawk`):

```bash
# 1. Script (any shell, verifies checksum; cosign signature when available)
curl -fsSL https://raw.githubusercontent.com/GrayCodeAI/hawk/main/install.sh | sh

# 2. Homebrew (macOS / Linuxbrew) — after the next tagged release
brew install graycodeai/tap/hawk

# 3. npm (wraps the same release binaries)
npm install -g @graycodeai/hawk
```

If `~/.hawk/bin` is not on your `PATH`, add it to your shell profile.

Then:

```bash
hawk # interactive REPL (/config on first run: API key + model)
hawk path # verify readiness
```

## Quick Start (contributors — from source)

```bash
Expand Down
Loading