docs: cmcp_verify ships inside cmcp-runtime, not as its own package - #123
Merged
Conversation
The cMCP integration tutorial tells readers to run `pip install cmcp-verify`. That 404s. There is no `cmcp-verify` distribution on PyPI. The `cmcp_verify` package is shipped inside `cmcp-runtime`, declared in cmcp's pyproject as `packages = ["src/cmcp_runtime", "src/cmcp_verify"]`, and confirmed present in the published cmcp-runtime 0.3.0 wheel. Only the install command changed. The prose references to `cmcp-verify` as the name of the verification library are left alone, here and in hardware-attestation-platforms.md, since they read correctly as a component name rather than an install target. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: Imran Siddique <imran.siddique@opaque.co>
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.
docs/tutorials/integrating-with-cmcp.mdtells readers to run:That 404s. There is no
cmcp-verifydistribution on PyPI.cmcp_verifyis shipped insidecmcp-runtime. cmcp'spyproject.tomldeclarespackages = ["src/cmcp_runtime", "src/cmcp_verify"], and I confirmed both are present in the publishedcmcp-runtime0.3.0 wheel:Only the install command is changed, with a comment so it does not get reverted. The prose references to
cmcp-verifyas the library name are left as-is, both here and inhardware-attestation-platforms.md, since they read fine as a component name rather than an install target.Found while auditing every
pip installinstruction across the agentrust-io repos. This was one of two documented packages that did not resolve; the other is fixed in agentrust-io/trace-tests#52.