Skip to main content

Documentation Index

Fetch the complete documentation index at: https://www.sunny-dev.info/llms.txt

Use this file to discover all available pages before exploring further.

The Revolte CLI enables you to move from intent to code in seconds. Follow this guide to set up and trigger your first autonomous workflow.
Prerequisite: Ensure your current repository is associated with a Revolte application. You can manage your project associations in the Revolte Console.
1

Install CLI

Install the Revolte CLI globally using npm.
Terminal
npm install -g @revolte.ai/cli
2

Authenticate

Log in to connect your local environment with the Revolte AI. Running this command will open a browser window for you to complete the authentication securely.
Terminal
revolte --login
Once you log in through the browser, your terminal session will be automatically updated with the necessary credentials.
3

Initialize your Prompt

Open the Revolte CLI in your project directory. You can enter any natural language prompt to describe the task you want to execute.
Terminal
revolte --start

Enter a task for Revolte AI to execute.

Describe a bug or technical issue for Revolte AI to fix.

Once you hit Enter, Revolte AI begins analyzing your project context.
4

Autonomous Execution

Revolte AI starts working directly in your local directory. It automatically identifies the necessary files, applies the changes, and ensures everything aligns with your existing architecture.
If the tool requests permission to modify specific files, simply review the plan and approve it to proceed.
5

Review and Push

Once the task is complete, review the generated code locally. If you’re satisfied with the results, commit and push the changes to your repository.
Terminal
git add .
git commit -m "feat: added contact form via Revolte AI"
git push origin main

Next Steps