> For the complete documentation index, see [llms.txt](https://plugindocs.nexpid.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://plugindocs.nexpid.xyz/guides/manifest.md).

# Manifest

The `manifest.json` file in your plugin contains information about how your plugin will appear in the Plugins tab, and where the entrypoint for the plugin is. Here's a basic example:

{% code title="manifest.json" overflow="wrap" lineNumbers="true" %}

```json
{
  "name": "Example Plugin"
  "description": "An example plugin for the plugin docs GitBook",
  "authors": [
    {
      "name": "You!",
      "id": "123456789123456789"
    }
  ],
  "main": "src/index.ts",
  "vendetta": {
    "icon": "ic_badge_staff"
  }
}
```

{% endcode %}

* **Name** and **description** are the name and description for the plugin, respectively
* The **authors** field is an array of objects. At least one author is required. The **id** field is a [discord user ID snowflake](https://discord.com/developers/docs/reference#snowflakes) and is currently unused (only used in Plugin Browser)
* The **main** field tells the plugin bundler where the entrypoint for your plugin is.
* The **icon** property in the **vendetta** field refers to an asset in Discord's asset library. Asset strings can be found in the Asset Browser, under Vendetta's developer settings. *(optional)*


---

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

```
GET https://plugindocs.nexpid.xyz/guides/manifest.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
