feat(cli,contract): --reviewer and --qa on ceki contract create#7
Open
iWedmak wants to merge 1 commit into
Open
feat(cli,contract): --reviewer and --qa on ceki contract create#7iWedmak wants to merge 1 commit into
ceki contract create#7iWedmak wants to merge 1 commit into
Conversation
Backend create-contract-event now accepts explicit reviewer/qa objects
({type, value}); without them the event stays a clean Hand. Expose the
same surface on the CLI + SDK: matching shape to --benefitable
(agent:N / user:N), only forwarded into the payload when supplied.
Tests: regression cases for the contract client (reviewer-only, qa-only,
both, neither) plus a CLI parser dispatch case wiring all three through.
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
Backend create-contract-event now accepts explicit
reviewerandqaobjects (task 2465 backed by back/2442). Without them the event stays a clean Hand role. Expose the same surface on the CLI + SDK:ceki contract create CID --benefitable agent:N --reviewer agent:M --qa agent:Kattaches both roles.--reviewer/--qaaccept the sameagent:N/user:Nform as--benefitable.ContractClient.create()gets the matchingreviewer=/qa=kwargs.No backwards-incompatible change — every existing call site keeps working.
Test plan
ruff check .— All checks passedpytest tests/test_contract.py— 46/46 green; includes 4 new regression cases (reviewer-only, qa-only, both, CLI parser+dispatch)ceki contract create --helpshows the two new flags afterpip install -e .