-
Notifications
You must be signed in to change notification settings - Fork 11
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
Add GitHub devs tools #315
base: main
Are you sure you want to change the base?
Conversation
What are we waiting on to for this PR? Looks awesome! |
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.
Awesome!
Just a small suggestion:
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.
It would be worth wrapping these in a GitHub agent, the tool list is getting quite long!
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.
I think this is great! As discussed earlier, there are a lot of tools here and many of them won't be used by some agents. It would be great if we could group this tools into common use cases (they kind of are now) or scopes and all the creator of a GitHub agent to select the necessary groups for their agent.
Thank you for adding these GitHub developer tools! I've reviewed the changes and have some suggestions to enhance the implementation:
const defaultModelConfig: LLMConfiguration = {
provider: 'anthropic',
model: process.env.CLAUDE_MODEL || 'claude-3-5-sonnet-latest'
}
return {
repos: { list, create, delete, ... },
activity: { watch, unwatch, ... },
issues: { create, comment, ... }
}
These changes would improve code maintainability, type safety, and reliability while following Web3 development best practices. |
Add GitHub devs tools