# pluginInfo Parameter

The pluginInfo parameter is a JSON formatted parameter to modify the name of the plugin, define the category, adding search keywords and more.

### pluginInfo Parameter <a href="#plugininfo-parameter" id="plugininfo-parameter"></a>

```python
pluginInfo = {
        "name" : "FirstPlugin",
        "category" : "Plugins",
        "description" : "This is a description field.\rNext line",
        "keywords" : "Phidget,Digital,Outputs,1017",
        "author" : "Your Name",
        "version" : (1, 0),
        "spVersion" : (1, 9, 0),
    }
```

<figure><img src="/files/3t8FMOVSKDtNSOVQ9gXv" alt=""><figcaption></figcaption></figure>

***

## Custom Extension Icon

```python
import os
```

```python
"iconPath" : os.path.join(os.path.dirname(os.path.abspath(__file__)),"icon.svg")
```

{% hint style="info" %}
`os.path.join(os.path.dirname(os.path.abspath(__file__))` is the root of the plugin folder
{% endhint %}

***

### Custom Help file <a href="#custom-help-file" id="custom-help-file"></a>

```python
import os
```

```python
"helpPath" : os.path.join(os.path.dirname(os.path.abspath(__file__)),"help.md")

```


---

# Agent Instructions: 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://stage-precision.gitbook.io/grid/extensions/plugininfo-parameter.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.
