Antigravity Awesome Skills
raw JSON → 10.6.0 verified Sat Apr 25 auth: no javascript
A vast installable skill library (1,435+ SKILL.md playbooks) for AI coding assistants including Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and others. Version 10.6.0 (April 2026). Released rapidly with 10+ minor versions per month. Differentiators: npx installer for local setup, cross-tool compatibility, role-based bundles, and workflow-driven execution. Not a prompt collection but a structured agent instruction catalog. 35k+ GitHub stars.
Common errors
error Error [ERR_MODULE_NOT_FOUND]: Cannot find module 'antigravity-awesome-skills' ↓
cause Using CommonJS require() with an ESM-only package.
fix
Change to ESM: add
"type": "module" in package.json and use import { installCommand } from 'antigravity-awesome-skills'. error TypeError: antigravity_awesome_skills is not a function ↓
cause Default import used, but default export was removed in v10.0.0.
fix
Use named import:
import { installCommand } from 'antigravity-awesome-skills'. error Error: EACCES: permission denied, mkdir '/home/user/.antigravity' ↓
cause npx installer lacks write permission to the skill target directory.
fix
Run with
sudo (not recommended) or change ownership of ~/.antigravity: sudo chown -R $(whoami) ~/.antigravity. error npx: command not found: antigravity-awesome-skills ↓
cause Package not published or npm registry issues.
fix
Ensure you are using the correct package name:
npx antigravity-awesome-skills@latest. Warnings
breaking Package is ESM-only since v10.0.0. CJS require() will throw a MODULE_NOT_FOUND error. ↓
fix Use ESM imports or dynamic import() for CJS projects.
breaking Default export removed in v10.0.0; previously 'antigravity-awesome-skills' exported a function directly. ↓
fix Use named imports like `import { installCommand } from 'antigravity-awesome-skills'`.
gotcha The npx install modifies local file system (writes skill files to ~/.antigravity/skills or equivalent). Ensure you have write permissions. ↓
fix Run with appropriate permissions or use `--dry-run` flag to preview changes.
deprecated The `--all-tools` flag was deprecated in v9.13.0 and removed in v10.0.0. ↓
fix Use `--tool` with a specific tool name, or omit to go through interactive selection.
gotcha Some skill files contain executable instructions; review before running in production environments. ↓
fix Audit skills after installation, especially those from community contributions.
Install
npm install antigravity-awesome-skills yarn add antigravity-awesome-skills pnpm add antigravity-awesome-skills Imports
- default (installer) wrong
npm install -g antigravity-awesome-skills && antigravity-awesome-skillscorrectnpx antigravity-awesome-skills - installCommand wrong
const installCommand = require('antigravity-awesome-skills').installCommandcorrectimport { installCommand } from 'antigravity-awesome-skills' - SkillManager wrong
import SkillManager from 'antigravity-awesome-skills'correctimport { SkillManager } from 'antigravity-awesome-skills' - type Skill
import type { Skill } from 'antigravity-awesome-skills' - listSkills wrong
import { listSkills } from 'antigravity-awesome-skills/lib/utils'correctimport { listSkills } from 'antigravity-awesome-skills'
Quickstart
// Install skills for Claude Code
// Run in terminal:
npx antigravity-awesome-skills@latest
// The CLI will prompt you to select your target tool (e.g., Claude Code, Cursor, Codex CLI)
// and install skill files into the appropriate directory.
// Programmatic usage (ESM only):
import { installCommand, listSkills } from 'antigravity-awesome-skills';
const skills = await listSkills({ tool: 'claude-code' });
console.log(`Found ${skills.length} skills for Claude Code`);
// Install a specific bundle:
await installCommand({ bundle: 'security-review', tool: 'claude-code' });