
Github
- 23 installs
- 154 repo stars
- Updated July 30, 2026
- sammcj/agentic-coding
Helps with ai & agent building tasks.
About
github is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- github
- AI & Agent Building
- AI-coding skill
Github by the numbers
- 23 all-time installs (skills.sh)
- +1 installs in the week ending Jul 26, 2026 (Skillselion tracking)
- Ranked #9,978 of 16,556 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 1, 2026 (Skillselion catalog sync)
npx skills add https://github.com/sammcj/agentic-coding --skill githubAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 23 |
|---|---|
| repo stars | ★ 154 |
| Last updated | July 30, 2026 |
| Repository | sammcj/agentic-coding ↗ |
What it does
Helps with ai & agent building tasks.
Files
GitHub
- Use the
ghCLI tool for interacting with GitHub (issues, PRs, releases) and performghcommands outside of the sandbox - When when working with Github Actions, you should always check for and use the latest Actions versions that are at least 7 days old, you can use
pinact run -update --min-age 7to achieve this - For the general PR conversation timeline (not line-level review comments), use
gh pr view --commentsor the REST/issues/N/commentsendpoint - When you need to read line-level review comments with their resolved state (e.g. triaging bot or human review feedback), fetch them via GraphQL in one call:
gh api graphql -f query='query { repository(owner: "OWNER", name: "REPO") { pullRequest(number: N) { reviewThreads(first: 100) { nodes { id isResolved path line comments(first: 1) { nodes { author { login } body } } } } } } }' --jq '.data.repository.pullRequest.reviewThreads.nodes[] | select(.isResolved == false)' - When explicitly asked by the user to "close" or "resolve" a review comment, resolve the thread via the GraphQL mutation (do not reply to a comment unless instructed):
gh api graphql -f query='mutation($id: ID!) { resolveReviewThread(input: { threadId: $id }) { thread { isResolved } } }' -f id="PRRT_..." - Thread IDs start with
PRRT_. UseunresolveReviewThreadto reopen - You can audit Github Actions security by running
zizmor .
Related skills
AI & Agent Buildingagents