First tagged release.
What's in it
- Shark-themed terminal coding agent (Go + Bubble Tea), animated underwater TUI with floating info panel
- Cross-platform: Windows, macOS, Linux. The agent probes your OS, shell, and paths before acting
- Multi-provider: OpenAI, Anthropic (Claude), Gemini, Fireworks, local llama-server
- 11 tools: bash, read/write/edit/delete_file, list_dir, glob, grep, web_search, web_fetch, download_file
- Permission prompt on every tool call; plan/build mode (Tab); accuracy gate (/verify)
- Streaming replies, model picker, slash autocomplete, prompt history, scrollback
- Resilient loop: provider retries with backoff, tool panic recovery, failure nudges, graceful step budget
Windows notes
The bash tool drives cmd.exe with automatic Unix-to-cmd translation (mkdir -p -> mkdir, rm -rf -> rmdir /s /q).
Download
The sharkcode.exe below is Windows x64. If you're on macOS or Linux (or another arch), clone and build it yourself:
git clone https://github.com/GurnoorLog/Shark_code.git
cd Shark_code
go build -o sharkcode .
./sharkcode
Requires Go 1.25+. You can also cross-compile from any machine, e.g. for Apple Silicon:
GOOS=darwin GOARCH=arm64 go build -o sharkcode .