> For the complete documentation index, see [llms.txt](https://docs.rakelaunch.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rakelaunch.xyz/rake/rake-ecosystem/x-bot.md).

# X Bot

RAKE's X-based interface for supported protocol actions and controlled execution.

## Command interface

The RAKE X bot is [@rake\_agent](https://x.com/rake_agent). It is RAKE's conversational, mobile-first interface for supported actions.

One bot exposes multiple RAKE verbs. Users do not need a separate bot for each action.

| Command   | Function                              | Echo |
| --------- | ------------------------------------- | ---- |
| `launch`  | Deploy a new token on Pons V2         | No   |
| `harvest` | Pull accumulated fees into RakeVault  | No   |
| `swap`    | Trade assets via RAKE router          | Yes  |
| `tip`     | Send an asset to another user         | Yes  |
| `buy`     | Buy a token with ETH                  | Yes  |
| `burn`    | Burn your own tokens                  | Yes  |
| `buyback` | Buy then burn                         | Yes  |
| `bridge`  | Bring ETH from outside into Robinhood | Yes  |
| `predict` | Create a YES/NO prediction market     | No   |

### Representative commands

```
@rake_agent launch $MOON "MoonShot" pair ETH
```

```
@rake_agent harvest $MOON
```

```
@rake_agent tip @user 2 NVDA
```

```
@rake_agent swap 0.05 ETH to $PONS
```

```
@rake_agent predict NVDA >150 Friday
```

### Conversation is not execution

The bot supports conversational interaction. That interaction does not itself execute a transaction.

The LLM provides conversation spice. The parser and schema control execution. Money verbs cannot bypass those controls, and amounts cannot be inferred. The LLM cannot generate executable calldata.

Actions marked **Echo** require the documented confirmation flow before execution. See [Echo Confirmation](/rake/how-rake-works/echo-confirmation.md) for the exact confirmation rules.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.rakelaunch.xyz/rake/rake-ecosystem/x-bot.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
