Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Generate compliance reports and evidence packs
summary, err := client.Compliance.GetSummary(ctx, &grantex.ComplianceSummaryParams{ Since: "2026-01-01T00:00:00Z", Until: "2026-03-01T00:00:00Z", }) fmt.Printf("Agents: %d active, Grants: %d active\n", summary.Agents.Active, summary.Grants.Active)
nil
export, err := client.Compliance.ExportGrants(ctx, &grantex.ComplianceExportGrantsParams{ Status: "active", }) fmt.Printf("Exported %d grants\n", export.Total)
export, err := client.Compliance.ExportAudit(ctx, &grantex.ComplianceExportAuditParams{ Since: "2026-01-01T00:00:00Z", }) fmt.Printf("Exported %d audit entries\n", export.Total)
pack, err := client.Compliance.EvidencePack(ctx, &grantex.EvidencePackParams{ Framework: "soc2", }) fmt.Printf("Chain integrity: %v (%d entries checked)\n", pack.ChainIntegrity.Valid, pack.ChainIntegrity.CheckedEntries)
"soc2"
"gdpr"
"all"