Fix missing marketplace hook CLI payloads#112
Closed
YoungsPlace wants to merge 1 commit into
Closed
Conversation
Contributor
|
Thanks for the PR! Changes to LazyCodex land through oh-my-openagent — could you open this against omo-codex over there instead? PRs in this repository can't be merged. If you're working with a coding agent, prompt it like this:
|
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.
Problem
The LazyCodex marketplace payload declared hook commands for
components/start-work-continuation/dist/cli.jsandcomponents/ulw-loop/dist/cli.js, but those generated CLI files were absent from the checked-in payload. This matches the missing-file failure reported in #108 and can leave installs with dangling hook/bin targets after marketplace update or repair.Fixes #108.
Changes
dist/cli.jspayloads forstart-work-continuationandulw-loop.dist/directories so the generated payload files can be tracked like the other bundled component CLIs.${PLUGIN_ROOT}/...command target is missing.Verification
node --test plugins/omo/test/aggregate-hooks.test.mjsnode --check components/start-work-continuation/dist/cli.js && node --check components/ulw-loop/dist/cli.jsfromplugins/omocomponents/ulw-loop/dist/cli.js helpand expected start-work-continuation usage failurenpm testSummary by cubic
Include the missing CLI payloads for marketplace hooks so installs no longer have dangling hook/bin targets. Adds a guardrail test to catch missing command targets; fixes #108.
dist/cli.jsforstart-work-continuationandulw-loop.dist/directories (remove.gitignoreignores) so CLIs are published.${PLUGIN_ROOT}/...target is missing.Written for commit 3e02011. Summary will update on new commits.