This repository was archived by the owner on Jul 24, 2026. It is now read-only.
Prepare edison-detectord for crates.io publishing#5
Merged
Conversation
- Rename mcp_detector_lib to edison-detectord (crate, directory, imports, docs) - Add repository/homepage metadata and point readme at repo README - Sync license to AGPL-3.0-only and add LICENSE file, matching other Edison Watch repos - Swap command-line-utilities category for config (it's a library) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QNXkCRxAip5uDbzdjjSi7t
Qodo reviews are paused for this user.Troubleshooting steps vary by plan Learn more → On a Teams plan? Using GitHub Enterprise Server, GitLab Self-Managed, or Bitbucket Data Center? |
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QNXkCRxAip5uDbzdjjSi7t
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Prepares the library crate for its first crates.io release under the name edison-detectord (
detectordalone was deemed too generic to claim).Changes
mcp_detector_lib→edison-detectord: package name,crates/directory, alluse mcp_detector_lib::imports across the workspace, and README/architecture doc references.readme = "README.md"pointed at a file that doesn't exist in the crate directory; now points at the repo README.repository/homepagepointing at this repo; swap thecommand-line-utilitiescategory forconfig(this is a library).AGPL-3.0-onlyand add the LICENSE file, matching the other Edison Watch repos (wasMIT OR Apache-2.0with no license file).The other three crates (
mcp_detector_daemon,mcp_backend,mcp_quarantine) remainpublish = falseand only had their path deps/imports updated.Verification
cargo test --workspace: 115 tests passcargo publish --dry-run -p edison-detectord: packages and verifies cleanlyedison-detectordis unclaimed on crates.ioAfter merge:
cargo publish -p edison-detectord(no dependency ordering — the lib has no path deps).🤖 Generated with Claude Code
https://claude.ai/code/session_01QNXkCRxAip5uDbzdjjSi7t
Summary by cubic
Prepares the library for its first crates.io release as
edison-detectord. Renames the crate, fixes publish metadata, aligns licensing across the workspace, and updatescargo-denyto allow AGPL for first-party crates.Refactors
mcp_detector_lib→edison-detectord(crate dir, package name, all imports/usages, examples/tests, docs, and watcher thread name).readmeto the repoREADME.md; addrepositoryandhomepage; change category toconfig.AGPL-3.0-onlyand addLICENSE; update workspace and dependent crates to use the new crate and license.mcp_backend,mcp_quarantine, andmcp_detector_daemonaspublish = false.AGPL-3.0-onlyfor first-party crates indeny.toml(cargo-deny).Migration
edison_detectord.cargo publish -p edison-detectord(no dependency ordering needed).Written for commit 4ce08dc. Summary will update on new commits.