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.mdsource 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" }
| Field | Type | Description |
|---|---|---|
| string | Organization ID |
| boolean | Whether GitHub is connected to the org |
| array | Connected GitHub accounts |
| string | Project ID |
| boolean | Whether the project is linked to a repo |
| string | Full repository name |
| string | Branch |
| string | Directory |
| boolean | Auto-deploy enabled |
| boolean | Preview deploys enabled |