Services
Machine-readable skills installable into AI coding agents. Each skill is a plain Markdown file fetched directly by the agent.
Install all skills — works with Claude Code, OpenCode, Cursor, Copilot, and 30+ agents
npx skills add https://apps.pop.ski
Keep skills up-to-date as new ones are added:
npx skills update
The skills CLI places each SKILL.md in the right directory for your active agent automatically. Manual alternatives below.
In a Claude Code session, use the Skill tool with the raw URL:
/skill https://apps.pop.ski/skills/<name>/SKILL.md
To auto-load on every session, add to your project's CLAUDE.md:
skill: https://apps.pop.ski/skills/<name>/SKILL.md
OpenCode discovers skills from ~/.config/opencode/skills/ (global) or .opencode/skills/ (per-project):
mkdir -p ~/.config/opencode/skills/<name> curl -s https://apps.pop.ski/skills/<name>/SKILL.md \ -o ~/.config/opencode/skills/<name>/SKILL.md
Download the SKILL.md and add to your agent's rules directory:
curl -s https://apps.pop.ski/skills/<name>/SKILL.md \ > .cursor/rules/<name>.md