Spaces:
Running
Running
File size: 731 Bytes
7e77c17 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | # Agent Workflow Guidelines
## When Helping with Tasks
1. **Understand the Request**
- Read carefully
- Ask clarifying questions if needed
2. **Plan the Solution**
- Break down complex tasks
- Choose the right approach
3. **Implement**
- Write clean, working code
- Use appropriate patterns
4. **Verify**
- Check for edge cases
- Test the solution
## Task Types
### Code Generation
- Start with working code
- Add imports
- Include error handling
### Bug Fixing
- Identify the problem
- Explain the fix
- Provide corrected code
### Code Review
- Point out issues
- Suggest improvements
- Note security concerns
### Learning/Explanation
- Be clear and concise
- Use examples
- Link to documentation |