-
Notifications
You must be signed in to change notification settings - Fork 52
Expand the agent provider structure and add some configs for the claude provider #517
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
juniper-shopify
merged 1 commit into
main
from
juni/expand-agent-provider-structure-and-add-config-for-claude
Nov 3, 2025
Merged
Expand the agent provider structure and add some configs for the claude provider #517
juniper-shopify
merged 1 commit into
main
from
juni/expand-agent-provider-structure-and-add-config-for-claude
Nov 3, 2025
+510
−65
Conversation
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
This was referenced Nov 3, 2025
Contributor
Author
dersam
approved these changes
Nov 3, 2025
acd3c07 to
ddf4cdb
Compare
797e9c1 to
658374f
Compare
ddf4cdb to
e6a8a86
Compare
658374f to
be4ba3d
Compare
e6a8a86 to
560f2bf
Compare
be4ba3d to
43f7d26
Compare
560f2bf to
d83ca19
Compare
43f7d26 to
afc5ddc
Compare
d83ca19 to
806a6f5
Compare
221a2d5 to
9b2fea2
Compare
806a6f5 to
81643b5
Compare
81643b5 to
536605a
Compare
9b2fea2 to
500e7a8
Compare
536605a to
1ac0979
Compare
500e7a8 to
832ac6e
Compare
622bada to
4b64201
Compare
832ac6e to
101f116
Compare
4b64201 to
58150d7
Compare
101f116 to
973433d
Compare
…de provider I've separated the structure of the claude agent implementation into three main pieces: 1. the `agent` cog -- generic for all agent providers 2. the `claude` provider -- implements a generic interface; can be instantiated and invoked by the agent 3. `ClaudeInvocation` -- an internal implementation detail of the Claude provider that wraps a single run of the Claude Code CLI (it will be helpful to have a stateful container unique to a specific invocation for output formatting, session tracking, etc.)
973433d to
b3b38f4
Compare
Contributor
Author
Merge activity
|
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.

I've separated the structure of the claude agent implementation into three main pieces:
agentcog -- generic for all agent providersclaudeprovider -- implements a generic interface; can be instantiated and invoked by the agentClaudeInvocation-- an internal implementation detail of the Claude provider that wraps a single run of the Claude Code CLI (it will be helpful to have a stateful container unique to a specific invocation for output formatting, session tracking, etc.)