hubspot-admin-skills
Claude Code skills for auditing, cleaning, enriching, and automating your HubSpot CRM
File Explorer
- marketplace.json
- plugin.json
- hero.png
- seo-site-plan.md
- add-component.md
- add-page.md
- styling.md
- config-schema.json
- extensions.json
- launch.json
- settings.json
- f41ca645b721f4cd05c8a3357ed52561.txt
- robots.txt
- indexnow-ping.mjs
- postbuild-headers.mjs
- apple-touch-icon.png
- favicon.ico
- favicon.svg
- default.png
- tailwind.css
- Analytics.astro
- ApplyColorMode.astro
- BasicScripts.astro
- CommonMeta.astro
- Image.astro
- Metadata.astro
- SiteVerification.astro
- SocialShare.astro
- SplitbeeAnalytics.astro
- ToggleMenu.astro
- ToggleTheme.astro
- AgentSurfaces.astro
- AuditReport.astro
- ContributionLoop.astro
- SafetyPipeline.astro
- Button.astro
- Form.astro
- Headline.astro
- Timeline.astro
- WidgetWrapper.astro
- Announcement.astro
- Brands.astro
- CallToAction.astro
- Contact.astro
- Content.astro
- FAQs.astro
- Features.astro
- Features2.astro
- Features3.astro
- Footer.astro
- Header.astro
- Hero.astro
- Hero2.astro
- HeroText.astro
- Note.astro
- Pricing.astro
- Stats.astro
- Steps.astro
- Steps2.astro
- Testimonials.astro
- CustomStyles.astro
- Favicons.astro
- Logo.astro
- SkillCard.astro
- StructuredData.astro
- categories.ts
- problems.ts
- LandingLayout.astro
- Layout.astro
- MarkdownLayout.astro
- PageLayout.astro
- skills.ts
- structuredData.ts
- skills.json.ts
- [slug].astro
- [...path].png.ts
- [slug].astro
- index.astro
- [...script].ts
- [slug].astro
- [slug].md.ts
- index.astro
- 404.astro
- contributing.astro
- index.astro
- install.astro
- llms-full.txt.ts
- llms.txt.ts
- directories.ts
- frontmatter.ts
- images.ts
- permalinks.ts
- utils.ts
- config.yaml
- content.config.ts
- env.d.ts
- navigation.ts
- types.d.ts
- configBuilder.ts
- loadConfig.ts
- index.ts
- types.d.ts
- README.md
- .editorconfig
- .gitignore
- .prettierignore
- .prettierrc.mjs
- astro.config.ts
- eslint.config.js
- LICENSE.md
- package-lock.json
- package.json
- README.md
- tsconfig.json
- vscode.tailwind.json
- after.py
- before.py
- execute.py
- SKILL.md
- SKILL.md
- SKILL.md
- after.py
- before.py
- execute.py
- SKILL.md
- SKILL.md
- execute.py
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- after.py
- before.py
- execute.py
- SKILL.md
- SKILL.md
- after.py
- before.py
- execute.py
- SKILL.md
- after.py
- before.py
- execute.py
- SKILL.md
- after.py
- before.py
- SKILL.md
- after.py
- before.py
- SKILL.md
- after.py
- before.py
- execute.py
- SKILL.md
- audit_portal.py
- SKILL.md
- SKILL.md
- after.py
- before.py
- execute.py
- SKILL.md
- before.py
- SKILL.md
- after.py
- before.py
- execute.py
- SKILL.md
- SKILL.md
- after.py
- before.py
- execute.py
- SKILL.md
- SKILL.md
- sandbox-self-test.yml
- preflight.py
- run_suite.py
- seed.py
- teardown.py
- SKILL.md
- after.py
- before.py
- execute.py
- SKILL.md
- after.py
- before.py
- SKILL.md
- after.py
- before.py
- SKILL.md
- after.py
- before.py
- SKILL.md
- __init__.py
- _template.py
- apollo.py
- dropcontact.py
- fullenrich.py
- hunter.py
- mock.py
- after.py
- before.py
- execute.py
- SKILL.md
- SKILL.md
- export.py
- restore.py
- SKILL.md
- .gitignore
- CHANGELOG.md
- CLAUDE.md
- CONTRIBUTING.md
- LICENSE
- netlify.toml
- README.md
# Use via CDN
jsDelivrjsDelivr 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 ▼
gh pr create
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 ▼
gh repo
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 ▼
git checkout
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 ▼
git clone
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 ▼
uv run
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:
