RuntimeWarning: coroutine 'BaseWizard.run' was never awaited |
run() called without await |
It is a coroutine — await it or use asyncio.run |
high |
AttributeError: 'NoneType' object has no attribute ... after get_wizard |
The wizard id is unknown; get_wizard returned None |
Check get_wizard(id) is not None; list ids with list_wizards() |
high |
A question step never prompts / hangs |
No ask_user_callback wired (outside Claude Code) |
Pass an ask_user_callback to the wizard, or run via the /wizard skill |
medium |
WizardResult.success is False with a populated error |
A step failed (LLM call, validation, or an aborted confirm) |
Read result.error and result.steps_completed to see where it stopped |
medium |
Custom wizard not found by get_wizard |
It was never register_wizard'd (or save_custom_wizard'd) |
Register the class or save the definition first |
low |