AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Gh

skill-kaynetik-skills-gh · by kaynetik

GitHub CLI (gh) and GitHub Actions workflows with git hygiene: secure CI YAML, least-privilege tokens, caching, concurrency, script-injection prevention, PR and issue automation, and operational commands. Use when authoring or reviewing .github/workflows, debugging Actions runs, using gh for repos/issues/PRs/runs/secrets/api, or when the user mentions GitHub Actions, GHA, workflow YAML, gh CLI, G…

No reviews yet
0 installs
27 views
0.0% view→install

Install

$ agentstack add skill-kaynetik-skills-gh

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-kaynetik-skills-gh)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Gh? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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 .env with real credentials. Use secret managers, GitHub Secrets, or local git-ignored files.
  • History: Avoid rewriting shared history without team agreement. Prefer git revert for 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 login for interactive use; GH_TOKEN (or GITHUB_TOKEN in Actions) for automation. Scope tokens to the minimum required.
  • Repo context: gh repo set-default owner/repo in a clone reduces repeated --repo flags.
  • Automation-friendly output: Prefer --json and --jq over 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 interpolating github.event fields directly into run: 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.