smithery/agentuity

agentuity-cli-git-link

Link a project to a GitHub repository. Requires authentication

Installation

$ npx skills add smithery/agentuity --skill agentuity-cli-git-link

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/agentuity · top by installs.

npx skills add smithery/agentuity

Browse all from smithery/agentuity

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.1.24
LicenseApache-2.0
Allowed toolsBash(agentuity:*)
More metadata
command
agentuity git link
tags
mutating creates-resource

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,284 B
  • docs SUMMARY.md 92 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Git Link

Link a project to a GitHub repository

Prerequisites

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

Usage

agentuity git link [options]

Options

Option Type Required Default Description
--repo string Yes - Repository full name (owner/repo) to link
--deploy boolean Yes - Enable automatic deployments on push (default: true)
--preview boolean Yes - Enable preview deployments on pull requests (default: true)
--branch string Yes - Branch to deploy from (default: repo default branch)
--root string Yes - Root directory containing agentuity.json (default: .)
--confirm boolean Yes - Skip confirmation prompts

Examples

Link current project to a GitHub repository:

bunx @agentuity/cli git link

Link to a specific repo non-interactively:

bunx @agentuity/cli git link --repo owner/repo --branch main --confirm

Link from the current directory:

bunx @agentuity/cli git link --root .

Link to a specific branch:

bunx @agentuity/cli git link --branch main

Enable preview deployments on PRs:

bunx @agentuity/cli git link --preview true

Disable automatic deployments on push:

bunx @agentuity/cli git link --deploy false

Link a subdirectory in a monorepo:

bunx @agentuity/cli git link --root packages/my-agent

Link and return JSON result:

bunx @agentuity/cli --json git link --repo owner/repo --branch main --confirm

Output

Returns JSON object:

{
  "linked": "boolean",
  "repoFullName": "string",
  "branch": "string"
}
Field Type Description
linked boolean Whether the project was linked
repoFullName string Repository that was linked
branch string Branch configured