README
π§ Build Your Own Coding Agent via a Step-by-Step Workshop
Welcome! π This workshop will guide you through building your own AI-powered coding assistant β starting from a basic chatbot, and adding powerful tools like file reading, shell command execution, and code searching.
You donβt need to be an AI expert. Just follow along and build step-by-step!
π Want a detailed overview? Check out the blog post: ghuntley.com/agent
---
π― What You'll Learn
By the end of this workshop, youβll understand how to:
- β
Connect to the Anthropic Claude API
- β
Build a simple AI chatbot
- β
Add tools like reading files, editing code, and running commands
- β
Handle tool requests and errors
- β
Build an agent that gets smarter with each step
---
π οΈ What We're Building
Youβll build 6 versions of a coding assistant.
Each version adds more features:
1. Basic Chat β talk to Claude
2. File Reader β read code files
3. File Explorer β list files in folders
4. Command Runner β run shell commands
5. File Editor β modify files
6. Code Search β search your codebase with patterns
graph LR
subgraph "Application Progression"
A[chat.go<br/>Basic Chat] --> B[read.go<br/>+ File Reading]
B --> C[list_files.go<br/>+ Directory Listing]
C --> D[bash_tool.go<br/>+ Shell Commands]
D --> E[edit_tool.go<br/>+ File Editing]
E --> F[code_search_tool.go<br/>+ Code Search]
end
subgraph "Tool Capabilities"
G[No Tools] --> H[read_file]
H --> I[read_file<br/>list_files]
I --> J[read_file<br/>list_files<br/>bash]
J --> K[read_file<br/>list_files<br/>bash<br/>edit_file]
K --> L[read_file<br/>list_files<br/>bash<br/>code_search]
end
A -.-> G
B -.-> H
C -.-> I
D -.-> J
E -.-> K
F -.-> LAt the end, youβll end up with a powerful local developer assistant!
---
π§± How It Works (Architecture)
Each agent works like this:
1. Waits for your input
2. Sends it to Claude
3. Claude may respond directly or ask to use a tool
4. The agent runs the tool (e.g., read a file)
5. Sends the result back to Claude
6. Claude gives you the final answer
We call this the event loop β it's like the agent's heartbeat.
graph TB
subgraph "Agent Architecture"
A[Agent] --> B[Anthropic Client]
A --> C[Tool Registry]
A --> D[getUserMessage Function]
A --> E[Verbose Logging]
end
subgraph "Shared Event Loop"
F[Start Chat Session] --> G[Get User Input]
G --> H{Empty Input?}
H -->|Yes| G
H -->|No| I[Add to Conversation]
I --> J[runInference]
J --> K[Claude Response]
K --> L{Tool Use?}
L -->|No| M[Display Text]
L -->|Yes| N[Execute Tools]
N --> O[Collect Results]
O --> P[Send Results to Claude]
P --> J
M --> G
end
subgraph "Tool Execution Loop"
N --> Q[Find Tool by Name]
Q --> R[Execute Tool Function]
R --> S[Capture Result/Error]
S --> T[Add to Tool Results]
T --> U{More Tools?}
U -->|Yes| Q
U -->|No| O
endπ Getting Started
β Prerequisites
* Go 1.24.2+ or devenv (recommended for easy setup)
* An Anthropic API Key
π§ Set Up Your Environment
Option 1: Recommended (using devenv)
devenv shell # Loads everything you needOption 2: Manual setup
Make sure Go is installed
go mod tidyπ Add Your API Key
export ANTHROPIC_API_KEY="your-api-key-here"---
π Start with the Basics
1. chat.go β Basic Chat
A simple chatbot that talks to Claude.
go run chat.go* β‘οΈ Try: βHello!β
* β‘οΈ Add --verbose to see detailed logs
---
π οΈ Add Tools (One Step at a Time)
2. read.go β Read Files
Now Claude can read files from your computer.
go run read.go* β‘οΈ Try: βRead fizzbuzz.jsβ
---
3. list_files.go β Explore Folders
Lets Claude look around your directory.
go run list_files.go* β‘οΈ Try: βList all files in this folderβ
* β‘οΈ Try: βWhatβs in fizzbuzz.js?β
---
4. bash_tool.go β Run Shell Commands
Allows Claude to run safe terminal commands.
go run bash_tool.go* β‘οΈ Try: βRun git statusβ
* β‘οΈ Try: βList all .go files using bashβ
---
5. edit_tool.go β Edit Files
Claude can now modify code, create files, and make changes.
go run edit_tool.go* β‘οΈ Try: βCreate a Python hello world scriptβ
* β‘οΈ Try: βAdd a comment to the top of fizzbuzz.jsβ
---
6. code_search_tool.go β Search Code
Use pattern search (powered by ripgrep).
go run code_search_tool.go* β‘οΈ Try: βFind all function definitions in Go filesβ
* β‘οΈ Try: βSearch for TODO commentsβ
---
π§ͺ Sample Files (Already Included)
1. fizzbuzz.js: for file reading and editing
1. riddle.txt: a fun text file to explore
1. AGENT.md: info about the project environment
---
π Troubleshooting
API key not working?
* Make sure itβs exported: echo $ANTHROPIC_API_KEY
* Check your quota on Anthropicβs dashboard
Go errors?
* Run go mod tidy
* Make sure youβre using Go 1.24.2 or later
Tool errors?
* Use --verbose for full error logs
* Check file paths and permissions
Environment issues?
* Use devenv shell to avoid config problems
---
π‘ How Tools Work (Under the Hood)
Tools are like plugins. You define:
* Name (e.g., read_file)
* Input Schema (what info it needs)
* Function (what it does)
Example tool definition in Go:
var ToolDefinition = ToolDefinition{
Name: "read_file",
Description: "Reads the contents of a file",
InputSchema: GenerateSchema[ReadFileInput](),
Function: ReadFile,
}Schema generation uses Go structs β so itβs easy to define and reuse.
---
π§ Workshop Path: Learn by Building
| Phase | What to Focus On |
| ----- | ------------------------------------------------ |
| 1 | chat.go: API integration and response handling |
| 2 | read.go: Tool system, schema generation |
| 3 | list_files.go: Multiple tools, file system |
| 4 | bash_tool.go: Shell execution, error capture |
| 5 | edit_tool.go: File editing, safety checks |
| 6 | code_search_tool.go: Pattern search, ripgrep |
---
π οΈ Developer Environment (Optional)
If you use devenv, it gives you:
* Go, Node, Python, Rust, .NET
* Git and other dev tools
devenv shell # Load everything
devenv test # Run checks
hello # Greeting script---
π What's Next?
Once you complete the workshop, try building:
* Custom tools (e.g., API caller, web scraper)
* Tool chains (run tools in a sequence)
* Memory features (remember things across sessions)
* A web UI for your agent
* Integration with other AI models
---
π¦ Summary
This workshop helps you:
* Understand agent architecture
* Learn to build smart assistants
* Grow capabilities step-by-step
* Practice using Claude and Go together
---
Have fun exploring and building your own AI-powered tools! π»β¨
If you have questions or ideas, feel free to fork the repo, open issues, or connect with the community!
---