Reusable agent skills from Project Spark at Hyperjump. They give agents shared instructions and toolkits so work stays consistent across repos. Packaging follows the ecosystem around vercel-labs/skills. Install into editors and assistants with npx skills add hyperjumptech/spark-skills (examples below).
| Skill | Description |
|---|---|
create-landing-page |
Research-backed SaaS landing workflow and Astro scaffold (Tailwind + TypeScript). |
From any directory, use npx skills against this repo (hyperjumptech/spark-skills).
Cursor: project installs use paths such as <repo>/.agents/skills/. Global installs use ~/.cursor/skills/:
# Project scope
npx skills add hyperjumptech/spark-skills -a cursor -y
# Global
npx skills add hyperjumptech/spark-skills -g -a cursor -y
# Only one skill
npx skills add hyperjumptech/spark-skills --skill create-landing-page -a cursor -yClaude Code: project installs use <repo>/.claude/skills/. Global installs use ~/.claude/skills/:
# Project scope
npx skills add hyperjumptech/spark-skills -a claude-code -y
# Global
npx skills add hyperjumptech/spark-skills -g -a claude-code -y
# Only one skill
npx skills add hyperjumptech/spark-skills --skill create-landing-page -a claude-code -ynpx skills list
npx skills remove create-landing-pageFor Codex, OpenCode, GitHub Copilot, Windsurf, and the rest of the supported agents, plus flags like --skill, --global, and symlink vs copy, see the vercel-labs/skills README. It includes the Supported Agents table and full install options.
To test changes locally without relying on GitHub hosting, install from a clone:
git clone git@github.com:hyperjumptech/spark-skills.git
cd spark-skills
npx skills add ./To iterate on skills from this checkout without reinstalling copies, symlink a skill directory under skills/<name>/ into the agent global folder. Replace /path/to/spark-skills with your clone path. Remove any existing real directory at the link destination first if you previously ran a non-symlink install.
ln -sf /path/to/spark-skills/skills/create-landing-page ~/.cursor/skills/create-landing-pageln -sf /path/to/spark-skills/skills/create-landing-page ~/.claude/skills/create-landing-pageRepeat with another skill name when you maintain more than one. For project-local targets, symlink into the paths that project expects (often .agents/skills/ for Cursor and .claude/skills/ for Claude Code). Agent paths are listed under Supported Agents in the vercel-labs/skills README.
Brought to you by the team of Project Spark at Hyperjump.