> ## 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.

# Build from a Prompt

> How to drive software feature development directly from natural language prompts.

Prompt-driven development is the core workflow in Revolte. You describe desired functionality, architectural constraints, or bug fixes, and Revolte parses your repository to plan and execute the code changes.

## Effective Prompting Strategies

* **Be Specific About Behavior**: Describe inputs, outputs, and expected edge cases.
* **Reference Existing Patterns**: Mention existing utility functions or styling conventions.
* **Set Technology Constraints**: Specify versions, packages, or API standards.

```text theme={"dark"}
Create a new endpoint GET /api/v1/projects/:id/health that queries the database for service metrics, formats the response using the standard API Envelope schema, and logs errors using the app logger.
```
