-
Notifications
You must be signed in to change notification settings - Fork 1k
Add core Beast Mode functionality to GPT-4.1/5 agent prompt #467
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Implemented the GPT-4.1 specific agent prompt to improve multi-step task execution and problem-solving. Updated the DefaultAgentPrompt to conditionally render the new GPT41AgentPrompt based on the model family. Enhanced the tool capabilities detection function to streamline tool usage and added a new tool name for managing todo lists.
<br /> | ||
## 1. Deeply Understand the Problem<br /> | ||
- Carefully read the issue and think hard about a plan to solve it before coding.<br /> | ||
- Use #sequentialthinking to break down the problem into manageable parts. Consider the following:<br /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the MCP tool? I don't think we should have a reference to a tool that isn't built-in
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's an artifact of Beast Mode 3.1 which specifically mentions fetch_webpage, sequentialthinking and context7. Should be removed for these purposes.
Awesome |
* Add GPT-4.1 agent prompt and enhance tool capabilities Implemented the GPT-4.1 specific agent prompt to improve multi-step task execution and problem-solving. Updated the DefaultAgentPrompt to conditionally render the new GPT41AgentPrompt based on the model family. Enhanced the tool capabilities detection function to streamline tool usage and added a new tool name for managing todo lists. * Add setting for new prompt, tweaks * Cleanup --------- Co-authored-by: Rob Lourens <[email protected]>
This PR adds the core workflow from the Beast Mode prompt and creates a special prompt specifically for 4.1 based on this workflow.
This PR includes...