merge#341
Conversation
Contributor License AgreementThe following contributors need CLA coverage: |
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Want reviews to match your repository better? Bugbot Learning can learn team-specific rules from PR activity. A team admin can enable Learning in the Cursor dashboard.
Comment @cursor review or bugbot run to trigger another review on this PR
Reviewed by Cursor Bugbot for commit dd09067. Configure here.
| @@ -0,0 +1,82 @@ | |||
| --- | |||
There was a problem hiding this comment.
Wrong skill manifest filename
Medium Severity
The new skill lives in skill.md, but this repo’s skill loader only reads SKILL.md in each skill directory. Sibling skills such as agent-desktop use that name, so agent-github is never discovered or injected into the agent prompt.
Reviewed by Cursor Bugbot for commit dd09067. Configure here.


What does this PR do?
Describe your changes here.
Fixes #
Checklist
Note
Low Risk
Documentation-only addition under
.agents/with no runtime, auth, or application code changes.Overview
Adds a new agent skill at
.agents/skills/agent-github/skill.mdso agents know when and how to contribute to public GitHub repos via fork + PR instead of ad-hoc shell/git.The spec covers scope (public repos only), prerequisites (git,
gh/PAT), a 10-step preferred flow (delegate to GitHub sub-agent, fork, branch, commit, push, open PR), tool-by-tool guidance forgithub_*andgit_*helpers, reliability rules (atomic PRs, state snapshots, no upstream pushes), and blockers (auth, rate limits, private/archived repos).It is structured like the existing
agent-desktopskill and ends with meta copy noting that alignment; reviewers may want to trim that closing paragraph for consistency with other skills.Reviewed by Cursor Bugbot for commit dd09067. Configure here.