-
Notifications
You must be signed in to change notification settings - Fork 0
feat(openclaw): add dev-opus and dev-gpt-codex WhatsApp group bindings #1385
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+199
−31
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
add5802
feat(openclaw): add dev-opus and dev-gpt-codex WhatsApp group bindings
shunkakinoki cf9d9c7
feat(openclaw): switch broadcast strategy to parallel
shunkakinoki db4954c
feat(openclaw): dev group now GPT only (dev-gpt-codex)
shunkakinoki 6028616
feat(openclaw): add dev-gpt agent and switch dev group to it
shunkakinoki c09d099
feat(openclaw): add Codex fallback to GPT model configurations
shunkakinoki 8575c41
feat(openclaw): add Codex fallback models for improved performance
shunkakinoki e662adb
feat(openclaw): add Code Reviewer (GPT) agent with fallback models
shunkakinoki 46f798a
feat(openclaw): add code-reviewer-gpt to the list of agents
shunkakinoki e32a93f
feat(openclaw): add Code Reviewer (Minimax) agent with updated model …
shunkakinoki 2be0795
feat(openclaw): add 'code' to the list of agents
shunkakinoki cdbdb80
feat(openclaw): add Code Reviewer (GPT) and Code Reviewer (Minimax) a…
shunkakinoki 6294dc0
feat(openclaw): remove deprecated code-reviewer agents from broadcast…
shunkakinoki b18f6b0
feat(openclaw): remove 'code-reviewer-gemini' from the agents list
shunkakinoki 3873fac
feat(openclaw): update Security Scanner and Docs Checker models to us…
shunkakinoki a7649f9
feat(openclaw): update Security Scanner and Docs Checker models to us…
shunkakinoki 3f5987f
feat(openclaw): update Twitter agent configurations with new model fa…
shunkakinoki ab9cb32
feat(openclaw): update broadcast list to replace deprecated Twitter a…
shunkakinoki 83ef7f7
feat(openclaw): update agent models and add new tools for Twitter and…
shunkakinoki File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding these agents to the
bindingsarray appears to be redundant and inconsistent with the existing configuration pattern in this file.In this repository, groups that handle multiple agents (like the one for
dev-opusanddev-gpt-codexat line 739) are typically configured only in thebroadcastsection. Other multi-agent groups, such as thecode-reviewergroup (line 724) or thetwittergroup (line 735), do not have corresponding entries in thebindingslist.The
broadcastconfiguration already ensures that messages from this group are routed to both agents. Adding them tobindingsmight cause unexpected behavior or duplicate processing (e.g., the agent triggering once via the binding and once via the broadcast). Since thebroadcastentry for this group already exists, these bindings should be removed to maintain consistency.}