From 0c851123c144340005b00f4495977caf4cf4abcc Mon Sep 17 00:00:00 2001 From: Michael Neale Date: Sat, 24 Aug 2024 12:17:31 +1000 Subject: [PATCH 1/2] Update README.md add tip about commands - seems worth a warning --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9dd64862..a7ed93fb 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ Here are some collected tips we have for working efficiently with Goose - **goose can and will edit files**. Use a git strategy to avoid losing anything - such as staging your personal edits and leaving goose edits unstaged until reviewed. Or consider using indivdual commits which can be reverted. +- **goose can and will run commands**. You can ask it to check with you first. - You can interrupt goose with `CTRL+C` to correct it or give it more info. - goose works best when solving concrete problems - experiment with how far you need to break that problem down to get goose to solve it. Be specific! E.g. it will likely fail to `"create a banking app"`, From 89f9accf7096ae3a2dfc325b926d813d408097fa Mon Sep 17 00:00:00 2001 From: Michael Neale Date: Sat, 24 Aug 2024 12:19:35 +1000 Subject: [PATCH 2/2] command note --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a7ed93fb..11350f74 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Here are some collected tips we have for working efficiently with Goose - **goose can and will edit files**. Use a git strategy to avoid losing anything - such as staging your personal edits and leaving goose edits unstaged until reviewed. Or consider using indivdual commits which can be reverted. -- **goose can and will run commands**. You can ask it to check with you first. +- **goose can and will run commands**. You can ask it to check with you first if you are concerned. It will check commands for safety as well. - You can interrupt goose with `CTRL+C` to correct it or give it more info. - goose works best when solving concrete problems - experiment with how far you need to break that problem down to get goose to solve it. Be specific! E.g. it will likely fail to `"create a banking app"`,