Files
antigravity-skills-reference/package.json
sck_0 4b2cfa91be Merge pull request #150 from zinzied/main - Enhanced User Experience
Features integrated:
- Stars Feature: Community-driven skill discovery with upvotes
- Auto-Update: Automatic skill updates via START_APP.bat (Git + PowerShell fallback)
- Interactive Prompt Builder: Context-aware prompt construction
- Date Tracking: Added date_added field to all skills
- Auto-Categorization: Smart category assignment based on keywords
- Enhanced UI: Risk level badges, date display, category stats

Conflicts resolved:
- START_APP.bat: Merged enhanced auto-update logic
- README.md: Kept v6.4.1 with new feature documentation
- Home.jsx: Combined fuzzy search + pagination + stars
- SkillDetail.jsx: Merged syntax highlighting + stars + date badges

All 950+ skills updated with date tracking and proper categorization.

Made-with: Cursor
2026-02-27 09:14:48 +01:00

46 lines
1.7 KiB
JSON

{
"name": "antigravity-awesome-skills",
"version": "6.4.1",
"description": "900+ agentic skills for Claude Code, Gemini CLI, Cursor, Antigravity & more. Installer CLI.",
"license": "MIT",
"scripts": {
"validate": "python3 scripts/validate_skills.py",
"validate:strict": "python3 scripts/validate_skills.py --strict",
"index": "python3 scripts/generate_index.py",
"readme": "python3 scripts/update_readme.py",
"chain": "npm run validate && npm run index && npm run readme",
"catalog": "node scripts/build-catalog.js",
"build": "npm run chain && npm run catalog",
"test": "node scripts/tests/validate_skills_headings.test.js && python3 scripts/tests/test_validate_skills_headings.py && python3 scripts/tests/inspect_microsoft_repo.py && python3 scripts/tests/test_comprehensive_coverage.py",
"sync:microsoft": "python3 scripts/sync_microsoft_skills.py",
"sync:all-official": "npm run sync:microsoft && npm run chain",
"update:skills": "python3 scripts/generate_index.py && copy skills_index.json web-app/public/skills.json",
"app:setup": "node scripts/setup_web.js",
"app:install": "cd web-app && npm install",
"app:dev": "npm run app:setup && cd web-app && npm run dev",
"app:build": "npm run app:setup && cd web-app && npm run build",
"app:preview": "cd web-app && npm run preview"
},
"devDependencies": {
"yaml": "^2.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sickn33/antigravity-awesome-skills.git"
},
"bin": {
"antigravity-awesome-skills": "bin/install.js"
},
"files": [
"bin"
],
"keywords": [
"claude-code",
"cursor",
"gemini-cli",
"antigravity",
"agentic-skills",
"ai-coding"
]
}