feat(eval-author): scaffold the nemo eval-author CLI surface - #968
Open
aleckhoury wants to merge 1 commit into
Open
feat(eval-author): scaffold the nemo eval-author CLI surface#968aleckhoury wants to merge 1 commit into
aleckhoury wants to merge 1 commit into
Conversation
Register discover, audit, propose, run, and doctor so the command tree exists and each child ticket has a landing spot. Every body exits non-zero naming the ticket that owns it, because a placeholder that exits 0 reads as a run that did nothing. Flags belong to those tickets, so no verb declares options yet. The CLI module imports nothing from eval_author. Those agents build their LLM client while the class body executes, so importing one here would make the whole CLI require AUTHOR_* credentials, including the doctor verb whose job is to report them missing. Experimentalist keeps its runner behind a lazily assigned module global for the same reason. Declare nemo-platform-plugin directly instead of leaning on the transitive path through Experimentalist, which is the coupling this plugin is shedding. Cover the entry-point wiring in tests. A typo in the key or the import path does not fail an import, it just makes nemo eval-author quietly missing from the CLI, which no unit test of the module itself would catch. Signed-off-by: Alec Khoury <akhoury@nvidia.com>
aleckhoury
force-pushed
the
ase-685-eval-author-cli-scaffolding/akhoury
branch
from
July 29, 2026 21:54
bcd8cd3 to
f875731
Compare
Contributor
📝 WalkthroughWalkthroughAdds the ChangesEval Author CLI
Suggested reviewers: Sequence Diagram(s)sequenceDiagram
participant NemoCLI
participant EvalAuthorCLI
participant TyperApp
NemoCLI->>EvalAuthorCLI: load eval-author entry point
EvalAuthorCLI->>TyperApp: register CLI verbs
TyperApp->>EvalAuthorCLI: invoke selected placeholder
EvalAuthorCLI-->>TyperApp: return ticket error and exit code 1
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
ryana
approved these changes
Jul 29, 2026
Contributor
|
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.
Closes ASE-685.
Summary
nemo eval-authorwithdiscover,audit,propose,run, anddoctor. Simply scaffolding spaces for commands so we can parallelize more easilycli.pyholding aNemoCLIsubclass whoseget_cli()declares commands inline, matchingExperimentalistCLIandInsightsCLIdown to the no-op root callback.Summary by CodeRabbit
New Features
nemo eval-authorcommand withdiscover,audit,propose,run, anddoctorsubcommands.Bug Fixes
Tests