ワンクリックで
quickfix
// Retrieves the explanation and fix instructions for a specific Spring Boot diagnostic error code and applies the fix to a specific file. Use this when you encounter a Spring Boot warning or error and need to know how to fix it.
// Retrieves the explanation and fix instructions for a specific Spring Boot diagnostic error code and applies the fix to a specific file. Use this when you encounter a Spring Boot warning or error and need to know how to fix it.
| name | quickfix |
| description | Retrieves the explanation and fix instructions for a specific Spring Boot diagnostic error code and applies the fix to a specific file. Use this when you encounter a Spring Boot warning or error and need to know how to fix it. |
| arguments | ["error_code","file_path","range"] |
| allowed-tools | View |
You have encountered the Spring Boot diagnostic error code: $ARGUMENTS[0].
The problem is located in the file: $ARGUMENTS[1].
The text range of the problem is: $ARGUMENTS[2] (if provided).
To find the official explanation and potential fixes for this issue, you must read the explanation file located at:
${CLAUDE_PLUGIN_ROOT}/explanations/$ARGUMENTS[0].md
(Note: If the error code includes a prefix like errorCode=, strip it out before forming the file path).
If the file does not exist, use your general Spring Boot knowledge to fix the issue.
Based on the provided "Explanations" and "Fixes" in that file:
$ARGUMENTS[1]) to determine which of the suggested fixes is the most appropriate.$ARGUMENTS[1].$ARGUMENTS[2]) is provided, ensure your fix is applied only around that specific text range.