The skills install from the GitHub repo contenthero-ai/skills, not from npm. The repo path is the identifier.
Option 1: gh skill install (most portable)
With GitHub CLI v2.90+, this writes to the right directory for your agent automatically:
Option 2: git clone
Clone into your agent’s skills directory.
After cloning, the three skills are auto-discovered at contenthero-generate/SKILL.md, contenthero-pipeline/SKILL.md, and contenthero-brand/SKILL.md.
Option 3: the paste-prompt one-liner
The casual path. Paste this to your agent and it installs and grounds itself:
The agent fetches the install spec, wires a transport, grounds on your brand kit, and offers a free cost-preview smoke test.
Authenticate
The skills pick up whichever transport is wired. Detected in order:
- MCP (OAuth) if ContentHero MCP tools are visible. Connect the hosted server (see MCP). No key handling.
- CLI (API key) otherwise.
npm install -g @contenthero/cli then contenthero login.
Never paste your API key into an agent chat. Use contenthero login (browser-assisted) or the CONTENTHERO_API_KEY environment variable. The skill picks the key up from the CLI or the OAuth session.
Update
Or re-run gh skill install. Installed skills are a frozen snapshot, so they update only when you pull.