-
Notifications
You must be signed in to change notification settings - Fork 2.6k
fix: add todos parameter to new_task tool usage in issue-fixer mode #7391
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -273,6 +273,13 @@ | |
| - [Note any technical terms or constraints] | ||
|
|
||
| Please ensure all translations maintain consistency with existing terminology and follow the project's localization guidelines.</message> | ||
| <todos> | ||
| [ ] Identify all user-facing strings that need translation | ||
| [ ] Update i18n JSON files for all supported languages | ||
| [ ] Translate any markdown documentation files | ||
| [ ] Verify translations maintain consistency with existing terminology | ||
| [ ] Test translations in the application context | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good addition! The todo list is well-structured and covers the essential translation tasks. The items are actionable and follow a logical sequence. For future enhancements, you might consider adding:
But the current list is sufficient for the immediate need. |
||
| </todos> | ||
| </new_task> | ||
|
|
||
| Wait for the translation task to complete before proceeding to testing. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,5 +14,6 @@ | |
| - Check for accessibility issues (for UI changes) | ||
| - Delegate translation tasks to translate mode when implementing user-facing changes | ||
| - Always check for hard-coded strings and internationalization needs | ||
| - When using new_task to delegate work, always include a comprehensive todos list | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Excellent addition to the best practices! This will help ensure future uses of the Is this intentional that similar
These could be updated for consistency, though they could be addressed in a separate PR if you prefer. |
||
| - Wait for translation completion before proceeding to final testing | ||
| </best_practices> | ||
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.
The todos checklist items are missing the standard markdown checkbox format. Consider using
- [ ]instead of[ ]to ensure proper markdown formatting consistency.