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
1 change: 1 addition & 0 deletions .github/workflows/release-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ jobs:
--self-contained true
-p:PublishSingleFile=true
-p:DebugType=none
-p:AssemblyName=tea
-p:Version=${{ env.VERSION }}
-o ./publish

Expand Down
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# CoderPatros.Tea.Client
# dotnet-tea

A .NET toolkit for the [Transparency Exchange API (TEA)](https://github.com/CycloneDX/transparency-exchange-api) — the OWASP/ECMA TC54 standard for automating the exchange of software supply chain transparency artifacts (SBOMs, VEX, attestations, and more). Targets the TEA specification **v0.3.0-beta.2**.

This project provides:

- **C# Client Libraries** — NuGet packages for integrating TEA into .NET applications, with full API coverage, dependency injection support, TEI parsing, and TEI resolution.
- **CLI Tool** — A command-line interface (`tea`) for querying TEA servers, discovering endpoints, inspecting artifacts, and downloading SBOMs.
- **TEA Explorer Web App** — A browser-based interface for browsing and exploring TEA servers, built with ASP.NET Core Razor Pages.

## Acknowledgments

Special thanks to [Viktor Petersson](https://github.com/vpetersson) and [sbomify](https://sbomify.com) for providing a public TEA server and client implementation. This project was developed and tested against their implementation and wouldn't exist without it.

## CoderPatros.Tea.Client

A C# .NET client library for the [Transparency Exchange API (TEA)](https://github.com/CycloneDX/transparency-exchange-api) — the OWASP/ECMA TC54 standard for automating the exchange of software supply chain transparency artifacts (SBOMs, VEX, attestations, and more).

Expand Down
2 changes: 1 addition & 1 deletion src/CoderPatros.Tea.Web/Pages/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@

<footer class="container mt-4 mb-3">
<hr />
<p class="text-muted small">TEA Explorer &mdash; Transparency Exchange API browser</p>
<p class="text-muted small">TEA Explorer &mdash; Transparency Exchange API browser &mdash; <a href="https://github.com/coderpatros/dotnet-tea" class="text-muted">GitHub</a></p>
</footer>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
Expand Down