Initial commit: AYON Matrix Publish addon

- package.py: addon manifest (v0.1.0)
- server/__init__.py: BaseServerAddon definition
- server/ayon_matrix_publish/plugins/publish/integrate_matrix.py:
  Pyblish plugin that uploads published representations to Matrix
  rooms during the Integration stage. Supports:
  - Upload to Matrix content repository (mxc:// URI)
  - Formatted messages with preview images
  - Auto room creation per asset
  - Configurable via Studio Settings or env vars
- create_package.py: builds distributable .zip package
This commit is contained in:
Hermes
2026-06-06 13:51:31 +00:00
parent d50d70c01f
commit 222ad10ded
10 changed files with 730 additions and 1 deletions
+2
View File
@@ -0,0 +1,2 @@
# -*- coding: utf-8 -*-
"""Matrix Publish addon — client-side (DCC host)."""
@@ -0,0 +1,15 @@
# -*- coding: utf-8 -*-
"""Client-side plugins for Matrix Publish.
These plugins run inside the DCC host (Maya, Houdini, Nuke, etc.)
and are discovered by AYON's Pyblish plugin loader.
The publish plugin lives in ayon_matrix_publish/plugins/publish/.
"""
from ayon_core.pipeline import publish
# Import the plugin so Pyblish discovers it
from .plugins.publish.integrate_matrix import IntegrateMatrix
__all__ = ["IntegrateMatrix"]