> ## Documentation Index
> Fetch the complete documentation index at: https://activepieces-fix-troubleshoort.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Private

> Learn how to share your pieces privately.

<Tip>
  This feature is only available for the Paid edition. If you want to use it, please contact us at `sales@activepieces.com`.
</Tip>

This guide assumes you have already created a piece and created a private fork of our repository.

<Steps>
  <Step title="Build Piece">
    Build the piece using the following command. Make sure to replace `${name}` with your piece name.

    ```bash
    npx nx build pieces-${name}.
    ```
  </Step>

  <Step title="Pack the Piece">
    Then pack your pieces as an npm package. Make sure to replace `${name}` with your piece name.

    ```bash
    cd dist/packages/pieces/${name} && npm pack.
    ```
  </Step>

  <Step title="Upload Tarball">
    Upload the generated tarball inside `dist/packages/pieces/${name}` to activepieces using the interface.
  </Step>
</Steps>
