Spaces:
Running
Running
File size: 37,599 Bytes
b7f35f2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vibe Coding | PRD & Blueprint Creator</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'claude-primary': '#4e80ee'
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
:root {
--sidebar-width: 280px;
--panel-height: 300px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
body {
background-color: #FAFAF9;
height: 100vh;
overflow: hidden;
color: #000000;
}
.claude-shadow {
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
}
.file-item {
position: relative;
cursor: pointer;
transition: all 0.2s;
border-left: 3px solid transparent;
}
.file-item:hover {
background-color: #f3f4f6;
}
.file-item.active {
background-color: #edf2ff;
border-left: 3px solid #4e80ee;
}
.stage-progress {
position: absolute;
bottom: 0;
left: 0;
height: 3px;
background-color: #4e80ee;
}
.draggable-panel {
transition: height 0.3s ease;
}
.message-avatar {
min-width: 30px;
}
.message-content pre {
background-color: #f5f5f5;
padding: 12px;
border-radius: 6px;
overflow-x: auto;
margin: 10px 0;
}
.message-content code {
background-color: #f5f5f5;
padding: 2px 4px;
border-radius: 3px;
font-size: 90%;
}
.artifact-card {
transition: all 0.3s;
}
.artifact-card:hover {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.vscode-container {
background-color: #1e1e1e;
color: #d4d4d4;
font-family: 'Fira Code', 'Consolas', monospace;
}
</style>
</head>
<body class="bg-claude-bg text-gray-800 flex flex-col h-full">
<!-- Header -->
<header class="sticky top-0 z-40 bg-white px-4 py-3 flex items-center justify-between claude-shadow">
<div class="flex items-center space-x-4">
<div class="flex items-center space-x-2">
<div class="h-8 w-8 rounded-lg bg-claude-primary flex items-center justify-center">
<i class="fas fa-lightbulb text-white"></i>
</div>
</div>
<nav class="hidden md:flex space-x-4 text-sm font-medium">
</nav>
</div>
<div class="flex items-center space-x-4">
<div class="flex items-center space-x-1">
<button class="p-2 hover:bg-gray-100 rounded-lg">
<i class="fas fa-file-alt text-gray-600"></i>
</button>
<button class="p-2 hover:bg-gray-100 rounded-lg">
<i class="fas fa-save text-gray-600"></i>
</button>
<button class="p-2 hover:bg-gray-100 rounded-lg">
<i class="fas fa-folder-open text-gray-600"></i>
</button>
</div>
<div class="w-8 h-8 rounded-full bg-gray-200 flex items-center justify-center">
<i class="fas fa-user text-gray-600"></i>
</div>
</div>
</header>
<!-- Main Content -->
<div class="flex flex-1 overflow-hidden">
<!-- Sidebar -->
<div class="w-[var(--sidebar-width)] border-r border-[#E5E7EB] bg-[#F5F3F0] overflow-y-auto">
<div class="p-4 border-b border-claude-border">
<div class="flex items-center justify-between">
<h2 class="font-semibold text-lg">Workflow Stages</h2>
<button class="text-sm text-claude-primary">Save</button>
</div>
<div class="mt-4 space-y-1">
<div class="stage-item flex items-center space-x-3 px-3 py-2.5 bg-blue-50 rounded-lg text-claude-primary">
<i class="fas fa-play-circle"></i>
<span>Initial</span>
</div>
<div class="stage-item flex items-center space-x-3 px-3 py-2.5 hover:bg-gray-50 rounded-lg">
<i class="fas fa-lightbulb text-gray-400"></i>
<span>Conceptual</span>
</div>
<div class="stage-item flex items-center space-x-3 px-3 py-2.5 hover:bg-gray-50 rounded-lg">
<i class="fas fa-list-check text-gray-400"></i>
<span>Requirements</span>
</div>
<div class="stage-item flex items-center space-x-3 px-3 py-2.5 hover:bg-gray-50 rounded-lg">
<i class="fas fa-users text-gray-400"></i>
<span>User Experience</span>
</div>
<div class="stage-item flex items-center space-x-3 px-3 py-2.5 hover:bg-gray-50 rounded-lg">
<i class="fas fa-directions text-gray-400"></i>
<span>User Flow</span>
</div>
<div class="stage-item flex items-center space-x-3 px-3 py-2.5 hover:bg-gray-50 rounded-lg">
<i class="fas fa-bolt text-gray-400"></i>
<span>Optimization</span>
</div>
<div class="stage-item flex items-center space-x-3 px-3 py-2.5 hover:bg-gray-50 rounded-lg">
<i class="fas fa-object-group text-gray-400"></i>
<span>UI</span>
</div>
<div class="stage-item flex items-center space-x-3 px-3 py-2.5 hover:bg-gray-50 rounded-lg">
<i class="fas fa-robot text-gray-400"></i>
<span>Agents</span>
</div>
<div class="stage-item flex items-center space-x-3 px-3 py-2.5 hover:bg-gray-50 rounded-lg">
<i class="fas fa-network-wired text-gray-400"></i>
<span>Models</span>
</div>
<div class="stage-item flex items-center space-x-3 px-3 py-2.5 hover:bg-gray-50 rounded-lg">
<i class="fas fa-clipboard-check text-gray-400"></i>
<span>Final Review</span>
</div>
</div>
</div>
<div class="p-4">
<div class="flex items-center justify-between">
<h2 class="font-semibold text-lg">Project Files</h2>
<button class="text-sm text-claude-primary">
<i class="fas fa-plus"></i>
</button>
</div>
<div class="mt-3 space-y-1">
<div class="file-item active px-3 py-2 rounded-lg">
<div class="flex items-center space-x-2">
<i class="fas fa-file-lines text-blue-500"></i>
<span>PRD - eCommerce App</span>
</div>
<div class="stage-progress" style="width: 40%"></div>
</div>
<div class="file-item px-3 py-2 rounded-lg">
<div class="flex items-center space-x-2">
<i class="fas fa-diagram-project text-purple-500"></i>
<span>Architecture Blueprint</span>
</div>
<div class="stage-progress" style="width: 25%"></div>
</div>
<div class="file-item px-3 py-2 rounded-lg">
<div class="flex items-center space-x-2">
<i class="fas fa-code-branch text-green-500"></i>
<span>API Specifications</span>
</div>
<div class="stage-progress" style="width: 70%"></div>
</div>
<div class="file-item px-3 py-2 rounded-lg">
<div class="flex items-center space-x-2">
<i class="fas fa-wand-magic-sparkles text-yellow-500"></i>
<span>UX Design System</span>
</div>
<div class="stage-progress" style="width: 60%"></div>
</div>
</div>
</div>
<div class="p-4 border-t border-claude-border">
<h3 class="font-medium text-gray-600 text-sm">AI Tools</h3>
<div class="mt-2 flex flex-wrap gap-2">
<button class="px-3 py-1 text-xs bg-claude-primary text-white rounded-full">Brainstorm</button>
<button class="px-3 py-1 text-xs bg-purple-500 text-white rounded-full">Validate</button>
<button class="px-3 py-1 text-xs bg-yellow-500 text-white rounded-full">Optimize</button>
<button class="px-3 py-1 text-xs bg-green-500 text-white rounded-full">Generate</button>
<button class="px-3 py-1 text-xs bg-pink-500 text-white rounded-full">Design</button>
</div>
</div>
</div>
<!-- Chat & Artifacts Area -->
<div class="flex flex-col flex-1 overflow-hidden">
<div class="flex flex-1 overflow-hidden">
<!-- Chat Area -->
<div class="w-3/4 border-r border-[#E5E7EB] bg-[#FAFAF9] flex flex-col">
<div class="flex-1 overflow-y-auto p-4 space-y-6">
<!-- AI Message -->
<div class="flex space-x-4">
<div class="message-avatar flex items-start">
<div class="w-8 h-8 flex items-center justify-center rounded-lg bg-gray-200">
<i class="fas fa-robot text-xl text-claude-primary"></i>
</div>
</div>
<div class="message-content flex-1">
<div class="bg-white p-4 rounded-2xl rounded-tl-none shadow-sm border border-[#E5E7EB]">
<h3 class="font-semibold">Initial Concept for your PRD</h3>
<p class="mt-2">Based on your description, I've outlined the core concept for the Vibe Coding PRD application. This will serve as the foundation we can refine throughout the workflow stages.</p>
<div class="mt-3 bg-white p-3 rounded-lg claude-shadow">
<h4 class="font-medium">Key Components:</h4>
<ul class="list-disc pl-5 mt-2 space-y-1">
<li>AI-powered chat interface for requirements elicitation</li>
<li>Dynamic artifact canvas for collaborative visualization</li>
<li>Structured workflow with 10 distinct stages</li>
<li>Integrated development environments (VSCode)</li>
<li>Real-time collaboration features</li>
</ul>
</div>
<div class="mt-4 flex space-x-2">
<button class="text-sm text-claude-primary hover:underline">Refine this concept</button>
<button class="text-sm text-claude-primary hover:underline">Move to next stage</button>
<button class="text-sm text-claude-primary hover:underline">Add artifact</button>
</div>
</div>
</div>
</div>
<!-- User Message -->
<div class="flex space-x-4">
<div class="message-avatar flex items-start">
<div class="w-8 h-8 flex items-center justify-center rounded-lg bg-claude-primary">
<i class="fas fa-user text-white"></i>
</div>
</div>
<div class="message-content flex-1">
<div class="bg-claude-primary text-white p-4 rounded-2xl rounded-tl-none">
<p>Thanks! I like the initial breakdown. Could we focus more on the artifact canvas system? I want to make sure we can integrate different file types and have collaborative annotation features.</p>
</div>
</div>
</div>
<!-- AI Message -->
<div class="flex space-x-4">
<div class="message-avatar flex items-start">
<div class="w-8 h-8 flex items-center justify-center rounded-lg bg-gray-200">
<i class="fas fa-robot text-xl text-claude-primary"></i>
</div>
</div>
<div class="message-content flex-1">
<div class="bg-gray-50 p-4 rounded-2xl rounded-tl-none">
<p>Absolutely. Let me detail the Artifact Canvas system requirements:</p>
<div class="mt-3 grid grid-cols-3 gap-3">
<div class="artifact-card bg-white p-3 rounded-lg border border-gray-200">
<div class="flex space-x-2">
<i class="fas fa-file-image text-blue-400"></i>
<span class="font-medium">Image Files</span>
</div>
<p class="text-xs mt-1 text-gray-500">Supports JPG, PNG, SVG formats</p>
</div>
<div class="artifact-card bg-white p-3 rounded-lg border border-gray-200">
<div class="flex space-x-2">
<i class="fas fa-file-code text-green-400"></i>
<span class="font-medium">Code Snippets</span>
</div>
<p class="text-xs mt-1 text-gray-500">Syntax highlighting for all languages</p>
</div>
<div class="artifact-card bg-white p-3 rounded-lg border border-gray-200">
<div class="flex space-x-2">
<i class="fas fa-diagram-project text-purple-400"></i>
<span class="font-medium">Flowcharts</span>
</div>
<p class="text-xs mt-1 text-gray-500">Interactive diagram creation</p>
</div>
</div>
<div class="mt-4">
<h4 class="font-medium mb-2">Collaboration Features:</h4>
<pre class="bg-gray-100 p-3 rounded-lg text-xs">{
"annotation": true,
"versionControl": true,
"realtimeCollab": true,
"commentThreads": true
}</pre>
</div>
<div class="mt-4 flex space-x-2">
<button class="px-3 py-1.5 rounded bg-claude-primary text-white text-sm">Add to PRD</button>
<button class="px-3 py-1.5 rounded border border-gray-300 text-sm">Refine requirements</button>
</div>
</div>
</div>
</div>
</div>
<div class="p-4 border-t border-[#E5E7EB] bg-white">
<div class="flex space-x-3">
<button class="p-2 rounded-lg border border-gray-300">
<i class="fas fa-plus"></i>
</button>
<div class="flex-1 relative">
<textarea
class="w-full p-3 border border-gray-300 rounded-lg resize-none focus:outline-none focus:ring-1 focus:ring-claude-primary"
placeholder="Send a message to Vibe Coding AI..."
rows="1"
></textarea>
<div class="absolute right-2 bottom-2 flex space-x-1">
<button class="p-1.5 rounded text-gray-500 hover:bg-gray-100">
<i class="fas fa-paperclip"></i>
</button>
<button class="p-1.5 rounded text-gray-500 hover:bg-gray-100">
<i class="fas fa-arrow-up"></i>
</button>
</div>
</div>
</div>
<p class="text-xs text-center text-gray-500 mt-2">Vibe Coding AI can make mistakes. Verify important information.</p>
</div>
</div>
<!-- Artifacts Area -->
<div class="w-1/4 bg-[#F5F3F0] p-4 overflow-y-auto border-l border-[#E5E7EB]">
<div class="flex items-center justify-between">
<h2 class="font-semibold text-lg">Artifacts & Resources</h2>
<div class="flex space-x-2">
<button class="p-1.5 rounded-lg hover:bg-gray-100">
<i class="fas fa-expand"></i>
</button>
<button class="p-1.5 rounded-lg hover:bg-gray-100">
<i class="fas fa-sliders"></i>
</button>
</div>
</div>
<div class="mt-4 bg-gray-50 p-4 rounded-xl">
<div class="flex items-center space-x-3">
<i class="fas fa-lightbulb text-yellow-500 text-xl"></i>
<div>
<h3 class="font-medium">Tip from AI</h3>
<p class="text-sm text-gray-600">Add visual artifacts to clarify complex ideas during the review stages</p>
</div>
</div>
</div>
<div class="mt-4">
<div class="flex space-x-2 overflow-x-auto pb-2">
<button class="px-3 py-1 bg-claude-primary text-white rounded-full text-sm whitespace-nowrap">All</button>
<button class="px-3 py-1 bg-white border rounded-full text-sm whitespace-nowrap">Wireframes</button>
<button class="px-3 py-1 bg-white border rounded-full text-sm whitespace-nowrap">Diagrams</button>
<button class="px-3 py-1 bg-white border rounded-full text-sm whitespace-nowrap">Code Samples</button>
<button class="px-3 py-1 bg-white border rounded-full text-sm whitespace-nowrap">References</button>
<button class="px-3 py-1 bg-white border rounded-full text-sm whitespace-nowrap">MCP Assets</button>
</div>
</div>
<div class="mt-4 space-y-3">
<div class="bg-white border border-gray-200 rounded-xl overflow-hidden">
<div class="bg-blue-50 p-3 font-medium text-sm flex items-center space-x-2">
<i class="fas fa-window-maximize text-blue-500"></i>
<span>PRD Conceptual Model</span>
</div>
<div class="p-3">
<img src="https://via.placeholder.com/300x160.png?text=Conceptual+Diagram" alt="Conceptual Diagram" class="w-full rounded-lg border">
<p class="text-sm mt-2 text-gray-600">High-level overview of the artifact management system</p>
<div class="flex space-x-2 mt-2">
<button class="text-xs text-gray-500 hover:text-claude-primary">
<i class="fas fa-comment"></i> 3 comments
</button>
<button class="text-xs text-gray-500 hover:text-claude-primary">
<i class="fas fa-pencil-alt"></i> Edit
</button>
</div>
</div>
</div>
<div class="bg-white border border-gray-200 rounded-xl overflow-hidden">
<div class="bg-purple-50 p-3 font-medium text-sm flex items-center space-x-2">
<i class="fas fa-code text-purple-500"></i>
<span>API Design Pattern</span>
</div>
<pre class="text-xs p-3 overflow-x-auto">interface ArtifactManager {
uploadFile(file: File): Promise<Artifact>;
createDiagram(options: DiagramOptions): Diagram;
commentOnArtifact(artifactId: string, content: string): Comment;
getArtifactHistory(artifactId: string): ArtifactVersion[];
}</pre>
<div class="px-3 pb-3 flex space-x-2">
<button class="text-xs bg-gray-100 rounded px-2 py-1">
Copy code
</button>
<button class="text-xs text-gray-500 hover:text-claude-primary">
<i class="fas fa-thumbs-up"></i>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- Bottom Panel: Tabs for Web Browser and VSCode -->
<div class="draggable-panel border-t border-[#E5E7EB] bg-white" style="height: 40px">
<div class="flex h-full">
<div class="flex h-full border-r border-claude-border">
<button id="browser-tab" class="h-full px-4 text-sm font-medium bg-white border-t-2 border-t-claude-primary">Browser</button>
<button id="vscode-tab" class="h-full px-4 text-sm font-medium text-gray-600 hover:bg-gray-100">VSCode</button>
</div>
<div class="flex-1 flex items-center justify-between px-4">
<div class="flex space-x-3">
<button class="text-gray-500 hover:text-gray-700">
<i class="fas fa-expand"></i>
</button>
<div class="flex space-x-1 text-sm">
<input type="text" class="text-xs px-2 py-1 border rounded w-64" placeholder="https://www.example-reference.com" value="https://docs.vibe-coding.ai/">
<button class="bg-claude-primary text-white px-2 rounded text-sm">
Go
</button>
</div>
</div>
<div class="flex space-x-2">
<button class="text-gray-500 hover:text-gray-700">
<i class="fas fa-window-restore"></i>
</button>
<button class="text-gray-500 hover:text-gray-700">
<i class="fas fa-times"></i>
</button>
</div>
</div>
</div>
<div id="panel-content" class="overflow-auto bg-white" style="height: 260px">
<!-- Browser Preview Content -->
<div class="h-full p-4">
<div class="border rounded-lg overflow-hidden claude-shadow">
<div class="h-7 bg-gray-200 flex items-center px-3 space-x-1.5">
<div class="w-2.5 h-2.5 rounded-full bg-gray-400"></div>
<div class="w-2.5 h-2.5 rounded-full bg-gray-400"></div>
<div class="w-2.5 h-2.5 rounded-full bg-gray-400"></div>
</div>
<div class="px-4 py-6">
<div class="flex justify-center mb-4">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16" />
</div>
<h2 class="text-center text-lg font-semibold">Vibe Coding Documentation</h2>
<p class="text-center mt-2 text-gray-600">PRD and Blueprint Development Guide</p>
<div class="mt-6 grid grid-cols-3 gap-3 max-w-lg mx-auto">
<div class="bg-gray-100 hover:bg-gray-200 py-2 px-3 rounded cursor-pointer text-center text-sm">
Getting Started
</div>
<div class="bg-gray-100 hover:bg-gray-200 py-2 px-3 rounded cursor-pointer text-center text-sm">
Workflow Guide
</div>
<div class="bg-gray-100 hover:bg-gray-200 py-2 px-3 rounded cursor-pointer text-center text-sm">
API Reference
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=xSerpicoxx/prdator" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |