Install via npx
The recommended way to install:
npx skills add sk-code-01/simplehost-skill --skill simplehost -g
The -g flag installs globally (available in all projects). Omit it for a project-local install.
Manual Install
If npx skills add doesn’t work, you can install manually:
Claude Code
mkdir -p ~/.claude/skills/simplehost
curl -fsSL https://raw.githubusercontent.com/sk-code-01/simplehost-skill/main/skills/simplehost/SKILL.md \
-o ~/.claude/skills/simplehost/SKILL.md
Cursor
mkdir -p .cursor/skills/simplehost
curl -fsSL https://raw.githubusercontent.com/sk-code-01/simplehost-skill/main/skills/simplehost/SKILL.md \
-o .cursor/skills/simplehost/SKILL.md
Verify Installation
Start a new Claude Code session and type:
If the skill is installed, Claude will activate it and ask what you want to publish.
Set Your API Key
For permanent publishing, set your API key as an environment variable:
export SIMPLEHOST_API_KEY="sh_live_your_key_here"
Add it to your shell profile (~/.zshrc or ~/.bashrc) to persist across sessions:
echo 'export SIMPLEHOST_API_KEY="sh_live_your_key_here"' >> ~/.zshrc
Don’t have an API key? The skill will guide you through the authentication flow on first use. Just say “publish this” and follow the prompts.
Requirements
The skill uses publish.sh which requires:
curl — Pre-installed on macOS and most Linux
jq — Pre-installed on macOS. Install on Linux: sudo apt install jq
Uninstall
Global
npx skills remove simplehost -g
Manual
rm -rf ~/.claude/skills/simplehost