Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@ jobs:
. .venv-smoke/bin/activate
python -m pip install --upgrade pip
python -m pip install dist/*.whl
python -c "from agents.v1.agents_pb2 import Agent; from compliance.v1.compliance_pb2 import EvidencePackage; from config.v1.config_pb2 import FeatureFlagSnapshot; from events.v1.cloudevent_pb2 import CloudEvent; from traces.v1.traces_pb2 import TraceSummary; from workflows.v1.workflows_pb2 import WorkflowRun; assert Agent.DESCRIPTOR.full_name == 'agents.v1.Agent'; assert EvidencePackage.DESCRIPTOR.full_name == 'compliance.v1.EvidencePackage'; assert FeatureFlagSnapshot.DESCRIPTOR.full_name == 'config.v1.FeatureFlagSnapshot'; assert CloudEvent.DESCRIPTOR.full_name == 'events.v1.CloudEvent'; assert TraceSummary.DESCRIPTOR.full_name == 'traces.v1.TraceSummary'; assert WorkflowRun.DESCRIPTOR.full_name == 'workflows.v1.WorkflowRun'"
python -c "from agents.v1.agents_pb2 import Agent; from attribution.v1.attribution_pb2 import AttributionReport; from compliance.v1.compliance_pb2 import EvidencePackage; from config.v1.config_pb2 import FeatureFlagSnapshot; from events.v1.cloudevent_pb2 import CloudEvent; from traces.v1.traces_pb2 import TraceSummary; from workflows.v1.workflows_pb2 import WorkflowRun; assert Agent.DESCRIPTOR.full_name == 'agents.v1.Agent'; assert AttributionReport.DESCRIPTOR.full_name == 'attribution.v1.AttributionReport'; assert EvidencePackage.DESCRIPTOR.full_name == 'compliance.v1.EvidencePackage'; assert FeatureFlagSnapshot.DESCRIPTOR.full_name == 'config.v1.FeatureFlagSnapshot'; assert CloudEvent.DESCRIPTOR.full_name == 'events.v1.CloudEvent'; assert TraceSummary.DESCRIPTOR.full_name == 'traces.v1.TraceSummary'; assert WorkflowRun.DESCRIPTOR.full_name == 'workflows.v1.WorkflowRun'"
11 changes: 11 additions & 0 deletions descriptions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,17 @@ ConnectorService_GetCapabilities: >-
bulk-export). Used to determine what operations an agent can perform
through this integration.

# --- attribution/v1 ---
AttributionService_GenerateReport: >-
Generate a persisted attribution report for one or more pipeline deals by
correlating traces, metered usage, and deal context into per-agent and
optional team revenue and ROI rollups.
AttributionService_GetReport: >-
Retrieve a previously generated attribution report by ID.
AttributionService_ExportReport: >-
Render an attribution report into JSON or CSV for finance, operations, or
downstream analytics tooling.

# --- compliance/v1 ---
ComplianceService_GenerateEvidencePackage: >-
Generate a compliance evidence package for a workspace and framework by
Expand Down
Loading
Loading