OpenPanel product analytics plugin fully reviewed, tested, and published. Works with both self-hosted and cloud (openpanel.dev) instances. - 42 tools: event tracking, data export, analytics, project/client management - All tools use public REST APIs (Track, Export, Insights, Manage) - Client modes: write (tracking), read (analytics), root (full access) - Service page with description, setup notes, WordPress plugin download - Dynamic URL hints in Add Site form - 62 unit tests - ENABLED_PLUGINS default now includes openpanel Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
354 B
Python
12 lines
354 B
Python
"""
|
|
OpenPanel Plugin - Product Analytics Management.
|
|
|
|
Self-hosted OpenPanel management through public REST APIs (42 tools).
|
|
Event tracking, data export, analytics, project & client management.
|
|
"""
|
|
|
|
from plugins.openpanel.client import OpenPanelClient
|
|
from plugins.openpanel.plugin import OpenPanelPlugin
|
|
|
|
__all__ = ["OpenPanelPlugin", "OpenPanelClient"]
|