Apps
No apps available yet.
Platform

Services

Your access

You are not signed in. Some apps may require authentication.

Sign in with Authentik →
Agent Skills Registry

Machine-readable skills installable into AI coding agents. Each skill is a plain Markdown file fetched directly by the agent.

create-static-app
Create and register a new static app on apps.pop.ski. Use when building a new static site, internal tool, dashboard, or landing page for the platform.
https://apps.pop.ski/skills/create-static-app/SKILL.md
registry-schema
Reference for registry.yaml — the metadata and access control file every app on apps.pop.ski must include. Use when creating or editing an app's registry.yaml.
https://apps.pop.ski/skills/registry-schema/SKILL.md
use-data-api
Read and write persistent app data using the KV API at apps.pop.ski. Use when building static apps that need server-side storage — shopping lists, settings, counters, user notes.
https://apps.pop.ski/skills/use-data-api/SKILL.md

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.

Manual install — Claude Code

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
Manual install — OpenCode

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
Manual install — Cursor / Windsurf / others

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