Feature: Automate Issues and PRs interaction for agents#81
Merged
Conversation
- Add independent 'read_github_issues' skill to cleanly parse open/closed issues via gh CLI format. - Add independent 'read_github_prs' skill to parse open/closed pull requests safely. - Include Python helper scripts with UTF-8 support for safe terminal output. - Update AGENTS.md context file to encourage active agents to automatically use these skills before taking action on the codebase.
- Add independent 'create_github_issue' skill to allow agents to open new issues via gh CLI. - Add independent 'create_github_pr' skill to allow agents to submit pull requests. - Include Python helper scripts to format arguments and ensure safe UTF-8 execution. - Update AGENTS.md to register the new write-capable skills.
Codecov Report✅ All modified and coverable lines are covered by tests. |
- Add independent 'update_github_issue' skill to allow automated editing of labels, titles, and descriptions. - Add independent 'update_github_pr' skill to allow automated modification of base branches, labels, and titles. - Implement explicit parameter handling to ensure safe differential updates in Python scripts. - Update AGENTS.md registering these capabilities for autonomous systems.
- Update WORKFLOW.md to replace legacy '[TYPE]' bracket notation with modern 'type:' formatting (feat:, fix:, docs:, chore:, etc.). - Update AGENTS.md instructions to explicitly require autonomous agents to use Conventional Commits. - Modify all formatting examples and tables globally to prevent LLMs from treating brackets as placeholders.
…leases - Add 'update_changelog' skill and Python script to safely parse and prepend version blocks in CHANGELOG.md following 'Keep a Changelog' specs. - Add 'release_tag_push' skill and polling script that awaits main branch CI completion via gh run watch before dispatching local git tags, stopping race conditions. - Update AGENTS.md registering new pipeline administration commands for autonomous workflows.
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.
Description
This pull request introduces four independent Agent Skills that allow AI agents to interact directly with the repository's GitHub Issues and Pull Requests via the
ghCLI.Skills added:
read_github_issues: Fetch and list open/closed issues safely.read_github_prs: Fetch and list PRs.create_github_issue: Automate the creation of cleanly formatted issues.create_github_pr: Automate the creation of PRs.Additionally,
AGENTS.mdwas updated to document these new capabilities and instruct agents on their proper use.Type of Change
Checklist
black(line length 100)isortfor import sorting