Merge pull request #46 from bucolucas/update-tool-suggestions

Update tool suggestions: strikethrough implemented tools
This commit is contained in:
2024-08-18 14:52:32 -05:00
committed by GitHub
+19 -19
View File
@@ -8,33 +8,33 @@
- **Description**: Makes changes to specific files in the repository
- **Use Case**: Enables AI to implement fixes or small features directly
## 3. Branch Management Tool
- **Description**: Creates, switches, and manages branches
- **Use Case**: Useful for isolating changes and preparing for pull requests
## ~~3. Branch Management Tool~~
- ~~**Description**: Creates, switches, and manages branches~~
- ~~**Use Case**: Useful for isolating changes and preparing for pull requests~~
## 4. Pull Request Creation Tool
- **Description**: Creates pull requests for changes made
- **Use Case**: Allows AI to submit changes for review
## ~~4. Pull Request Creation Tool~~
- ~~**Description**: Creates pull requests for changes made~~
- ~~**Use Case**: Allows AI to submit changes for review~~
## 5. Deployment Tool
- **Description**: Triggers deployment processes
- **Use Case**: Enables AI to initiate deployment of changes
## 6. Code Search Tool
- **Description**: Searches for specific code snippets or functions within the repository
- **Use Case**: Helps in quickly locating areas that need modification
## ~~6. Code Search Tool~~
- ~~**Description**: Searches for specific code snippets or functions within the repository~~
- ~~**Use Case**: Helps in quickly locating areas that need modification~~
## 7. Commit History Tool
- **Description**: Views recent commits or changes to specific files
- **Use Case**: Provides context for recent modifications
## ~~7. Commit History Tool~~
- ~~**Description**: Views recent commits or changes to specific files~~
- ~~**Use Case**: Provides context for recent modifications~~
## 8. Configuration Management Tool
- **Description**: Views and modifies configuration files
- **Use Case**: Useful for adjusting bot behavior or environment settings
## 9. Log Viewer Tool
- **Description**: Accesses and analyzes log files
- **Use Case**: Helps in diagnosing issues or understanding the bot's behavior
## ~~9. Log Viewer Tool~~
- ~~**Description**: Accesses and analyzes log files~~
- ~~**Use Case**: Helps in diagnosing issues or understanding the bot's behavior~~
## 10. Status Check Tool
- **Description**: Checks the status of various systems or services
@@ -42,13 +42,13 @@
## Prioritized Simple Tools
1. **Log Viewer Tool**: Reading log files is typically a straightforward operation and can be implemented with basic file I/O.
1. ~~**Log Viewer Tool**: Reading log files is typically a straightforward operation and can be implemented with basic file I/O.~~
2. **Code Search Tool**: This can be implemented using simple string matching or regular expressions within files.
2. ~~**Code Search Tool**: This can be implemented using simple string matching or regular expressions within files.~~
3. **Commit History Tool**: Most version control systems provide easy-to-use APIs for retrieving commit history.
3. ~~**Commit History Tool**: Most version control systems provide easy-to-use APIs for retrieving commit history.~~
4. **Branch Management Tool**: Creating and switching branches are typically simple operations in version control systems.
4. ~~**Branch Management Tool**: Creating and switching branches are typically simple operations in version control systems.~~
5. **Status Check Tool**: This could start as a simple ping or health check to various services.