> ## Documentation Index
> Fetch the complete documentation index at: https://docs.revolte.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Revolte Starter Tasks

> Choose a concrete first task and adapt a proven prompt to your repository.

<div className="prompt-library-page task-gallery-page">
  <p className="prompt-eyebrow">Get started · 3 min read</p>
  <h1 className="prompt-title">Revolte Starter Tasks</h1>
  <p className="prompt-subtitle">Not sure what to try first? Pick a concrete outcome and adapt the wording to your repository. Every example is intentionally small enough to produce a result you can inspect and learn from.</p>
  <div className="prompt-context-links"><span className="prompt-mode-pill">Interactive</span><span>Pairs with <a href="/get-started/prompt-library">Getting Better Results with Revolte</a></span><span>Precedes <a href="/get-started/quickstart">Quickstart</a></span></div>
  <p className="task-gallery-key">★ Marked tasks are the safest first run—small, visual, and easy to verify.</p>

  <div className="prompt-section-label prompt-start-here-label">Feature development · greenfield <span>Build a contained user-facing capability.</span></div>

  <div className="prompt-starter-list">
    <div className="prompt-starter-row is-recommended"><div className="prompt-starter-meta"><span>Feature development</span><b>★ First run</b></div><div className="prompt-starter-title">Add a contact form to a website</div><div className="prompt-starter-prompt">“Add a contact form to this application. Users should be able to enter name, email, and message. Create the UI, add validation, handle form submission, and show success and error messages.”</div><div className="prompt-starter-note">Small UI + simple logic</div></div>
    <div className="prompt-starter-row is-recommended"><div className="prompt-starter-meta"><span>Feature development</span><b>★ First run</b></div><div className="prompt-starter-title">Add dark mode support</div><div className="prompt-starter-prompt">“Add dark mode support to this application. Users should be able to switch between light and dark themes. Follow the existing styling approach and ensure all pages work correctly.”</div><div className="prompt-starter-note">Limited files + visual result</div></div>
    <div className="prompt-starter-row is-recommended"><div className="prompt-starter-meta"><span>Feature development</span><b>★ First run</b></div><div className="prompt-starter-title">Create a simple task tracker</div><div className="prompt-starter-prompt">“Build a simple task management feature. Users should be able to create, view, complete, and delete tasks. Add the required UI and data handling following existing application patterns.”</div><div className="prompt-starter-note">Classic CRUD flow</div></div>
    <div className="prompt-starter-row"><div className="prompt-starter-meta"><span>Feature development</span></div><div className="prompt-starter-title">Add search functionality</div><div className="prompt-starter-prompt">“Add search functionality to the product list page. Users should be able to search products by name and see filtered results instantly.”</div><div className="prompt-starter-note">Simple frontend interaction</div></div>
  </div>

  <div className="prompt-section-label">Debugging <span>Investigate a reproducible symptom and verify the fix.</span></div>

  <div className="prompt-starter-list">
    <div className="prompt-starter-row"><div className="prompt-starter-meta"><span>Debugging</span></div><div className="prompt-starter-title">Fix incorrect form validation</div><div className="prompt-starter-prompt">“Review the signup form and fix the issue where invalid email addresses are accepted. Identify the cause, implement the fix, and add a test case.”</div><div className="prompt-starter-note">Small bug + regression test</div></div>
    <div className="prompt-starter-row"><div className="prompt-starter-meta"><span>Debugging</span></div><div className="prompt-starter-title">Fix broken button behavior</div><div className="prompt-starter-prompt">“Investigate why the submit button on the checkout page is not working. Find the root cause, fix it, and verify the user flow works correctly.”</div><div className="prompt-starter-note">Focused investigation</div></div>
  </div>

  <div className="prompt-section-label">Testing <span>Add useful coverage around an existing behavior.</span></div>

  <div className="prompt-starter-list">
    <div className="prompt-starter-row"><div className="prompt-starter-meta"><span>Testing</span></div><div className="prompt-starter-title">Add tests for the login flow</div><div className="prompt-starter-prompt">“Add test coverage for the login functionality. Cover successful login, invalid credentials, and validation errors. Follow the existing test conventions.”</div><div className="prompt-starter-note">Small end-to-end behavior set</div></div>
    <div className="prompt-starter-row"><div className="prompt-starter-meta"><span>Testing</span></div><div className="prompt-starter-title">Generate tests for a component</div><div className="prompt-starter-prompt">“Review the user profile component and create tests covering rendering, user interaction, and error scenarios. Follow the patterns used by nearby component tests.”</div><div className="prompt-starter-note">Contained component coverage</div></div>
  </div>

  <div className="prompt-section-label">Documentation <span>Turn code and behavior into something teammates can use.</span></div>

  <div className="prompt-starter-list">
    <div className="prompt-starter-row"><div className="prompt-starter-meta"><span>Documentation</span></div><div className="prompt-starter-title">Explain application structure</div><div className="prompt-starter-prompt">“Analyze this repository and create a concise overview of the main folders, important components, and how the application works. Link each explanation to the relevant path.”</div><div className="prompt-starter-note">Analysis-first + low-risk</div></div>
    <div className="prompt-starter-row"><div className="prompt-starter-meta"><span>Documentation</span></div><div className="prompt-starter-title">Document an API endpoint</div><div className="prompt-starter-prompt">“Document this user API endpoint, including its request and response formats, authentication requirements, error behavior, and one realistic example.”</div><div className="prompt-starter-note">Small documentation task</div></div>
  </div>

  <div className="prompt-section-label">Refactoring, API, and DevOps <span>Choose a bounded improvement with a clear verification path.</span></div>

  <div className="prompt-starter-list">
    <div className="prompt-starter-row"><div className="prompt-starter-meta"><span>Refactoring</span></div><div className="prompt-starter-title">Simplify a complex component</div><div className="prompt-starter-prompt">“Review this component and improve readability by simplifying its logic and removing duplication. Preserve current behavior, follow existing coding patterns, and keep all tests passing.”</div><div className="prompt-starter-note">Limited code change</div></div>
    <div className="prompt-starter-row"><div className="prompt-starter-meta"><span>API design</span></div><div className="prompt-starter-title">Create a simple user API</div><div className="prompt-starter-prompt">“Create API endpoints to create and retrieve users. Follow the repository’s existing routing and response conventions, add input validation and error handling, and include tests.”</div><div className="prompt-starter-note">Small backend workflow</div></div>
    <div className="prompt-starter-row"><div className="prompt-starter-meta"><span>DevOps</span></div><div className="prompt-starter-title">Improve environment configuration</div><div className="prompt-starter-prompt">“Review this application’s environment variable handling. Clearly define required settings, validate them at startup, preserve existing deployment behavior, and update the setup documentation.”</div><div className="prompt-starter-note">Contained operational improvement</div></div>
  </div>

  <div className="prompt-callout task-gallery-finish"><p><strong>Ready?</strong> Pick one task, replace its generic names with your repository’s real pages, components, or endpoints, and run it once. Review the proposed plan before execution.</p></div>
  <div className="prompt-footer"><div className="prompt-footer-actions"><a href="/get-started/prompt-library">Back to Getting Better Results with Revolte</a><a href="/get-started/quickstart"><i className="ti ti-arrow-right" aria-hidden="true" /> Continue to Quickstart</a></div><span className="prompt-footer-label">Choose · adapt · run · review</span></div>
</div>
