Registry /
llm-agents / antigravity-awesome-skills
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
muslnode 18–226 runs
build_error
glibcnode 18–226 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' });
Errors
Common errors & fixes
Error [ERR_MODULE_NOT_FOUND]: Cannot find module 'antigravity-awesome-skills'
Using CommonJS require() with an ESM-only package.
fixChange 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.
fixUse 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.
fixRun 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.
fixEnsure you are using the correct package name: `npx antigravity-awesome-skills@latest`.
Audit
Dependencies
noderequiredRequired to run npx installer