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

Git Platform

skill-goca-se-dotcontext-git-platform · by goca-se

>-

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

Install

$ agentstack add skill-goca-se-dotcontext-git-platform

✓ 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 No
  • 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-goca-se-dotcontext-git-platform)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo 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 Git Platform? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skill: Git Platform Detection

When to Use

Before running any git hosting CLI command (creating PRs, viewing issues, commenting on PRs, etc.), detect the platform first. Never assume GitHub.

Detection

Run this detection sequence and use the FIRST match:

Step 1: Check remote URL

git remote get-url origin 2>/dev/null

| Remote URL contains | Platform | CLI | MR/PR term | |---------------------|----------|-----|------------| | github.com | GitHub | gh | Pull Request (PR) | | gitlab.com or gitlab | GitLab | glab | Merge Request (MR) | | bitbucket.org | Bitbucket | bb or API | Pull Request (PR) | | dev.azure.com or visualstudio.com | Azure DevOps | az repos | Pull Request (PR) | | codecommit | AWS CodeCommit | aws codecommit | Pull Request (PR) |

For self-hosted instances (e.g., gitlab.company.com), check for platform indicators:

  • .gitlab-ci.yml exists → GitLab
  • .github/ directory exists → GitHub
  • bitbucket-pipelines.yml exists → Bitbucket
  • azure-pipelines.yml exists → Azure DevOps

Step 2: Verify CLI is installed

# GitHub
command -v gh &>/dev/null && gh auth status &>/dev/null

# GitLab
command -v glab &>/dev/null && glab auth status &>/dev/null

# Azure DevOps
command -v az &>/dev/null && az devops configure --list &>/dev/null

If the CLI is not installed, inform the user and provide the install command:

  • GitHub: brew install gh / sudo apt install gh
  • GitLab: brew install glab / sudo apt install glab
  • Azure DevOps: az extension add --name azure-devops

Step 3: If detection fails

Use AskUserQuestion with options:

  • "GitHub (gh)"
  • "GitLab (glab)"
  • "Azure DevOps (az repos)"
  • "Other (I'll provide the commands)"

Command Reference

Create PR/MR

| Platform | Command | |----------|---------| | GitHub | gh pr create --title "..." --body "..." | | GitLab | glab mr create --title "..." --description "..." | | Azure DevOps | az repos pr create --title "..." --description "..." |

View PR/MR

| Platform | Command | |----------|---------| | GitHub | gh pr view [N] --json title,body,state,comments | | GitLab | glab mr view [N] | | Azure DevOps | az repos pr show --id [N] |

Comment on PR/MR

| Platform | Command | |----------|---------| | GitHub | gh pr comment [N] --body "..." | | GitLab | glab mr note [N] --message "..." | | Azure DevOps | az repos pr set-vote --id [N] (or API for comments) |

Get PR/MR diff

| Platform | Command | |----------|---------| | GitHub | gh pr diff [N] | | GitLab | glab mr diff [N] | | Azure DevOps | az repos pr diff --id [N] |

View issue

| Platform | Command | |----------|---------| | GitHub | gh issue view [N] --json title,body,comments | | GitLab | glab issue view [N] | | Azure DevOps | az boards work-item show --id [N] |

Review PR/MR

| Platform | Command | |----------|---------| | GitHub | gh pr review [N] --comment --body "..." | | GitLab | glab mr approve [N] / glab mr note [N] | | Azure DevOps | az repos pr set-vote --id [N] --vote approve |

List PRs/MRs

| Platform | Command | |----------|---------| | GitHub | gh pr list | | GitLab | glab mr list | | Azure DevOps | az repos pr list |

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.