Agent Skills for the Internet Development Studio Company open source tools. These skills teach AI agents how to build with INTDEV's stack — from scaffolding a new project with nextjs-sass-starter to deploying it on Render.
| Skill | Description |
|---|---|
| nextjs-sass-starter | Scaffold and build projects using INTDEV's full Next.js + SASS + TypeScript template |
| nextjs-sass-base | Scaffold minimal projects with the lightweight Next.js + SASS base template |
| sacred-computer | Build UIs with SRCL React components and terminal aesthetics |
| server-mono | Set up and use Server Mono, INTDEV's open-source monospace typeface |
| intdev-brand-guidelines | Apply INTDEV's visual identity — colors, themes, typography, SVG logos |
| intdev-api | Integrate with api.internet.dev for auth, payments, data, and organizations |
| intdev-deployment | Deploy and maintain INTDEV websites on Render, Vercel, and AWS |
| intdev-accessibility | Build WCAG 2.1 AA compliant interfaces following INTDEV's approach |
| daedalus | Plan and orchestrate work with the Daedalus CLI and Talos daemon |
The easiest way to install a skill is to give your agent the link and ask it to set it up. For example:
Install this skill into my project: https://github.com/internet-development/skills/tree/main/skills/server-mono
Your agent will fetch the SKILL.md, create the directory, and place it in the right location.
Use the Vercel Skills CLI to install skills to any supported agent — Claude Code, OpenCode, Codex, Cursor, and 35+ more:
# Interactive — browse and select skills and agents
npx skills add internet-development/skills
# Install specific skills
npx skills add internet-development/skills --skill server-mono --skill sacred-computer
# Install to a specific agent
npx skills add internet-development/skills --skill server-mono -a claude-code
# Install globally (available across all projects)
npx skills add internet-development/skills --skill server-mono -g
# Install all skills to all detected agents without prompts
npx skills add internet-development/skills --all
# List available skills without installing
npx skills add internet-development/skills --listEach skill is a self-contained folder. Download just the ones you need directly into your project or global skills directory:
# Download a single skill into your project
curl -sL https://raw.githubusercontent.com/internet-development/skills/main/skills/server-mono/SKILL.md \
--create-dirs -o .claude/skills/server-mono/SKILL.md
# Or download to your global skills (applies to all projects)
curl -sL https://raw.githubusercontent.com/internet-development/skills/main/skills/server-mono/SKILL.md \
--create-dirs -o ~/.claude/skills/server-mono/SKILL.mdThis works with Claude Code (.claude/skills/), OpenCode (.opencode/skills/), and any tool that supports the Agent Skills specification.
For skills with reference files (like sacred-computer), extract the folder from the repo tarball:
curl -sL https://github.com/internet-development/skills/archive/refs/heads/main.tar.gz \
| tar xz --strip-components=2 skills-main/skills/sacred-computer
mv sacred-computer .claude/skills/Install everything at once via the Claude Code plugin marketplace:
/plugin marketplace add internet-development/skills
/plugin install intdev-tools@intdev-skills
/plugin install intdev-ops@intdev-skills
Skills are grouped into two bundles:
intdev-tools— nextjs-sass-starter, nextjs-sass-base, sacred-computer, server-mono, intdev-brand-guidelines, intdev-apiintdev-ops— intdev-deployment, intdev-accessibility, daedalus
Use the template as a starting point. See the Agent Skills specification for the full format reference.
All skills in this repository are open source under the MIT License. Built by the team at Internet Development Studio Company in Seattle, Washington.