Install
$ agentstack add skill-kaynetik-skills-gh ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Git, GitHub CLI, and GitHub Actions
Reference files
| Topic | File | When to read | | :--- | :--- | :--- | | GitHub Actions (workflows, security, performance) | [reference/github-actions.md](reference/github-actions.md) | Writing or reviewing workflow YAML, CI design, hardening | | GitHub CLI (gh) | [reference/gh-cli.md](reference/gh-cli.md) | Commands for repos, issues, PRs, runs, secrets, API |
Read the relevant reference before suggesting version-specific action tags or gh flags; prefer verifying against current docs or gh --help.
Git (repository hygiene)
- Commits: Small, coherent changes; messages that state intent and context (what changed and why, not only how).
- Branches: Use a consistent team convention for naming; keep feature branches short-lived and rebased or merged against the default branch as appropriate to the project policy.
- Secrets: Never commit tokens, keys, or
.envwith real credentials. Use secret managers, GitHub Secrets, or local git-ignored files. - History: Avoid rewriting shared history without team agreement. Prefer
git revertfor public fixes on main when others depend on the graph. - Hooks and config: Align with project
pre-commit/ CI checks; do not bypass hooks to land broken formatting or tests.
GitHub CLI (gh)
- Auth:
gh auth loginfor interactive use;GH_TOKEN(orGITHUB_TOKENin Actions) for automation. Scope tokens to the minimum required. - Repo context:
gh repo set-default owner/repoin a clone reduces repeated--repoflags. - Automation-friendly output: Prefer
--jsonand--jqover scraping human tables in scripts.
Full command map, environment variables, and doc links: [reference/gh-cli.md](reference/gh-cli.md).
GitHub Actions (high level)
- Permissions: Declare minimal
permissions:at workflow or job level; default broad scopes are rarely needed for build/test. - Secrets and untrusted input: Use
secrets.*for sensitive values; avoid interpolatinggithub.eventfields directly intorun:shells (see [reference/github-actions.md](reference/github-actions.md)). - Forks and
pull_request_target: Treat as high risk; never check out arbitrary fork refs in a context that can reach secrets without an explicit, reviewed pattern. - Performance: Use path filters, concurrency groups, caching, and matrix design intentionally; skip redundant setup when the runner image already provides the tool (confirm via runner image docs in the reference).
- Supply chain: Pin third-party actions to a commit SHA when policy requires; keep actions updated (Dependabot or equivalent).
Structured checklist, official documentation links, and patterns for clean workflows: [reference/github-actions.md](reference/github-actions.md).
When this skill is not enough
- Enterprise or org policy: Follow internal security and compliance rules over generic advice here.
- Deep Git internals: Use project docs or a dedicated Git reference for advanced history surgery.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: kaynetik
- Source: kaynetik/skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.