docs(lesson-18): add nobulex Python receipt SDK to production references#571
Open
arian-gogani wants to merge 2 commits into
Open
docs(lesson-18): add nobulex Python receipt SDK to production references#571arian-gogani wants to merge 2 commits into
arian-gogani wants to merge 2 commits into
Conversation
Contributor
|
👋 Thanks for contributing @arian-gogani! We will review the pull request and get back to you soon. |
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Adds an additional external reference in the “receipts / tamper-evident audit trail” resources list, pointing readers to a Python SDK option aligned with the lesson’s signing/verification pattern.
Changes:
- Add a new README bullet referencing the
nobulexPython SDK and related compliance/test-vector claims.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| - The receipt format used in this lesson follows an IETF Internet-Draft (`draft-farley-acta-signed-receipts`) currently in the standards process. | ||
| - The Microsoft Agent Governance Toolkit composes receipts with Cedar-based policy decisions; see Tutorial 33 in that repository for an end-to-end example. | ||
| - The `protect-mcp` (npm) and `@veritasacta/verify` (npm) packages provide a Node-based implementation of receipt signing and offline verification, intended for wrapping any MCP server with a tamper-evident audit trail. | ||
| - The **[nobulex](https://github.com/arian-gogani/nobulex)** Python SDK (`pip install nobulex`) provides the same pattern in Python with LangChain and CrewAI integrations, cross-validated test vectors (4/4 byte-identical across Python and TypeScript), and an OWASP-merged compliance mapping for EU AI Act Article 12, SOC 2, and HIPAA (see [PR #2210](https://github.com/OWASP/CheatSheetSeries/pull/2210), merged June 2026). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds nobulex to the production library references in Lesson 18 (Securing AI Agents with Cryptographic Receipts).
The lesson currently lists two npm packages (
protect-mcpand@veritasacta/verify) as production receipt library options. nobulex fills the same role for Python, which has no library listed.Why
pip install nobulexis live on PyPIChange
One bullet added to the 'Use a production receipt library' list in the Production References section. No other changes.