-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Implement no-cache option and refactor display logic
Introducing the ability to disable caching and overhauled the display logic for better status tracking during tool execution. Added a display module to better manage state and output during runs, and implemented a no-cache option to allow runs without utilizing the cache layer. Additionally, refactored context management within the execution engine to handle unique execution IDs. The go.mod changes include updating dependencies and adding the `golang.org/x/term` package for better terminal interaction.
- Loading branch information
1 parent
2b2c3a7
commit 6887aeb
Showing
10 changed files
with
382 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
tools: gitstatus | ||
|
||
Create well formed git commit message based of off the currently stated file | ||
contents. The message should convey why something was changed and not what | ||
changed. Use the well known format that has the prefix chore, fix, etc. | ||
|
||
Only include changed to *.go files and any change to the go.mod file. Exclude | ||
the go.sum file. | ||
|
||
Do not use markdown format for the output. | ||
|
||
--- | ||
name: gitstatus | ||
|
||
#!/bin/sh | ||
|
||
git diff --staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.