feat(github): add GitHub adapter with 5 public API commands#583
Open
kagura-agent wants to merge 1 commit intojackwener:mainfrom
Open
feat(github): add GitHub adapter with 5 public API commands#583kagura-agent wants to merge 1 commit intojackwener:mainfrom
kagura-agent wants to merge 1 commit intojackwener:mainfrom
Conversation
New commands: - github trending — trending repos (by recent stars) - github search — search repositories - github repo — repository details - github user — user profile - github issues — list repository issues All commands use GitHub's public REST API (no auth required, no browser needed). Pure YAML declarative adapters. Tested: all 5 commands return structured data correctly.
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.
What
Adds a native GitHub adapter with 5 commands using GitHub's public REST API. No authentication required, no browser needed.
Commands
github trendingopencli github trending --language python --limit 5github searchopencli github search --query "agent memory" --limit 10github repoopencli github repo --owner jackwener --name opencligithub useropencli github user --username jackwenergithub issuesopencli github issues --owner jackwener --name opencli --state openWhy
GitHub is the most used developer platform and a natural fit for an AI-agent CLI tool. Surprisingly it wasn't covered yet. All commands are pure YAML declarative adapters — zero TypeScript, minimal maintenance.
Implementation
src/clis/github/api.github.com)strategy: public,browser: falseTesting
All 5 commands manually verified: