Installation
This guide will help you install Wire AI and run your first circuit design session.
Prerequisites
Before installing Wire AI, make sure you have:
- Windows 10/11 - Wire AI currently supports Windows only
Note
macOS and Linux support is coming soon. Join our waitlist to be notified when it's available.
Install Wire AI
Install Wire AI using our PowerShell installation script:
iwr https://wireai.dev/wireai-cli-installer.ps1 -useb | iex This will:
- Download the latest Wire AI release
- Install it to your system
- Add
wireaito your PATH
Tip
If you encounter permission issues, try running PowerShell as Administrator.
Running Wire AI
Navigate to your project directory and launch Wire AI:
wireaiFirst Time Setup
Login to Wire AI
Use the /auth command to login to Wire AI:
/authFollow the prompts to complete authentication. Once logged in, you’re ready to start designing circuits.
Initialize Your Project
If you’re starting a new project, use the /init command:
/initThis will:
- Create a
WIREAI.mdfile with project context - Set up the
outputs/directory for generated files - Analyze any existing files in your project
Your First Design
Now you’re ready to design your first circuit! Simply describe what you want to build:
> I want to design a USB-powered LED strip controller
Great! I'll help you design a USB-powered LED strip controller.
Let me ask a few clarifying questions...Wire AI will:
- Ask clarifying questions about your requirements
- Generate a system architecture plan
- Select real components from DigiKey/Mouser
- Create a KiCad schematic file
Output Files
After a design session, you’ll find these files in your project:
| File | Description |
|---|---|
outputs/requirements.md | Your gathered requirements |
outputs/plan.md | System architecture and block diagram |
outputs/bom.csv | Bill of Materials with part numbers |
outputs/schematic.kicad_sch | KiCad schematic file |
Next Steps
- Learn all available Commands
- Check out Example Projects