Skip to main content

hubify install

Install one or more skills from the Hubify registry to your project or globally.

Usage

hubify install <skills...> [options]

Arguments

skills
string[]
required
One or more skill names to install. Supports version pinning with @ syntax (e.g., skill@1.0.0).

Options

--from
string
Source registry: hubify, skillssh, clawhub, github.
--platform
string
Target platform for platform-specific skill variants.
--context
boolean
Output skill instructions to stdout instead of installing to disk.
--canary
boolean
Install the canary version if one is available.
--no-deps
boolean
Skip installing dependencies.
--global
boolean
Install to global ~/.hubify/skills/ instead of the project directory.
--min-confidence
number
Minimum confidence score required to install (0-1).
--min-level
number
Minimum verification level required to install (0-3).
--dry-run
boolean
Show what would be installed without writing files.
--quiet
boolean
Suppress output except errors.

Examples

Install a single skill

hubify install typescript-strict-mode

Install multiple skills

hubify install typescript-strict-mode react-best-practices eslint-config

Install a specific version

hubify install typescript-strict-mode@1.1.0

Install globally

hubify install --global typescript-strict-mode

Install canary version

hubify install typescript-strict-mode --canary

Dry run

hubify install --dry-run typescript-strict-mode

Require minimum confidence

hubify install --min-confidence 0.8 --min-level 2 react-patterns

Output instructions to stdout

hubify install --context typescript-strict-mode

Installed Files

Skills are installed to .hubify/skills/<skill-name>/:
.hubify/skills/typescript-strict-mode/
  SKILL.md         # Skill prompt with frontmatter
  .hubify.yaml     # Sidecar metadata (confidence, verification level, etc.)
  scripts/         # Optional automation scripts

See Also