Claude-skill-registry agentuity-cli-git-status

Show GitHub connection status for current project. Requires authentication

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/agentuity-cli-git-status" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-git-status && rm -rf "$T"
manifest: skills/data/agentuity-cli-git-status/SKILL.md
source content

Git Status

Show GitHub connection status for current project

Prerequisites

  • Authenticated with
    agentuity auth login
  • Project context required (run from project directory or use
    --project-id
    )

Usage

agentuity git status

Examples

Show GitHub status for current project:

bunx @agentuity/cli git status

Get status in JSON format:

bunx @agentuity/cli --json git status

Output

Returns JSON object:

{
  "orgId": "string",
  "connected": "boolean",
  "integrations": "array",
  "projectId": "string",
  "linked": "boolean",
  "repoFullName": "string",
  "branch": "string",
  "directory": "string",
  "autoDeploy": "boolean",
  "previewDeploy": "boolean"
}
FieldTypeDescription
orgId
stringOrganization ID
connected
booleanWhether GitHub is connected to the org
integrations
arrayConnected GitHub accounts
projectId
stringProject ID
linked
booleanWhether the project is linked to a repo
repoFullName
stringFull repository name
branch
stringBranch
directory
stringDirectory
autoDeploy
booleanAuto-deploy enabled
previewDeploy
booleanPreview deploys enabled