Inline Wizard
FreshThe /wizard command runs inside an existing agent tab to auto-generate Auto Run documents through a guided AI conversation.
Wizard Flow
How to Use
Basic
/wizardWith Initial Context
/wizard add user authentication with OAuth2Requirements
- Auto Run document folder must be configured for the agent
What Happens
- Type
/wizard(with optional initial context) - AI asks clarifying questions about your project
- Confidence gauge builds in the input area (0-100%)
- At 80% confidence, document generation begins
- Shows "Austin Facts" during generation (cancellable)
- Documents saved to a unique subfolder under your Auto Run folder
- Tab renamed to reflect the project (e.g., "Project: AuthSystem")
- Final AI message summarizes generated docs and suggests next steps
- Same session ID preserved — context continuity maintained
Multiple Wizards
Multiple inline wizards can run simultaneously in different tabs. Wizard state is per-tab.
Generated Output
The wizard creates structured markdown checklists ready for Auto Run:
markdown
# Phase 1: Foundation Setup
- [ ] Set up project scaffolding with TypeScript config
- [ ] Install core dependencies (express, passport, jsonwebtoken)
- [ ] Create database schema for users and sessions
- [ ] Implement base error handling middleware
# Phase 2: Authentication Flow
- [ ] Implement OAuth2 provider integration
- [ ] Create login/logout endpoints
- [ ] Add session management with JWT tokens
- [ ] Build middleware for route protectionSee Also
- Auto Run & Playbooks — Execute the generated documents
- Slash Commands — Other available commands
- Spec-Driven Development — Alternative planning approach