old sprints work, new sprints for exposing functionality via cli, improve code_of_conduct and other agents instructions

This commit is contained in:
master
2026-01-15 18:37:59 +02:00
parent c631bacee2
commit 88a85cdd92
208 changed files with 32271 additions and 2287 deletions

View File

@@ -282,6 +282,32 @@ else
fi
```
## Evidence Card Format (v1.1)
For single-file evidence exports with offline verification support, use the Evidence Pack API's evidence-card format:
```
GET /v1/evidence-packs/{packId}/export?format=evidence-card
```
### Formats
| Format | Content-Type | Description |
|--------|--------------|-------------|
| `evidence-card` | `application/vnd.stellaops.evidence-card+json` | Full evidence card with SBOM excerpt, DSSE envelope, and Rekor receipt |
| `card-compact` | `application/vnd.stellaops.evidence-card-compact+json` | Compact card without full SBOM |
### Response Headers
| Header | Description |
|--------|-------------|
| `X-Evidence-Pack-Id` | Pack identifier |
| `X-Content-Digest` | SHA-256 content digest |
| `X-Evidence-Card-Version` | Schema version (e.g., "1.0.0") |
| `X-Rekor-Log-Index` | Rekor transparency log index (when available) |
See [Evidence Decision API](./evidence-decision-api.openapi.yaml) for complete schema.
## See Also
- [Evidence Bundle Format Specification](../modules/cli/guides/commands/evidence-bundle-format.md)