briefcase-python 2.4.1

Python bindings for Briefcase AI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
Cowork integration — receives and processes OpenTelemetry events
exported by the Cowork coding agent.
"""

from briefcase.cowork.receiver import CoworkEventReceiver
from briefcase.cowork.redaction import CoworkRedactionFilter
from briefcase.cowork.correlation import PromptCorrelationEngine
from briefcase.cowork.dashboards import CoworkDashboards
from briefcase.cowork.alerts import CoworkAlertManager

__all__ = [
    "CoworkEventReceiver",
    "CoworkRedactionFilter",
    "PromptCorrelationEngine",
    "CoworkDashboards",
    "CoworkAlertManager",
]