hoziron skill

Manage skills — install, list, search, and remove tools that agents use.

Synopsis

hoziron skill <subcommand> [options]

Subcommands

SubcommandDescription
install <source>Install a skill from catalog, path, or git URL
listList installed skills
remove <name>Remove an installed skill
search <query>Search the catalog for skills

hoziron skill install

Install from multiple sources.

hoziron skill install <source>

Examples

# From catalog (by name)
$ hoziron skill install document-ocr
✓ Installed document-ocr@1.4.0

# From local directory
$ hoziron skill install ./my-skills/custom-tool/
✓ Installed custom-tool (local)

# From git URL
$ hoziron skill install https://github.com/company/hoziron-pdf-skill.git
✓ Installed pdf-skill@0.2.0 (from git)

hoziron skill list

$ hoziron skill list
NAME                   VERSION  SOURCE    USED BY
document-ocr           1.4.0    catalog   claims-intake
postgresql-connector   2.1.0    catalog   claims-intake, policy-lookup
email-skill            1.3.0    catalog   claims-intake
custom-tool            local    local     —
git-skill              0.5.0    git       code-review

hoziron skill remove

$ hoziron skill remove custom-tool
✓ Removed skill 'custom-tool'

# Error: skill in use
$ hoziron skill remove document-ocr
✗ Cannot remove 'document-ocr': required by active competency 'claims-intake'
  Deactivate the competency first: hoziron competency deactivate claims-intake

$ hoziron skill search "database"
NAME                   VERSION  DESCRIPTION
postgresql-connector   2.1.0    PostgreSQL query and schema tools
mysql-connector        1.3.0    MySQL/MariaDB connector
mssql-connector        1.1.0    Microsoft SQL Server connector
sqlite-tool            1.0.0    Local SQLite file operations
redis-connector        0.9.0    Redis key-value store connector

Skills vs Integrations

  • Skills are declarative tool definitions (what the tool does, its parameters)
  • Integrations are runtime processes that implement the tools (MCP servers)

A skill may depend on an integration being running. Check with:

hoziron integration status postgresql-connector

See Also