fix: update worker restart instructions in error messages

- Added a new line after the command to run for restarting the worker in the error message.
- Included an additional instruction to restart Claude Code after running the worker restart command.
This commit is contained in:
Alex Newman
2025-12-14 14:51:42 -05:00
parent ad75ca7c4c
commit 830f16df46
8 changed files with 45 additions and 38 deletions
+2 -1
View File
@@ -45,7 +45,8 @@ export function getWorkerRestartInstructions(
message += `1. Exit Claude Code completely\n`;
message += `2. Open ${terminal}\n`;
message += `3. Navigate to: ${pluginDir}\n`;
message += `4. Run: npm run worker:restart`;
message += `4. Run: npm run worker:restart\n`;
message += `5. Restart Claude Code`;
if (includeSkillFallback) {
message += `\n\nIf that doesn't work, try: /troubleshoot`;