Documentation Index
Fetch the complete documentation index at: https://docs.simplehost.dev/llms.txt
Use this file to discover all available pages before exploring further.
Quick Install (recommended)
curl -fsSL https://simplehost.dev/install.sh | bash
Works instantly — no npm needed. Installs for Claude Code and all supported agents.
If you already installed SimpleHost before, run the same command again any time to refresh to the latest version of the skill.
Install via npx
npx skills add sk-code-01/simplehost-skill -g -y
The -g flag installs globally (available in all projects). The -y flag skips prompts.
If you already installed the skill with npx, running the same command again will refresh it.
Manual Install
If neither method works, you can install manually:
Claude Code
mkdir -p ~/.claude/skills/simplehost
curl -fsSL https://simplehost.dev/SKILL.md \
-o ~/.claude/skills/simplehost/SKILL.md
Cursor
mkdir -p .cursor/skills/simplehost
curl -fsSL https://simplehost.dev/SKILL.md \
-o .cursor/skills/simplehost/SKILL.md
Manual installs can also be refreshed later by downloading https://simplehost.dev/SKILL.md again to the same location.
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.
Newer versions of the SimpleHost skill also check https://simplehost.dev/skill-version and can prompt the agent to refresh when an update is available.
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