chore(sdk): scrub internal references, harden leak guard, green the CI#7
Merged
Conversation
Make the public SDK reveal only the public author contract — no internal project identifiers, no references to non-public modules, and no hints at how the platform enforces plugin security. - Strip internal project/governance identifiers and references to non-public modules from source docstrings, the manifest JSON schema, the docs, and CI job names. - Replace the markdown-only leak check with tests/test_no_internal_leaks.py, which scans every author-visible file (source, schema, CI, docs, templates) and runs as a required CI gate. - Remove a test that referenced paths outside this project and that listed non-public infrastructure details. - Drop a local dev-iteration block from `dryade plugin new` output and an internal identifier from a `dryade plugin package` error message. - CI: install the CLI extras + fastapi/httpx in the test and examples jobs so the CLI, route, and example suites actually run; verify the MIT license metadata in the built wheel; point the smoke test at the in-repo CLI. - Fix pre-existing typing and test-assertion issues so ruff, mypy --strict, and the full test suite pass. Co-Authored-By: Dammerzone <dammerzone@users.noreply.github.com>
Release notes referenced the PR author's GitHub login as a live @-mention. Use the PR number alone so generated release notes credit the change, not a specific account. Co-Authored-By: Dammerzone <dammerzone@users.noreply.github.com>
DryadeCore
pushed a commit
that referenced
this pull request
May 26, 2026
#7) * chore(sdk): scrub internal references, harden leak guard, green the CI Make the public SDK reveal only the public author contract — no internal project identifiers, no references to non-public modules, and no hints at how the platform enforces plugin security. - Strip internal project/governance identifiers and references to non-public modules from source docstrings, the manifest JSON schema, the docs, and CI job names. - Replace the markdown-only leak check with tests/test_no_internal_leaks.py, which scans every author-visible file (source, schema, CI, docs, templates) and runs as a required CI gate. - Remove a test that referenced paths outside this project and that listed non-public infrastructure details. - Drop a local dev-iteration block from `dryade plugin new` output and an internal identifier from a `dryade plugin package` error message. - CI: install the CLI extras + fastapi/httpx in the test and examples jobs so the CLI, route, and example suites actually run; verify the MIT license metadata in the built wheel; point the smoke test at the in-repo CLI. - Fix pre-existing typing and test-assertion issues so ruff, mypy --strict, and the full test suite pass. Co-Authored-By: Dammerzone <dammerzone@users.noreply.github.com> * ci(sdk): drop author @-mention from release notes template Release notes referenced the PR author's GitHub login as a live @-mention. Use the PR number alone so generated release notes credit the change, not a specific account. Co-Authored-By: Dammerzone <dammerzone@users.noreply.github.com> --------- Co-authored-by: Dryade <contact@dryade.ai> Co-authored-by: Dammerzone <dammerzone@users.noreply.github.com>
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.
Summary
Makes the public SDK reveal only the public author contract — no internal project identifiers, no references to non-public modules, and no hints at how the platform enforces plugin security.
Changes
tests/test_no_internal_leaks.py, which scans every author-visible file (source, schema, CI, docs, templates) and runs as a required CI job. The previous guard only scanned markdown, which is why source/schema/CI references shipped.dryade plugin newand an internal identifier from adryade plugin packageerror message.Verification (local, py3.12)