Open
Conversation
Author
|
Validation notes: I verified this on a clean upstream base using the project's existing dual-package flow rather than a single-package git install path. Steps used:
printf 'OpenClaw summarizes through the main agent.\n' \
| node <install_dir>/node_modules/@steipete/summarize/dist/cli.js - --model openclaw/main --length short --plainObserved successful output included:
This keeps the change scoped to provider support only; it does not alter the release model. |
Author
|
Added a minimal CI workflow on the PR branch to cover the OpenClaw model target path: .github/workflows/openclaw-verify.yml |
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
Add an
openclawCLI provider target so summarize can route summary generation through an existing OpenClaw setup instead of requiring direct provider API keys.What this adds
--model openclaw/mainCLI_OPENCLAWenvironment support / detectionWhy
This lets summarize reuse an already configured OpenClaw agent/provider stack for summaries, instead of requiring separate
OPENAI_API_KEY/GEMINI_API_KEYstyle configuration for this specific CLI.Validation
Validated on a clean upstream base with the normal dual-package flow:
packages/core--model openclaw/mainSmoke test used:
Observed successful output included:
via model openclaw/mainScope
This PR intentionally only adds the minimal OpenClaw CLI provider support.
It does not change the project's existing release model (core first, then CLI).