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 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 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 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'"
15 changes: 15 additions & 0 deletions descriptions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,21 @@ ConnectorService_GetCapabilities: >-
bulk-export). Used to determine what operations an agent can perform
through this integration.

# --- compliance/v1 ---
ComplianceService_GenerateEvidencePackage: >-
Generate a compliance evidence package for a workspace and framework by
aggregating audit evidence, governance policy snapshots, and selected
approval decisions into a single report-ready payload.
ComplianceService_DetectGaps: >-
Detect uncovered controls for a framework in a given time window. Returns
the missing controls and the reason each gap was identified.
ComplianceService_GetCoverage: >-
Compute control coverage for a framework over a given evidence window.
Returns per-control coverage and overall coverage ratio.
ComplianceService_ExportPackage: >-
Render an evidence package into an exportable JSON or CSV artifact for
auditor delivery and downstream compliance tooling.

# --- entities/v1 ---
EntityService_Resolve: >-
Resolve a record from an external system to its canonical entity.
Expand Down
Loading
Loading