Creating plugins with the plugins SDK#

You can create your own plugins and install them in HCL™ Accelerate. After installing custom plugins, you can integrate them in your releases, reports, and value streams.

HCL Accelerate provides a SDK that contains the tools, including local dependencies and wrappers, that you need to create your own plugins. The plugin SDK provides a sample plugin that you can use to get started, and JavaScript templates that you can customize for your own plugins.

To create a plugin, your development environment must include the following items:

To get started with the plugin SDK, complete the following steps:

  1. Download the plugin SDK. On the HCL Accelerate Plugins tab, click Download plugin sample. After the download is finished, extract the compressed file.
  2. Build the sample plugin. In the ucv-ext-sdk-template folder, run the following commands. Additional instructions are provided in the SDK Readme.md file.

    ```

      npm install
     npm run dist-runnable
     docker build . -t name:tag
    

    ```

    The name value can be any value that you want. The tag value must represent the latest image version, or some other valid semantic version. For example, docker build . -t testplugin:0.1.

  3. Upload the sample plugin. On the HCL Accelerate Plugins tab, click Load plugin, and then select the Docker image that contains your plugin. To upload the image from the previous step, you specify testplugin:0.1.

  4. Create an integration by using the sample plugin. On the Plugins tab, click Add integration.

Plugins are categorized by data collection and communication methods. Generally, plugins are designed to use one of the following communication methods.

The plugin SDK provides JavaScript templates for each type. For example, the template ucv-ext-sdk-templates/src/endpoints/SampleEdnpoint.js defines the properties that you need to create an endpoint-type plugin.

Parent topic: Extending product functions