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.

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.
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.
npm install antigravity-awesome-skills
yarn add antigravity-awesome-skills
pnpm add antigravity-awesome-skills

Install the skill library via npx and demonstrate programmatic usage with ESM imports.

// 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' });