VIXDEV — Universal AI Design Booster. Plug into any project, zero config.
Project description
VIXDEV ULTRA — AI Design Booster SDK
Plug into any project. Get premium animated code. Zero config.
Install
# JavaScript / TypeScript / Next.js / React
npm install vixdev
# Python
pip install vixdev
How it works
VIXDEV reads your AI API keys from .env automatically — you never configure the AI yourself.
# .env — Set ANY one of these (VIXDEV auto-picks the best)
GROQ_API_KEY=gsk_xxxx # Fastest (Llama-3 70B)
OPENAI_API_KEY=sk-xxxx # GPT-4o
ANTHROPIC_API_KEY=sk-ant-xxxx # Claude 3.5 Sonnet
GEMINI_API_KEY=AIza-xxxx # Gemini 2.0 Flash
OPENROUTER_API_KEY=sk-or-xxxx # Any model
JavaScript / TypeScript
import vixdev from 'vixdev'
// Connect — auto-reads keys from .env
vixdev.connect({ project: 'my-site' })
// Paste your code → get animated version back
const result = await vixdev.boost(`
<header>
<nav>
<a href="/">MySite</a>
<button>Contact</button>
</nav>
</header>
`, { style: 'premium', output: 'react' })
console.log(result.code) // Animated React component
console.log(result.provider) // "groq"
console.log(result.model) // "llama3-70b-8192"
Python
import vixdev
vixdev.connect(project="my-portfolio")
result = vixdev.boost("""
<section>
<h1>Welcome</h1>
<button>Get Started</button>
</section>
""", style="cyber")
print(result.code) # Ready to paste
Animation Styles
| Style | Description |
|---|---|
modern |
Glassmorphism + fade-in animations |
cyber |
Neon glows + slide effects |
minimal |
Clean transitions + micro-animations |
premium |
Deep dark + violet accents (default) |
Real-Time Team Sync
vixdev.connect({
project: 'my-site',
dashboardUrl: 'http://localhost:4000',
realtime: true, // Enables WebSocket sync
team: 'design-team',
})
// When anyone generates code, all team members see it live
vixdev.on('team:update', (data) => {
console.log('Team generated:', data.code)
})
File Boosting
// Boost an entire file
await vixdev.boostFile('./src/Header.tsx', { style: 'modern' })
// Replace the file in-place with the animated version
await vixdev.boostFile('./src/Header.tsx', { inplace: true })
// Boost from a URL
const result = await vixdev.boostUrl('https://mysite.com', { style: 'premium' })
Events
vixdev.on('boost:start', ({ code, provider }) => { ... })
vixdev.on('boost:done', (result) => { ... })
vixdev.on('boost:error', ({ error }) => { ... })
vixdev.on('team:update', (data) => { ... })
Built with ❤️ by VIXDEV ULTRA — Sovereign Design Engine
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
vixdev_booster-1.0.0.tar.gz
(6.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vixdev_booster-1.0.0.tar.gz.
File metadata
- Download URL: vixdev_booster-1.0.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8fc8d92f6613a6a588da220f011168e83e385ac3c8a5ad6f82a6f4102ef7f0d
|
|
| MD5 |
7c3422d7676bb3952cce7455b665253f
|
|
| BLAKE2b-256 |
d6545d68a8f6d1c9e6f98b81976831a102b721367f5451371bb06a9ccf428901
|
File details
Details for the file vixdev_booster-1.0.0-py3-none-any.whl.
File metadata
- Download URL: vixdev_booster-1.0.0-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d988ad1d26e5757d1cdaceb747357d14bc5061646a6638449cfa799d3ccc5f23
|
|
| MD5 |
463d502309baacf5b513b38e191fa9b6
|
|
| BLAKE2b-256 |
195da348368a06b79ceb36f545df56cf8b7ea027a1989f4a3e85926c23e0c204
|