hubspot-admin-skills

(★ 66)

Claude Code skills for auditing, cleaning, enriching, and automating your HubSpot CRM

File Explorer

  • .gitignore
  • CHANGELOG.md
  • CLAUDE.md
  • CONTRIBUTING.md
  • LICENSE
  • netlify.toml
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

gh pr create

View Details ▼

Manage GitHub pull requests.

gh pr {{[new|create]}}

Interactively create a pull request:

gh pr {{[new|create]}} {{[-f|--fill]}}

Create a pull request, determining the title and description from the commit messages of the current branch:

gh pr {{[new|create]}} {{[-d|--draft]}}

Create a draft pull request:

🔍

gh repo

View Details ▼

Work with GitHub repositories.

gh repo {{[new|create]}}

Create a new repository interactively:

gh repo clone {{owner}}/{{repository}}

Clone a repository:

gh repo fork {{owner}}/{{repository}} --clone

Fork and clone a repository:

🔍

git checkout

View Details ▼

Checkout a branch or paths to the working tree.

git checkout -b {{branch_name}}

Create and switch to a new branch:

git checkout -b {{branch_name}} {{reference}}

Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):

git checkout {{branch_name}}

Switch to an existing local branch:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

uv run

View Details ▼

Run a command or script in the project environment.

uv run {{path/to/script.py}}

Run a Python script:

uv run {{[-m|--module]}} {{module_name}}

Run a Python module:

uv run {{[-w|--with]}} {{package}} {{command}}

Run a command with additional packages installed temporarily:

// repository documentation