You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auditors and compliance officers need to extract delegation chain evidence from DRS for external review (regulatory audits, incident investigations, legal proceedings). There is currently no standardized export format or tooling for producing self-contained evidence bundles.
Proposed Solution
Build a drs export-bundle CLI command that produces a self-contained evidence package from a stored delegation chain.
fixtures/conformance/receipts/full-chain-bundle.json — test input
Implementation Notes
Start with JSON export only. PDF generation and ZIP packaging can be follow-ups. The JSON format should be stable and versioned so external tools can parse it reliably. Include a format_version field in the output.
Problem
Auditors and compliance officers need to extract delegation chain evidence from DRS for external review (regulatory audits, incident investigations, legal proceedings). There is currently no standardized export format or tooling for producing self-contained evidence bundles.
Proposed Solution
Build a
drs export-bundleCLI command that produces a self-contained evidence package from a stored delegation chain.Acceptance Criteria
drs export-bundle --chain-hash <hash>— exports a complete evidence packageRelevant Files
drs-verify/pkg/store/store.go— store interface for retrieving receiptsdrs-verify/pkg/anchor/rfc3161.go— timestamp token retrievaldrs-sdk/src/cli/— CLI infrastructurefixtures/conformance/receipts/full-chain-bundle.json— test inputImplementation Notes
Start with JSON export only. PDF generation and ZIP packaging can be follow-ups. The JSON format should be stable and versioned so external tools can parse it reliably. Include a
format_versionfield in the output.