11[ ![ justforfunnoreally.dev badge] ( https://img.shields.io/badge/justforfunnoreally-dev-9ff )] ( https://justforfunnoreally.dev )
22
3- <div class =" title-block " style =" text-align : center ;" align =" center " >
4-
5- # Clue - Simple AI Coding Agent in Go
6-
7- <p ><img title =" clue logo " src =" assets/images/clue-logo.svg " width =" 320 " height =" 320 " ></p >
8-
9- </div >
10-
11- If this proves to be helpful to anyone, consider it my thanks to the open-source community :)
12-
13- (Important) Read through this wonderful article on [ how to build an agent by Thorsten Ball] ( https://ampcode.com/how-to-build-an-agent ) and follow along if possible
3+ # Tinker
144
155## Dependencies
166
@@ -28,32 +18,32 @@ export GOOGLE_API_KEY="your-api-key-here"
28182 . Run the installation script for the latest version (Linux only at the moment):
2919
3020``` bash
31- curl -fsSL https://raw.githubusercontent.com/honganh1206/clue /main/scripts/install.sh | sudo -E bash
21+ curl -fsSL https://raw.githubusercontent.com/honganh1206/tinker /main/scripts/install.sh | sudo -E bash
3222```
3323
3424## MCP
3525
36- To add MCP servers to clue :
26+ To add MCP servers to tinker :
3727
3828``` sh
39- clue mcp --server-cmd " my-server:npx @modelcontextprotocol/server-everything"
29+ tinker mcp --server-cmd " my-server:npx @modelcontextprotocol/server-everything"
4030```
4131
4232## Breaking Changes
4333
44- > ** ⚠️ WARNING** : If you have a running clue daemon from a previous version, you must purge it before installing the new version:
34+ > ** ⚠️ WARNING** : If you have a running tinker daemon from a previous version, you must purge it before installing the new version:
4535
46361 . Disable the systemd service:
4737
4838``` bash
49- sudo systemctl disable clue
50- sudo systemctl stop clue
39+ sudo systemctl disable tinker
40+ sudo systemctl stop tinker
5141```
5242
53- 2 . Identify the clue process:
43+ 2 . Identify the tinker process:
5444
5545``` bash
56- ps aux | grep clue
46+ ps aux | grep tinker
5747```
5848
59493 . Kill the process entirely (replace ` <PID> ` with the actual process ID):
@@ -65,11 +55,11 @@ kill -9 <PID>
65554 . Remove the service file:
6656
6757``` bash
68- sudo rm /etc/systemd/system/clue .service
58+ sudo rm /etc/systemd/system/tinker .service
6959sudo systemctl daemon-reload
7060```
7161
72- 5 . Move the existing ` conversation.db ` from ` ~/.local/.clue ` to ` ~/.clue ` and rename the database to ` clue .db`
62+ 5 . Move the existing ` conversation.db ` from ` ~/.local/.tinker ` to ` ~/.tinker ` and rename the database to ` tinker .db`
7363
7464## Development
7565
0 commit comments