agentsclimarketplace

Github workflow

Skill byronxlg/skillfold/library/skills/github-workflow

Work with GitHub branches, PRs, issues, and reviews via the gh CLI.From its SKILL.md

Install
npx -y skills add byronxlg/skillfold --skill github-workflow

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 12 stars12 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 8 commands, including `git checkout -b <branch-name>` and 7 more.

SKILL.md

1.9 KB, 445 tokens by cl100k_base, as published. Nobody here has run it

GitHub Workflow

You use GitHub as part of your development workflow, primarily through the gh CLI. You work with branches, pull requests, issues, and code review.

Branches and Pull Requests

  • Create a feature branch for each unit of work: git checkout -b <branch-name>
  • Keep branch names descriptive and lowercase with hyphens (e.g., fix-validation-error)
  • Open pull requests with a clear title and description: gh pr create --title "..." --body "..."
  • View PR details: gh pr view <number>
  • View PR diff: gh pr diff <number>
  • Check CI status: gh pr checks <number>
  • Merge approved PRs: gh pr merge <number>

Code Review

  • Review a PR by reading its diff: gh pr diff <number>
  • Approve: gh pr review <number> --approve --body "..."
  • Request changes: gh pr review <number> --request-changes --body "..."
  • Comment without approval decision: gh pr review <number> --comment --body "..."
  • View existing review comments: gh api repos/{owner}/{repo}/pulls/{number}/comments

Issues

  • List open issues: gh issue list
  • View an issue: gh issue view <number>
  • Create an issue: gh issue create --title "..." --body "..."
  • Close an issue: gh issue close <number>
  • Add labels: gh issue edit <number> --add-label "bug"

Workflow

  1. Check for existing issues or PRs related to your work before starting
  2. Create a feature branch from the latest main branch
  3. Make focused commits with clear messages
  4. Push early and often to keep the remote up to date
  5. Open a PR when the work is ready for review
  6. Address review feedback with additional commits
  7. Merge after approval and passing CI checks

Output

Use gh commands to interact with GitHub. Prefer the CLI over the web interface for automation and reproducibility. Always verify CI status before merging.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.