Registry / llm-agents / antigravity-awesome-skills

antigravity-awesome-skills

JSON →
library10.6.0jsnpmunverified

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.

npm install antigravity-awesome-skills
INSTALL
IMPORT
SIG · ANTIGRAVITY-AWESOM
A
antigravity-awesome-skills
llm-agentsjavascriptv10.6.0
Install
Import
Disk
Pass rate
0/ 6
Env Coverage0 / 6
glibc
1822
musl
1822
Install & Compatibility
Where this runs
tested against v? · npm install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
node 18226 runs
build_error
glibc
node 18226 runs
build_error
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

default (installer)
npx antigravity-awesome-skills
npm install -g antigravity-awesome-skills && antigravity-awesome-skills
Use npx to run the installer directly without global install. The package is primarily used as a CLI installer, not a library import.
installCommand
import { installCommand } from 'antigravity-awesome-skills'
const installCommand = require('antigravity-awesome-skills').installCommand
Package is ESM-only since v10.0.0; CJS require will not work.
SkillManager
import { SkillManager } from 'antigravity-awesome-skills'
import SkillManager from 'antigravity-awesome-skills'
SkillManager is a named export, not default.
type Skill
import type { Skill } from 'antigravity-awesome-skills'
TypeScript users should use import type for type-only imports to avoid runtime overhead.
listSkills
import { listSkills } from 'antigravity-awesome-skills'
import { listSkills } from 'antigravity-awesome-skills/lib/utils'
Internal paths are not public API; use the package root entry.

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' });
Debug
Known issues
breakingPackage 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.
affects: >=10.0.0
breakingDefault 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'`.
affects: >=10.0.0
gotchaThe 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.
affects: *
deprecatedThe `--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.
affects: >=10.0.0
gotchaSome skill files contain executable instructions; review before running in production environments.
fix
Audit skills after installation, especially those from community contributions.
affects: *
Errors
Common errors & fixes
Error [ERR_MODULE_NOT_FOUND]: Cannot find module 'antigravity-awesome-skills'
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'`.
TypeError: antigravity_awesome_skills is not a function
Default import used, but default export was removed in v10.0.0.
fix
Use named import: `import { installCommand } from 'antigravity-awesome-skills'`.
Error: EACCES: permission denied, mkdir '/home/user/.antigravity'
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`.
npx: command not found: antigravity-awesome-skills
Package not published or npm registry issues.
fix
Ensure you are using the correct package name: `npx antigravity-awesome-skills@latest`.
Upgrade
Version history
10.6.0latest on npm
Audit
Dependencies
noderequiredRequired to run npx installer
Agent activity
28 hits · last 30 days
node
24
OpenAI (training)
1
Resources
antigravity-awesome-skills — npm install antigravity-awesome-skills · libregistry