refactor(cli)!: remove submit command#14
Merged
Conversation
Focus the CLI on JSON generation and validation; adding a repo to the catalog is now a regular GitHub PR workflow per CONTRIBUTING.md. The previous `submit` command was misleading: its meta description claimed to "open a PR against ccpluginizer/marketplace" but it only wrote a tempfile and printed manual-PR instructions. Removing it tightens the CLI's stated purpose. Also fix an unrelated stale URL in TAKEDOWN.md (`ccpluginizer/marketplace` → `lifebugz/ccpluginizer`). BREAKING CHANGE: `submit` subcommand removed; use `scan` to generate the entry JSON, then open a PR manually.
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
submitsubcommand from@ccpluginizer/ccpluginizer. The CLI now ships onlyscanandvalidate.TAKEDOWN.md(ccpluginizer/marketplace→lifebugz/ccpluginizer).Why
The
submitcommand'smeta.descriptionclaimed to "open a PR against ccpluginizer/marketplace" but the implementation only wrote a tempfile and printed manual-PR instructions — a mismatch between stated and actual behavior. Rather than build out the elaborate submission infrastructure originally envisioned (gh fork+PR, or hosted GitHub App + Worker), we're tightening the CLI's purpose: generate JSON entries, full stop. Adding entries is plain old GitHub PR contribution.Breaking change
bunx @ccpluginizer/ccpluginizer submit <owner/repo>no longer exists. Replace with:Per the project's pre-1.0 changeset conventions, this is a
minorbump (would bemajorpost-1.0).Test plan
bun run --filter '@ccpluginizer/*' typecheck— passesbun run --filter '@ccpluginizer/*' lint— passesbun --filter='@ccpluginizer/*' test— 59/59 passingbun run --filter '@ccpluginizer/*' build— bundle is 69.40 KB; nosubmitreferences in distbun run packages/cli/src/index.ts scan elysiajs/skillsproduces the expected entry JSON.changeset/remove-submit-command.mddeclaresminorfor@ccpluginizer/ccpluginizer