instalar conexoes 1303

This commit is contained in:
2026-03-13 12:49:08 +00:00
parent c7fb0c8561
commit 9d3958b82b
234 changed files with 49038 additions and 0 deletions

View File

@@ -0,0 +1,81 @@
---
description: Preview server start, stop, and status check. Local development server management.
---
# /preview - Preview Management
$ARGUMENTS
---
## Task
Manage preview server: start, stop, status check.
### Commands
```
/preview - Show current status
/preview start - Start server
/preview stop - Stop server
/preview restart - Restart
/preview check - Health check
```
---
## Usage Examples
### Start Server
```
/preview start
Response:
🚀 Starting preview...
Port: 3000
Type: Next.js
✅ Preview ready!
URL: http://localhost:3000
```
### Status Check
```
/preview
Response:
=== Preview Status ===
🌐 URL: http://localhost:3000
📁 Project: C:/projects/my-app
🏷️ Type: nextjs
💚 Health: OK
```
### Port Conflict
```
/preview start
Response:
⚠️ Port 3000 is in use.
Options:
1. Start on port 3001
2. Close app on 3000
3. Specify different port
Which one? (default: 1)
```
---
## Technical
Auto preview uses `auto_preview.py` script:
```bash
python .agent/scripts/auto_preview.py start [port]
python .agent/scripts/auto_preview.py stop
python .agent/scripts/auto_preview.py status
```