File size: 34,305 Bytes
aea93f5 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Taskmaster AI - Complete Vibe Coding Guide</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">
<style>
.progress-step {
position: relative;
padding-left: 2.5rem;
}
.progress-step:before {
content: "";
position: absolute;
left: 0.75rem;
top: 0;
height: 100%;
width: 2px;
background-color: #e5e7eb;
}
.progress-step:first-child:before {
top: 1.5rem;
height: calc(100% - 1.5rem);
}
.progress-step:last-child:before {
height: 1.5rem;
}
.step-number {
position: absolute;
left: 0;
top: 0;
width: 1.5rem;
height: 1.5rem;
border-radius: 50%;
background-color: #3b82f6;
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
.code-block {
background-color: #1e293b;
color: #f8fafc;
border-radius: 0.5rem;
padding: 1rem;
font-family: monospace;
position: relative;
}
.copy-btn {
position: absolute;
right: 0.5rem;
top: 0.5rem;
background-color: #334155;
border: none;
color: #94a3b8;
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
cursor: pointer;
}
.copy-btn:hover {
background-color: #475569;
color: #e2e8f0;
}
.feature-card {
transition: all 0.3s ease;
}
.feature-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.tooltip {
position: relative;
}
.tooltip:hover .tooltip-text {
visibility: visible;
opacity: 1;
}
.tooltip-text {
visibility: hidden;
opacity: 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
transform: translateX(-50%);
background-color: #333;
color: white;
padding: 0.5rem;
border-radius: 0.25rem;
font-size: 0.875rem;
white-space: nowrap;
transition: opacity 0.3s;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<header class="bg-indigo-600 text-white py-8">
<div class="container mx-auto px-4">
<div class="flex items-center justify-between">
<div>
<h1 class="text-4xl font-bold mb-2">Taskmaster AI</h1>
<p class="text-xl text-indigo-100">The Complete Vibe Coding Guide with Cursor</p>
</div>
<div class="bg-white p-3 rounded-full shadow-lg">
<i class="fas fa-robot text-4xl text-indigo-600"></i>
</div>
</div>
</div>
</header>
<div class="container mx-auto px-4 py-8">
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-8">
<div class="p-6">
<h2 class="text-2xl font-bold text-gray-800 mb-4">What is Vibe Coding?</h2>
<div class="flex flex-col md:flex-row gap-6">
<div class="flex-1">
<p class="text-gray-600 mb-4">
Vibe coding is an intuitive approach to programming where you focus on the creative flow and let AI tools like Taskmaster handle the boilerplate and repetitive tasks. It's about maintaining your creative momentum while building amazing things.
</p>
<div class="bg-indigo-50 p-4 rounded-lg border border-indigo-100">
<h3 class="font-semibold text-indigo-800 mb-2">Key Benefits:</h3>
<ul class="list-disc pl-5 text-gray-700 space-y-1">
<li>Stay in the creative flow state</li>
<li>Reduce context switching</li>
<li>Automate repetitive tasks</li>
<li>Focus on architecture and logic</li>
<li>Collaborate with AI as your pair programmer</li>
</ul>
</div>
</div>
<div class="flex-1">
<div class="bg-gradient-to-br from-indigo-100 to-purple-100 p-6 rounded-lg h-full flex items-center justify-center">
<div class="text-center">
<i class="fas fa-magic text-5xl text-indigo-600 mb-4"></i>
<p class="font-semibold text-indigo-800">"Vibe coding transforms programming from a mechanical task to a creative journey"</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-8">
<div class="p-6">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Getting Started with Taskmaster AI</h2>
<div class="space-y-8">
<!-- Step 1 -->
<div class="progress-step">
<div class="step-number">1</div>
<div class="pl-8">
<h3 class="text-xl font-semibold mb-3">Installation & Setup</h3>
<div class="mb-4">
<p class="text-gray-600 mb-2">First, install Taskmaster AI in your preferred environment:</p>
<div class="code-block mb-4">
<button class="copy-btn" onclick="copyCode(this)"><i class="fas fa-copy"></i></button>
<code>npm install -g taskmaster-ai</code>
</div>
<p class="text-gray-600 mb-2">Or if you're using Cursor as your editor:</p>
<div class="code-block">
<button class="copy-btn" onclick="copyCode(this)"><i class="fas fa-copy"></i></button>
<code>cursor extensions install taskmaster-ai</code>
</div>
</div>
<div class="bg-yellow-50 border-l-4 border-yellow-400 p-4 mb-4">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-exclamation-circle text-yellow-500"></i>
</div>
<div class="ml-3">
<p class="text-sm text-yellow-700">
Make sure you have Node.js v16+ installed before proceeding. Check with <code class="bg-yellow-100 px-1 rounded">node -v</code>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Step 2 -->
<div class="progress-step">
<div class="step-number">2</div>
<div class="pl-8">
<h3 class="text-xl font-semibold mb-3">Initial Configuration</h3>
<p class="text-gray-600 mb-4">After installation, run the setup wizard to configure Taskmaster to your preferences:</p>
<div class="code-block mb-4">
<button class="copy-btn" onclick="copyCode(this)"><i class="fas fa-copy"></i></button>
<code>taskmaster --init</code>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
<h4 class="font-medium text-gray-800 mb-2">Key Configuration Options:</h4>
<ul class="list-disc pl-5 text-gray-700 space-y-1">
<li>Preferred programming language</li>
<li>Code style preferences</li>
<li>Auto-complete aggressiveness</li>
<li>Testing framework integration</li>
<li>Git integration settings</li>
</ul>
</div>
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
<h4 class="font-medium text-gray-800 mb-2">Vibe Settings:</h4>
<ul class="list-disc pl-5 text-gray-700 space-y-1">
<li>Focus mode preferences</li>
<li>Background music integration</li>
<li>Pomodoro timer settings</li>
<li>Distraction-free mode</li>
<li>Theme customization</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Step 3 -->
<div class="progress-step">
<div class="step-number">3</div>
<div class="pl-8">
<h3 class="text-xl font-semibold mb-3">Basic Commands</h3>
<p class="text-gray-600 mb-4">Learn these essential commands to start vibe coding:</p>
<div class="overflow-x-auto mb-6">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Command</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Description</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Vibe Level</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-mono text-indigo-600">taskmaster --start</td>
<td class="px-6 py-4 text-sm text-gray-700">Start a new coding session</td>
<td class="px-6 py-4 whitespace-nowrap"><span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800">Beginner</span></td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-mono text-indigo-600">taskmaster --suggest</td>
<td class="px-6 py-4 text-sm text-gray-700">Get AI suggestions for current file</td>
<td class="px-6 py-4 whitespace-nowrap"><span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-blue-100 text-blue-800">Intermediate</span></td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-mono text-indigo-600">taskmaster --refactor</td>
<td class="px-6 py-4 text-sm text-gray-700">Refactor current code block</td>
<td class="px-6 py-4 whitespace-nowrap"><span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-purple-100 text-purple-800">Advanced</span></td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-mono text-indigo-600">taskmaster --vibe</td>
<td class="px-6 py-4 text-sm text-gray-700">Enter deep focus mode</td>
<td class="px-6 py-4 whitespace-nowrap"><span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-yellow-100 text-yellow-800">All Levels</span></td>
</tr>
</tbody>
</table>
</div>
<div class="bg-blue-50 border-l-4 border-blue-400 p-4">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-lightbulb text-blue-500"></i>
</div>
<div class="ml-3">
<p class="text-sm text-blue-700">
<span class="font-semibold">Pro Tip:</span> Use <code class="bg-blue-100 px-1 rounded">taskmaster --help</code> anytime to see all available commands.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-8">
<div class="p-6">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Vibe Coding Workflow</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
<div class="feature-card bg-gradient-to-br from-green-50 to-blue-50 p-6 rounded-lg border border-green-100">
<div class="text-green-600 mb-4">
<i class="fas fa-brain text-3xl"></i>
</div>
<h3 class="font-bold text-lg text-gray-800 mb-2">1. Planning Phase</h3>
<p class="text-gray-600 text-sm">
Use <code class="bg-green-100 px-1 rounded">taskmaster --plan</code> to outline your project structure and components before coding.
</p>
</div>
<div class="feature-card bg-gradient-to-br from-blue-50 to-purple-50 p-6 rounded-lg border border-blue-100">
<div class="text-blue-600 mb-4">
<i class="fas fa-code text-3xl"></i>
</div>
<h3 class="font-bold text-lg text-gray-800 mb-2">2. Implementation</h3>
<p class="text-gray-600 text-sm">
Let Taskmaster generate boilerplate code while you focus on the core logic and architecture.
</p>
</div>
<div class="feature-card bg-gradient-to-br from-purple-50 to-pink-50 p-6 rounded-lg border border-purple-100">
<div class="text-purple-600 mb-4">
<i class="fas fa-vial text-3xl"></i>
</div>
<h3 class="font-bold text-lg text-gray-800 mb-2">3. Testing & Refinement</h3>
<p class="text-gray-600 text-sm">
Use <code class="bg-purple-100 px-1 rounded">taskmaster --test</code> to generate tests and refine your code.
</p>
</div>
</div>
<h3 class="text-xl font-semibold mb-4">Sample Workflow in Action</h3>
<div class="mb-6">
<div class="code-block mb-2">
<button class="copy-btn" onclick="copyCode(this)"><i class="fas fa-copy"></i></button>
<code># Start a new React component with Taskmaster
taskmaster --create component --name UserProfile --framework react --props name,age,avatar</code>
</div>
<div class="code-block">
<button class="copy-btn" onclick="copyCode(this)"><i class="fas fa-copy"></i></button>
<code># Generate tests for the component
taskmaster --test component --name UserProfile --library jest</code>
</div>
</div>
<div class="bg-indigo-50 p-4 rounded-lg mb-6">
<h3 class="font-semibold text-indigo-800 mb-2">Vibe Coding Checklist</h3>
<div class="space-y-2">
<div class="flex items-start">
<div class="flex items-center h-5">
<input id="vibe1" type="checkbox" class="focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded">
</div>
<div class="ml-3 text-sm">
<label for="vibe1" class="font-medium text-gray-700">Set up your coding environment (lighting, music, etc.)</label>
</div>
</div>
<div class="flex items-start">
<div class="flex items-center h-5">
<input id="vibe2" type="checkbox" class="focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded">
</div>
<div class="ml-3 text-sm">
<label for="vibe2" class="font-medium text-gray-700">Define your goals for the session</label>
</div>
</div>
<div class="flex items-start">
<div class="flex items-center h-5">
<input id="vibe3" type="checkbox" class="focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded">
</div>
<div class="ml-3 text-sm">
<label for="vibe3" class="font-medium text-gray-700">Use Taskmaster to generate initial structure</label>
</div>
</div>
<div class="flex items-start">
<div class="flex items-center h-5">
<input id="vibe4" type="checkbox" class="focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded">
</div>
<div class="ml-3 text-sm">
<label for="vibe4" class="font-medium text-gray-700">Focus on implementing core logic</label>
</div>
</div>
<div class="flex items-start">
<div class="flex items-center h-5">
<input id="vibe5" type="checkbox" class="focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded">
</div>
<div class="ml-3 text-sm">
<label for="vibe5" class="font-medium text-gray-700">Review and refine with Taskmaster's suggestions</label>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-8">
<div class="p-6">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Advanced Techniques</h2>
<div class="space-y-6">
<div class="border-l-4 border-indigo-400 pl-4 py-1">
<h3 class="text-lg font-semibold text-gray-800">Custom Taskmaster Templates</h3>
<p class="text-gray-600 mt-1">Create your own code templates for frequently used patterns:</p>
<div class="code-block mt-2">
<button class="copy-btn" onclick="copyCode(this)"><i class="fas fa-copy"></i></button>
<code># Create a custom template
taskmaster --template create --name auth-service --lang typescript --desc "Authentication service with JWT"
# Use your custom template
taskmaster --create service --template auth-service --name UserAuth</code>
</div>
</div>
<div class="border-l-4 border-purple-400 pl-4 py-1">
<h3 class="text-lg font-semibold text-gray-800">Context-Aware Coding</h3>
<p class="text-gray-600 mt-1">Taskmaster can analyze your entire project for better suggestions:</p>
<div class="code-block mt-2">
<button class="copy-btn" onclick="copyCode(this)"><i class="fas fa-copy"></i></button>
<code># Analyze project context
taskmaster --analyze --scope project
# Get suggestions based on project patterns
taskmaster --suggest --contextual</code>
</div>
</div>
<div class="border-l-4 border-green-400 pl-4 py-1">
<h3 class="text-lg font-semibold text-gray-800">Pair Programming Mode</h3>
<p class="text-gray-600 mt-1">Work interactively with Taskmaster in real-time:</p>
<div class="code-block mt-2">
<button class="copy-btn" onclick="copyCode(this)"><i class="fas fa-copy"></i></button>
<code># Start interactive session
taskmaster --pair
# Example conversation:
You: How can I optimize this database query?
Taskmaster: I notice you're using MongoDB. Would you like me to:
1. Add proper indexing
2. Rewrite the aggregation pipeline
3. Suggest schema changes</code>
</div>
</div>
<div class="border-l-4 border-yellow-400 pl-4 py-1">
<h3 class="text-lg font-semibold text-gray-800">Vibe Customization</h3>
<p class="text-gray-600 mt-1">Tailor Taskmaster to your personal workflow:</p>
<div class="code-block mt-2">
<button class="copy-btn" onclick="copyCode(this)"><i class="fas fa-copy"></i></button>
<code># Set your coding hours for optimal suggestions
taskmaster --config set coding.hours "9am-12pm, 2pm-6pm"
# Enable focus music integration
taskmaster --config set vibe.music true --source spotify --genre lofi
# Configure your knowledge level for better suggestions
taskmaster --config set user.level advanced --languages javascript,typescript</code>
</div>
</div>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="p-6">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Troubleshooting & Tips</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<h3 class="text-lg font-semibold text-gray-800 mb-3">Common Issues</h3>
<div class="space-y-4">
<div class="bg-red-50 p-4 rounded-lg">
<h4 class="font-medium text-red-800 mb-1">Taskmaster not responding</h4>
<p class="text-sm text-red-700">Try restarting the service: <code class="bg-red-100 px-1 rounded">taskmaster --restart</code></p>
</div>
<div class="bg-yellow-50 p-4 rounded-lg">
<h4 class="font-medium text-yellow-800 mb-1">Suggestions seem off</h4>
<p class="text-sm text-yellow-700">Update your context: <code class="bg-yellow-100 px-1 rounded">taskmaster --refresh</code></p>
</div>
<div class="bg-blue-50 p-4 rounded-lg">
<h4 class="font-medium text-blue-800 mb-1">Slow performance</h4>
<p class="text-sm text-blue-700">Clear cache: <code class="bg-blue-100 px-1 rounded">taskmaster --clear-cache</code></p>
</div>
</div>
</div>
<div>
<h3 class="text-lg font-semibold text-gray-800 mb-3">Pro Tips</h3>
<div class="space-y-3">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<i class="fas fa-star text-yellow-500"></i>
</div>
<div class="ml-3">
<p class="text-sm text-gray-700">Use <code class="bg-gray-100 px-1 rounded">taskmaster --learn</code> to have Taskmaster study your coding style</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<i class="fas fa-star text-yellow-500"></i>
</div>
<div class="ml-3">
<p class="text-sm text-gray-700">Combine with Cursor's AI features for maximum efficiency</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<i class="fas fa-star text-yellow-500"></i>
</div>
<div class="ml-3">
<p class="text-sm text-gray-700">Create keyboard shortcuts for frequent Taskmaster commands</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<i class="fas fa-star text-yellow-500"></i>
</div>
<div class="ml-3">
<p class="text-sm text-gray-700">Use <code class="bg-gray-100 px-1 rounded">taskmaster --stats</code> to track your productivity</p>
</div>
</div>
</div>
<h3 class="text-lg font-semibold text-gray-800 mt-6 mb-3">Keyboard Shortcuts</h3>
<div class="grid grid-cols-2 gap-2">
<div class="bg-gray-50 p-2 rounded text-sm">
<span class="font-mono bg-gray-200 px-1 rounded">Ctrl+Alt+T</span> Open Taskmaster
</div>
<div class="bg-gray-50 p-2 rounded text-sm">
<span class="font-mono bg-gray-200 px-1 rounded">Ctrl+Alt+S</span> Get suggestions
</div>
<div class="bg-gray-50 p-2 rounded text-sm">
<span class="font-mono bg-gray-200 px-1 rounded">Ctrl+Alt+R</span> Refactor code
</div>
<div class="bg-gray-50 p-2 rounded text-sm">
<span class="font-mono bg-gray-200 px-1 rounded">Ctrl+Alt+V</span> Toggle vibe mode
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mt-12 text-center">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Ready to Elevate Your Vibe Coding?</h2>
<p class="text-xl text-gray-600 mb-6">Start using Taskmaster AI today and transform your coding workflow</p>
<button class="bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-3 px-8 rounded-full text-lg transition duration-300 transform hover:scale-105">
Download Taskmaster AI
</button>
<div class="mt-6 text-gray-500 text-sm">
<i class="fas fa-terminal mr-1"></i> <code class="bg-gray-100 px-2 rounded">npm install -g taskmaster-ai</code>
</div>
</div>
</div>
<footer class="bg-gray-800 text-white py-8 mt-12">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<h3 class="text-xl font-bold mb-2">Taskmaster AI</h3>
<p class="text-gray-400">The ultimate vibe coding companion</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white tooltip">
<i class="fab fa-github text-xl"></i>
<span class="tooltip-text">GitHub</span>
</a>
<a href="#" class="text-gray-400 hover:text-white tooltip">
<i class="fab fa-discord text-xl"></i>
<span class="tooltip-text">Discord</span>
</a>
<a href="#" class="text-gray-400 hover:text-white tooltip">
<i class="fab fa-twitter text-xl"></i>
<span class="tooltip-text">Twitter</span>
</a>
<a href="#" class="text-gray-400 hover:text-white tooltip">
<i class="fas fa-book text-xl"></i>
<span class="tooltip-text">Documentation</span>
</a>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400 text-sm">
<p>© 2023 Taskmaster AI. All rights reserved. | <a href="#" class="hover:text-white">Privacy Policy</a> | <a href="#" class="hover:text-white">Terms of Service</a></p>
</div>
</div>
</footer>
<script>
function copyCode(button) {
const codeBlock = button.parentElement;
const code = codeBlock.querySelector('code').textContent;
navigator.clipboard.writeText(code).then(() => {
// Change button icon temporarily
const icon = button.querySelector('i');
const originalClass = icon.className;
icon.className = 'fas fa-check';
button.style.backgroundColor = '#10b981';
button.style.color = 'white';
setTimeout(() => {
icon.className = originalClass;
button.style.backgroundColor = '#334155';
button.style.color = '#94a3b8';
}, 2000);
});
}
// Add animation to checklist items when checked
document.querySelectorAll('input[type="checkbox"]').forEach(checkbox => {
checkbox.addEventListener('change', function() {
if(this.checked) {
this.parentElement.parentElement.style.textDecoration = 'line-through';
this.parentElement.parentElement.style.opacity = '0.7';
} else {
this.parentElement.parentElement.style.textDecoration = 'none';
this.parentElement.parentElement.style.opacity = '1';
}
});
});
</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=NewtonLaw/vibecoder" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |