opencode-skills-antigravity 1.0.19 → 1.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundled-skills/.antigravity-install-manifest.json +1330 -0
- package/bundled-skills/akf-trust-metadata/SKILL.md +69 -0
- package/bundled-skills/docs/integrations/jetski-cortex.md +3 -3
- package/bundled-skills/docs/integrations/jetski-gemini-loader/README.md +1 -1
- package/bundled-skills/docs/maintainers/repo-growth-seo.md +3 -3
- package/bundled-skills/docs/maintainers/skills-update-guide.md +1 -1
- package/bundled-skills/docs/users/bundles.md +77 -1
- package/bundled-skills/docs/users/claude-code-skills.md +7 -1
- package/bundled-skills/docs/users/codex-cli-skills.md +7 -0
- package/bundled-skills/docs/users/faq.md +23 -0
- package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
- package/bundled-skills/docs/users/getting-started.md +10 -3
- package/bundled-skills/docs/users/kiro-integration.md +1 -1
- package/bundled-skills/docs/users/plugins.md +157 -0
- package/bundled-skills/docs/users/usage.md +14 -4
- package/bundled-skills/docs/users/visual-guide.md +4 -4
- package/bundled-skills/phase-gated-debugging/SKILL.md +70 -0
- package/bundled-skills/playwright-skill/SKILL.md +8 -3
- package/bundled-skills/saas-multi-tenant/SKILL.md +183 -0
- package/bundled-skills/threejs-animation/SKILL.md +13 -8
- package/bundled-skills/threejs-fundamentals/SKILL.md +44 -1
- package/bundled-skills/threejs-geometry/SKILL.md +30 -0
- package/bundled-skills/threejs-interaction/SKILL.md +12 -0
- package/bundled-skills/threejs-lighting/SKILL.md +3 -2
- package/bundled-skills/threejs-loaders/SKILL.md +21 -1
- package/bundled-skills/threejs-materials/SKILL.md +22 -0
- package/bundled-skills/threejs-postprocessing/SKILL.md +30 -9
- package/bundled-skills/threejs-shaders/SKILL.md +43 -0
- package/bundled-skills/threejs-skills/SKILL.md +103 -42
- package/bundled-skills/threejs-textures/SKILL.md +8 -0
- package/package.json +1 -1
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: akf-trust-metadata
|
|
3
|
+
description: "The AI native file format. EXIF for AI — stamps every file with trust scores, source provenance, and compliance metadata. Embeds into 20+ formats (DOCX, PDF, images, code). EU AI Act, SOX, HIPAA auditing."
|
|
4
|
+
risk: safe
|
|
5
|
+
source: community
|
|
6
|
+
date_added: "2026-03-27"
|
|
7
|
+
author: HMAKT99
|
|
8
|
+
tags:
|
|
9
|
+
- trust
|
|
10
|
+
- metadata
|
|
11
|
+
- provenance
|
|
12
|
+
- compliance
|
|
13
|
+
- file-format
|
|
14
|
+
- ai-native
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
# AKF — The AI Native File Format
|
|
18
|
+
|
|
19
|
+
Every photo has EXIF. Every song has ID3. AKF is the native metadata format for AI-generated content.
|
|
20
|
+
|
|
21
|
+
## When to Use
|
|
22
|
+
|
|
23
|
+
Use this skill when you need to stamp, inspect, or audit provenance and trust metadata on AI-generated or AI-modified files for compliance, review, or handoff workflows.
|
|
24
|
+
|
|
25
|
+
## After creating or modifying files
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
akf stamp <file> --agent <agent-name> --evidence "<what you did>"
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Evidence examples:
|
|
32
|
+
- "generated from user prompt"
|
|
33
|
+
- "refactored existing code"
|
|
34
|
+
- "tests pass"
|
|
35
|
+
- "docs reviewed"
|
|
36
|
+
|
|
37
|
+
## Before modifying existing files
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
akf read <file> # Check existing trust metadata
|
|
41
|
+
akf inspect <file> # See detailed trust scores
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Compliance auditing
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
akf audit <file> --regulation eu_ai_act # EU AI Act Article 50
|
|
48
|
+
akf audit <file> --regulation hipaa # HIPAA
|
|
49
|
+
akf audit <file> --regulation sox # SOX
|
|
50
|
+
akf audit <file> --regulation nist_ai # NIST AI RMF
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Classification
|
|
54
|
+
|
|
55
|
+
- `--label confidential` for finance/secret/internal paths
|
|
56
|
+
- `--label public` for README, docs, examples
|
|
57
|
+
- Default: `internal`
|
|
58
|
+
|
|
59
|
+
## Install
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
pip install akf
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Links
|
|
66
|
+
|
|
67
|
+
- https://akf.dev
|
|
68
|
+
- https://github.com/HMAKT99/AKF
|
|
69
|
+
- npm: `npm install akf-format`
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
---
|
|
2
2
|
title: Jetski/Cortex + Gemini Integration Guide
|
|
3
|
-
description: "Come usare antigravity-awesome-skills con Jetski/Cortex evitando l’overflow di contesto con 1.
|
|
3
|
+
description: "Come usare antigravity-awesome-skills con Jetski/Cortex evitando l’overflow di contesto con 1.331+ skill."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# Jetski/Cortex + Gemini: integrazione sicura con 1.
|
|
6
|
+
# Jetski/Cortex + Gemini: integrazione sicura con 1.331+ skill
|
|
7
7
|
|
|
8
8
|
Questa guida mostra come integrare il repository `antigravity-awesome-skills` con un agente basato su **Jetski/Cortex + Gemini** (o framework simili) **senza superare il context window** del modello.
|
|
9
9
|
|
|
@@ -23,7 +23,7 @@ Non bisogna mai:
|
|
|
23
23
|
- concatenare il contenuto di tutte le `SKILL.md` in un singolo system prompt;
|
|
24
24
|
- reiniettare l’intera libreria per **ogni** richiesta.
|
|
25
25
|
|
|
26
|
-
Con oltre 1.
|
|
26
|
+
Con oltre 1.331 skill, questo approccio riempie il context window prima ancora di aggiungere i messaggi dell’utente, causando l’errore di truncation.
|
|
27
27
|
|
|
28
28
|
---
|
|
29
29
|
|
|
@@ -20,7 +20,7 @@ This example shows one way to integrate **antigravity-awesome-skills** with a Je
|
|
|
20
20
|
- How to enforce a **maximum number of skills per turn** via `maxSkillsPerTurn`.
|
|
21
21
|
- How to choose whether to **truncate or error** when too many skills are requested via `overflowBehavior`.
|
|
22
22
|
|
|
23
|
-
This pattern avoids context overflow when you have 1,
|
|
23
|
+
This pattern avoids context overflow when you have 1,331+ skills installed.
|
|
24
24
|
|
|
25
25
|
---
|
|
26
26
|
|
|
@@ -6,7 +6,7 @@ This document keeps the repository's GitHub-facing discovery copy aligned with t
|
|
|
6
6
|
|
|
7
7
|
Preferred positioning:
|
|
8
8
|
|
|
9
|
-
> Installable GitHub library of 1,
|
|
9
|
+
> Installable GitHub library of 1,331+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and other AI coding assistants.
|
|
10
10
|
|
|
11
11
|
Key framing:
|
|
12
12
|
|
|
@@ -20,7 +20,7 @@ Key framing:
|
|
|
20
20
|
|
|
21
21
|
Preferred description:
|
|
22
22
|
|
|
23
|
-
> Installable GitHub library of 1,
|
|
23
|
+
> Installable GitHub library of 1,331+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.
|
|
24
24
|
|
|
25
25
|
Preferred homepage:
|
|
26
26
|
|
|
@@ -28,7 +28,7 @@ Preferred homepage:
|
|
|
28
28
|
|
|
29
29
|
Preferred social preview:
|
|
30
30
|
|
|
31
|
-
- use a clean preview image that says `1,
|
|
31
|
+
- use a clean preview image that says `1,331+ Agentic Skills`;
|
|
32
32
|
- mention Claude Code, Cursor, Codex CLI, and Gemini CLI;
|
|
33
33
|
- avoid dense text and tiny logos that disappear in social cards.
|
|
34
34
|
|
|
@@ -69,7 +69,7 @@ For manual updates, you need:
|
|
|
69
69
|
The update process refreshes:
|
|
70
70
|
- Skills index (`skills_index.json`)
|
|
71
71
|
- Web app skills data (`apps\web-app\public\skills.json`)
|
|
72
|
-
- All 1,
|
|
72
|
+
- All 1,331+ skills from the skills directory
|
|
73
73
|
|
|
74
74
|
## When to Update
|
|
75
75
|
|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
> **Important:** bundles are installable plugin subsets and activation presets, not invokable mega-skills such as `@web-wizard` or `/essentials-bundle`. Use the individual skills listed in the pack, install the bundle as a dedicated marketplace plugin, or use the activation scripts if you want only that bundle's skills active in your live Antigravity directory.
|
|
8
8
|
|
|
9
|
+
> **Plugin compatibility:** root plugins and bundle plugins only publish plugin-safe skills. If a bundle shows `pending hardening`, the skills still exist in the repository, but that bundle is not yet published for that target. `Requires manual setup` means the bundle is installable, but one or more included skills need an explicit setup step before first use.
|
|
10
|
+
|
|
9
11
|
## Quick Start
|
|
10
12
|
|
|
11
13
|
1. **Install the repository or bundle plugin:**
|
|
@@ -38,6 +40,8 @@ If you want a bundle to behave like a focused active subset instead of a full in
|
|
|
38
40
|
|
|
39
41
|
_For everyone. Install these first._
|
|
40
42
|
|
|
43
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
44
|
+
|
|
41
45
|
- [`concise-planning`](../../skills/concise-planning/): Always start with a plan.
|
|
42
46
|
- [`lint-and-validate`](../../skills/lint-and-validate/): Keep your code clean automatically.
|
|
43
47
|
- [`git-pushing`](../../skills/git-pushing/): Save your work safely.
|
|
@@ -53,6 +57,8 @@ _For everyone. Install these first._
|
|
|
53
57
|
|
|
54
58
|
_For pentesting, auditing, and hardening._
|
|
55
59
|
|
|
60
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
61
|
+
|
|
56
62
|
- [`ethical-hacking-methodology`](../../skills/ethical-hacking-methodology/): The Bible of ethical hacking.
|
|
57
63
|
- [`burp-suite-testing`](../../skills/burp-suite-testing/): Web vulnerability scanning.
|
|
58
64
|
- [`top-web-vulnerabilities`](../../skills/top-web-vulnerabilities/): OWASP-aligned vulnerability taxonomy.
|
|
@@ -65,6 +71,8 @@ _For pentesting, auditing, and hardening._
|
|
|
65
71
|
|
|
66
72
|
_For building secure applications._
|
|
67
73
|
|
|
74
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
75
|
+
|
|
68
76
|
- [`api-security-best-practices`](../../skills/api-security-best-practices/): Secure API design patterns.
|
|
69
77
|
- [`auth-implementation-patterns`](../../skills/auth-implementation-patterns/): JWT, OAuth2, session management.
|
|
70
78
|
- [`backend-security-coder`](../../skills/backend-security-coder/): Secure backend coding practices.
|
|
@@ -81,6 +89,8 @@ _For building secure applications._
|
|
|
81
89
|
|
|
82
90
|
_For building modern, high-performance web apps._
|
|
83
91
|
|
|
92
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
93
|
+
|
|
84
94
|
- [`frontend-design`](../../skills/frontend-design/): UI guidelines and aesthetics.
|
|
85
95
|
- [`react-best-practices`](../../skills/react-best-practices/): React & Next.js performance optimization.
|
|
86
96
|
- [`react-patterns`](../../skills/react-patterns/): Modern React patterns and principles.
|
|
@@ -93,6 +103,8 @@ _For building modern, high-performance web apps._
|
|
|
93
103
|
|
|
94
104
|
_For pixel-perfect experiences._
|
|
95
105
|
|
|
106
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
107
|
+
|
|
96
108
|
- [`ui-ux-pro-max`](../../skills/ui-ux-pro-max/): Premium design systems and tokens.
|
|
97
109
|
- [`frontend-design`](../../skills/frontend-design/): The base layer of aesthetics.
|
|
98
110
|
- [`3d-web-experience`](../../skills/3d-web-experience/): Three.js & React Three Fiber magic.
|
|
@@ -104,6 +116,8 @@ _For pixel-perfect experiences._
|
|
|
104
116
|
|
|
105
117
|
_For end-to-end web application development._
|
|
106
118
|
|
|
119
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
120
|
+
|
|
107
121
|
- [`senior-fullstack`](../../skills/senior-fullstack/): Complete fullstack development guide.
|
|
108
122
|
- [`frontend-developer`](../../skills/frontend-developer/): React 19+ and Next.js 15+ expertise.
|
|
109
123
|
- [`backend-dev-guidelines`](../../skills/backend-dev-guidelines/): Node.js/Express/TypeScript patterns.
|
|
@@ -120,6 +134,8 @@ _For end-to-end web application development._
|
|
|
120
134
|
|
|
121
135
|
_For building AI systems and autonomous agents._
|
|
122
136
|
|
|
137
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
138
|
+
|
|
123
139
|
- [`agent-evaluation`](../../skills/agent-evaluation/): Test and benchmark your agents.
|
|
124
140
|
- [`langgraph`](../../skills/langgraph/): Build stateful agent workflows.
|
|
125
141
|
- [`mcp-builder`](../../skills/mcp-builder/): Create your own MCP tools.
|
|
@@ -131,6 +147,8 @@ _For building AI systems and autonomous agents._
|
|
|
131
147
|
|
|
132
148
|
_For building production LLM applications._
|
|
133
149
|
|
|
150
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
151
|
+
|
|
134
152
|
- [`llm-app-patterns`](../../skills/llm-app-patterns/): Production-ready LLM patterns.
|
|
135
153
|
- [`rag-implementation`](../../skills/rag-implementation/): Retrieval-Augmented Generation.
|
|
136
154
|
- [`prompt-caching`](../../skills/prompt-caching/): Cache strategies for LLM prompts.
|
|
@@ -146,6 +164,8 @@ _For building production LLM applications._
|
|
|
146
164
|
|
|
147
165
|
_For building games with AI assistants._
|
|
148
166
|
|
|
167
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
168
|
+
|
|
149
169
|
- [`game-development/game-design`](../../skills/game-development/game-design/): Mechanics and loops.
|
|
150
170
|
- [`game-development/2d-games`](../../skills/game-development/2d-games/): Sprites and physics.
|
|
151
171
|
- [`game-development/3d-games`](../../skills/game-development/3d-games/): Models and shaders.
|
|
@@ -162,6 +182,8 @@ _For building games with AI assistants._
|
|
|
162
182
|
|
|
163
183
|
_For backend heavyweights and data scientists._
|
|
164
184
|
|
|
185
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
186
|
+
|
|
165
187
|
- [`python-pro`](../../skills/python-pro/): Master Python 3.12+ with modern features.
|
|
166
188
|
- [`python-patterns`](../../skills/python-patterns/): Idiomatic Python code.
|
|
167
189
|
- [`fastapi-pro`](../../skills/fastapi-pro/): High-performance async APIs.
|
|
@@ -174,6 +196,8 @@ _For backend heavyweights and data scientists._
|
|
|
174
196
|
|
|
175
197
|
_For modern web development._
|
|
176
198
|
|
|
199
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
200
|
+
|
|
177
201
|
- [`typescript-expert`](../../skills/typescript-expert/): TypeScript mastery and advanced types.
|
|
178
202
|
- [`javascript-pro`](../../skills/javascript-pro/): Modern JavaScript with ES6+.
|
|
179
203
|
- [`react-best-practices`](../../skills/react-best-practices/): React performance optimization.
|
|
@@ -184,6 +208,8 @@ _For modern web development._
|
|
|
184
208
|
|
|
185
209
|
_For low-level and performance-critical code._
|
|
186
210
|
|
|
211
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
212
|
+
|
|
187
213
|
- [`rust-pro`](../../skills/rust-pro/): Rust 1.75+ with async patterns.
|
|
188
214
|
- [`go-concurrency-patterns`](../../skills/go-concurrency-patterns/): Go concurrency mastery.
|
|
189
215
|
- [`golang-pro`](../../skills/golang-pro/): Go development expertise.
|
|
@@ -199,6 +225,8 @@ _For low-level and performance-critical code._
|
|
|
199
225
|
|
|
200
226
|
_For building products, not just code._
|
|
201
227
|
|
|
228
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
229
|
+
|
|
202
230
|
- [`product-manager-toolkit`](../../skills/product-manager-toolkit/): RICE prioritization, PRD templates.
|
|
203
231
|
- [`competitive-landscape`](../../skills/competitive-landscape/): Competitor analysis.
|
|
204
232
|
- [`competitor-alternatives`](../../skills/competitor-alternatives/): Create comparison pages.
|
|
@@ -210,6 +238,8 @@ _For building products, not just code._
|
|
|
210
238
|
|
|
211
239
|
_For data-driven decision making._
|
|
212
240
|
|
|
241
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
242
|
+
|
|
213
243
|
- [`business-analyst`](../../skills/business-analyst/): AI-powered analytics and KPIs.
|
|
214
244
|
- [`startup-metrics-framework`](../../skills/startup-metrics-framework/): SaaS metrics and unit economics.
|
|
215
245
|
- [`startup-financial-modeling`](../../skills/startup-financial-modeling/): 3-5 year financial projections.
|
|
@@ -220,6 +250,8 @@ _For data-driven decision making._
|
|
|
220
250
|
|
|
221
251
|
_For driving user acquisition and retention._
|
|
222
252
|
|
|
253
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
254
|
+
|
|
223
255
|
- [`content-creator`](../../skills/content-creator/): SEO-optimized marketing content.
|
|
224
256
|
- [`seo-audit`](../../skills/seo-audit/): Technical SEO health checks.
|
|
225
257
|
- [`programmatic-seo`](../../skills/programmatic-seo/): Create pages at scale.
|
|
@@ -236,6 +268,8 @@ _For driving user acquisition and retention._
|
|
|
236
268
|
|
|
237
269
|
_For infrastructure and scaling._
|
|
238
270
|
|
|
271
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
272
|
+
|
|
239
273
|
- [`docker-expert`](../../skills/docker-expert/): Master containers and multi-stage builds.
|
|
240
274
|
- [`aws-serverless`](../../skills/aws-serverless/): Serverless on AWS (Lambda, DynamoDB).
|
|
241
275
|
- [`kubernetes-architect`](../../skills/kubernetes-architect/): K8s architecture and GitOps.
|
|
@@ -248,6 +282,8 @@ _For infrastructure and scaling._
|
|
|
248
282
|
|
|
249
283
|
_For production reliability._
|
|
250
284
|
|
|
285
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
286
|
+
|
|
251
287
|
- [`observability-engineer`](../../skills/observability-engineer/): Comprehensive monitoring systems.
|
|
252
288
|
- [`distributed-tracing`](../../skills/distributed-tracing/): Track requests across microservices.
|
|
253
289
|
- [`slo-implementation`](../../skills/slo-implementation/): Service Level Objectives.
|
|
@@ -264,6 +300,8 @@ _For production reliability._
|
|
|
264
300
|
|
|
265
301
|
_For making sense of the numbers._
|
|
266
302
|
|
|
303
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
304
|
+
|
|
267
305
|
- [`analytics-tracking`](../../skills/analytics-tracking/): Set up GA4/PostHog correctly.
|
|
268
306
|
- [`claude-d3js-skill`](../../skills/claude-d3js-skill/): Beautiful custom visualizations with D3.js.
|
|
269
307
|
- [`sql-pro`](../../skills/sql-pro/): Modern SQL with cloud-native databases.
|
|
@@ -275,6 +313,8 @@ _For making sense of the numbers._
|
|
|
275
313
|
|
|
276
314
|
_For building data pipelines._
|
|
277
315
|
|
|
316
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
317
|
+
|
|
278
318
|
- [`data-engineer`](../../skills/data-engineer/): Data pipeline architecture.
|
|
279
319
|
- [`airflow-dag-patterns`](../../skills/airflow-dag-patterns/): Apache Airflow DAGs.
|
|
280
320
|
- [`dbt-transformation-patterns`](../../skills/dbt-transformation-patterns/): Analytics engineering.
|
|
@@ -290,6 +330,8 @@ _For building data pipelines._
|
|
|
290
330
|
|
|
291
331
|
_For visuals, content, and branding._
|
|
292
332
|
|
|
333
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
334
|
+
|
|
293
335
|
- [`canvas-design`](../../skills/canvas-design/): Generate posters and diagrams.
|
|
294
336
|
- [`frontend-design`](../../skills/frontend-design/): UI aesthetics.
|
|
295
337
|
- [`content-creator`](../../skills/content-creator/): SEO-optimized blog posts.
|
|
@@ -306,6 +348,8 @@ _For visuals, content, and branding._
|
|
|
306
348
|
|
|
307
349
|
_For breaking things before users do._
|
|
308
350
|
|
|
351
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
352
|
+
|
|
309
353
|
- [`test-driven-development`](../../skills/test-driven-development/): Red, Green, Refactor.
|
|
310
354
|
- [`systematic-debugging`](../../skills/systematic-debugging/): Debug like Sherlock Holmes.
|
|
311
355
|
- [`browser-automation`](../../skills/browser-automation/): End-to-end testing with Playwright.
|
|
@@ -323,6 +367,8 @@ _For breaking things before users do._
|
|
|
323
367
|
|
|
324
368
|
_For iOS, Android, and cross-platform apps._
|
|
325
369
|
|
|
370
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
371
|
+
|
|
326
372
|
- [`mobile-developer`](../../skills/mobile-developer/): Cross-platform mobile development.
|
|
327
373
|
- [`react-native-architecture`](../../skills/react-native-architecture/): React Native with Expo.
|
|
328
374
|
- [`flutter-expert`](../../skills/flutter-expert/): Flutter multi-platform apps.
|
|
@@ -333,6 +379,8 @@ _For iOS, Android, and cross-platform apps._
|
|
|
333
379
|
|
|
334
380
|
_For connecting services and building integrations._
|
|
335
381
|
|
|
382
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
383
|
+
|
|
336
384
|
- [`stripe-integration`](../../skills/stripe-integration/): Payments and subscriptions.
|
|
337
385
|
- [`twilio-communications`](../../skills/twilio-communications/): SMS, voice, WhatsApp.
|
|
338
386
|
- [`hubspot-integration`](../../skills/hubspot-integration/): CRM integration.
|
|
@@ -343,6 +391,8 @@ _For connecting services and building integrations._
|
|
|
343
391
|
|
|
344
392
|
_For system design and technical decisions._
|
|
345
393
|
|
|
394
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
395
|
+
|
|
346
396
|
- [`senior-architect`](../../skills/senior-architect/): Comprehensive software architecture.
|
|
347
397
|
- [`architecture-patterns`](../../skills/architecture-patterns/): Clean Architecture, DDD, Hexagonal.
|
|
348
398
|
- [`microservices-patterns`](../../skills/microservices-patterns/): Microservices architecture.
|
|
@@ -353,6 +403,8 @@ _For system design and technical decisions._
|
|
|
353
403
|
|
|
354
404
|
_For teams modeling complex domains and evolving toward evented systems._
|
|
355
405
|
|
|
406
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
407
|
+
|
|
356
408
|
- [`domain-driven-design`](../../skills/domain-driven-design/): Route DDD work from strategic modeling to implementation patterns.
|
|
357
409
|
- [`ddd-strategic-design`](../../skills/ddd-strategic-design/): Subdomains, bounded contexts, and ubiquitous language.
|
|
358
410
|
- [`ddd-context-mapping`](../../skills/ddd-context-mapping/): Cross-context integration and anti-corruption boundaries.
|
|
@@ -366,6 +418,8 @@ _For teams modeling complex domains and evolving toward evented systems._
|
|
|
366
418
|
|
|
367
419
|
_For connecting tools and building repeatable automated workflows._
|
|
368
420
|
|
|
421
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
422
|
+
|
|
369
423
|
- [`workflow-automation`](../../skills/workflow-automation/): Design durable automation flows for AI and business systems.
|
|
370
424
|
- [`mcp-builder`](../../skills/mcp-builder/): Create tool interfaces agents can use reliably.
|
|
371
425
|
- [`make-automation`](../../skills/make-automation/): Build automations in Make/Integromat.
|
|
@@ -378,6 +432,8 @@ _For connecting tools and building repeatable automated workflows._
|
|
|
378
432
|
|
|
379
433
|
_For revenue operations, support handoffs, and CRM-heavy automation._
|
|
380
434
|
|
|
435
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
436
|
+
|
|
381
437
|
- [`hubspot-automation`](../../skills/hubspot-automation/): Automate contacts, companies, deals, and tickets.
|
|
382
438
|
- [`sendgrid-automation`](../../skills/sendgrid-automation/): Automate email sends, contacts, and templates.
|
|
383
439
|
- [`zendesk-automation`](../../skills/zendesk-automation/): Automate support tickets and reply workflows.
|
|
@@ -390,6 +446,8 @@ _For revenue operations, support handoffs, and CRM-heavy automation._
|
|
|
390
446
|
|
|
391
447
|
_For monetization, payments, and commerce workflows._
|
|
392
448
|
|
|
449
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
450
|
+
|
|
393
451
|
- [`stripe-integration`](../../skills/stripe-integration/): Build robust checkout, subscription, and webhook flows.
|
|
394
452
|
- [`paypal-integration`](../../skills/paypal-integration/): Integrate PayPal payments and related flows.
|
|
395
453
|
- [`plaid-fintech`](../../skills/plaid-fintech/): Link bank accounts and handle ACH-related use cases.
|
|
@@ -401,6 +459,8 @@ _For monetization, payments, and commerce workflows._
|
|
|
401
459
|
|
|
402
460
|
_For teams building or operating around Odoo-based business systems._
|
|
403
461
|
|
|
462
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
463
|
+
|
|
404
464
|
- [`odoo-module-developer`](../../skills/odoo-module-developer/): Create custom Odoo modules cleanly.
|
|
405
465
|
- [`odoo-orm-expert`](../../skills/odoo-orm-expert/): Work effectively with Odoo ORM patterns and performance.
|
|
406
466
|
- [`odoo-sales-crm-expert`](../../skills/odoo-sales-crm-expert/): Optimize sales pipelines, leads, and forecasting.
|
|
@@ -413,6 +473,8 @@ _For teams building or operating around Odoo-based business systems._
|
|
|
413
473
|
|
|
414
474
|
_For building on Azure across cloud, AI, and platform services._
|
|
415
475
|
|
|
476
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
477
|
+
|
|
416
478
|
- [`azd-deployment`](../../skills/azd-deployment/): Ship Azure apps with Azure Developer CLI workflows.
|
|
417
479
|
- [`azure-functions`](../../skills/azure-functions/): Build serverless workloads with Azure Functions.
|
|
418
480
|
- [`azure-ai-openai-dotnet`](../../skills/azure-ai-openai-dotnet/): Use Azure OpenAI from .NET applications.
|
|
@@ -424,6 +486,8 @@ _For building on Azure across cloud, AI, and platform services._
|
|
|
424
486
|
|
|
425
487
|
_For shipping mobile apps with Expo and React Native._
|
|
426
488
|
|
|
489
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
490
|
+
|
|
427
491
|
- [`react-native-architecture`](../../skills/react-native-architecture/): Structure production React Native apps well.
|
|
428
492
|
- [`expo-api-routes`](../../skills/expo-api-routes/): Build API routes in Expo Router and EAS Hosting.
|
|
429
493
|
- [`expo-dev-client`](../../skills/expo-dev-client/): Build and distribute Expo development clients.
|
|
@@ -436,6 +500,8 @@ _For shipping mobile apps with Expo and React Native._
|
|
|
436
500
|
|
|
437
501
|
_For teams designing native-feeling Apple platform experiences._
|
|
438
502
|
|
|
503
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
504
|
+
|
|
439
505
|
- [`hig-foundations`](../../skills/hig-foundations/): Learn the core Apple Human Interface Guidelines.
|
|
440
506
|
- [`hig-patterns`](../../skills/hig-patterns/): Apply Apple interaction and UX patterns correctly.
|
|
441
507
|
- [`hig-components-layout`](../../skills/hig-components-layout/): Use Apple layout and navigation components well.
|
|
@@ -447,6 +513,8 @@ _For teams designing native-feeling Apple platform experiences._
|
|
|
447
513
|
|
|
448
514
|
_For building UI-heavy apps with the Makepad ecosystem._
|
|
449
515
|
|
|
516
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
517
|
+
|
|
450
518
|
- [`makepad-basics`](../../skills/makepad-basics/): Start with Makepad fundamentals and mental model.
|
|
451
519
|
- [`makepad-layout`](../../skills/makepad-layout/): Handle sizing, flow, alignment, and layout composition.
|
|
452
520
|
- [`makepad-widgets`](../../skills/makepad-widgets/): Build interfaces from Makepad widgets.
|
|
@@ -458,6 +526,8 @@ _For building UI-heavy apps with the Makepad ecosystem._
|
|
|
458
526
|
|
|
459
527
|
_For technical SEO, content structure, and search growth._
|
|
460
528
|
|
|
529
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
530
|
+
|
|
461
531
|
- [`seo-fundamentals`](../../skills/seo-fundamentals/): Build from sound SEO principles and search constraints.
|
|
462
532
|
- [`seo-content-planner`](../../skills/seo-content-planner/): Plan clusters, calendars, and content gaps.
|
|
463
533
|
- [`seo-content-writer`](../../skills/seo-content-writer/): Produce search-aware content drafts with intent alignment.
|
|
@@ -470,6 +540,8 @@ _For technical SEO, content structure, and search growth._
|
|
|
470
540
|
|
|
471
541
|
_For document-heavy workflows, spreadsheets, PDFs, and presentations._
|
|
472
542
|
|
|
543
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
544
|
+
|
|
473
545
|
- [`office-productivity`](../../skills/office-productivity/): Coordinate document, spreadsheet, and presentation workflows.
|
|
474
546
|
- [`docx-official`](../../skills/docx-official/): Create and edit Word-compatible documents.
|
|
475
547
|
- [`pptx-official`](../../skills/pptx-official/): Create and edit PowerPoint-compatible presentations.
|
|
@@ -487,6 +559,8 @@ _For document-heavy workflows, spreadsheets, PDFs, and presentations._
|
|
|
487
559
|
|
|
488
560
|
_For shipping clean changes in public repositories._
|
|
489
561
|
|
|
562
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
563
|
+
|
|
490
564
|
- [`commit`](../../skills/commit/): High-quality conventional commits.
|
|
491
565
|
- [`create-pr`](../../skills/create-pr/): PR creation with review-ready context.
|
|
492
566
|
- [`requesting-code-review`](../../skills/requesting-code-review/): Ask for targeted, high-signal reviews.
|
|
@@ -499,6 +573,8 @@ _For shipping clean changes in public repositories._
|
|
|
499
573
|
|
|
500
574
|
_For creating and maintaining high-quality SKILL.md assets._
|
|
501
575
|
|
|
576
|
+
**Plugin status:** Codex pending hardening · Claude pending hardening
|
|
577
|
+
|
|
502
578
|
- [`skill-creator`](../../skills/skill-creator/): Design effective new skills.
|
|
503
579
|
- [`skill-developer`](../../skills/skill-developer/): Implement triggers, hooks, and skill lifecycle.
|
|
504
580
|
- [`writing-skills`](../../skills/writing-skills/): Improve clarity and structure of skill instructions.
|
|
@@ -597,4 +673,4 @@ Found a skill that should be in a bundle? Or want to create a new bundle? [Open
|
|
|
597
673
|
|
|
598
674
|
---
|
|
599
675
|
|
|
600
|
-
_Last updated: March 2026 | Total Skills: 1,
|
|
676
|
+
_Last updated: March 2026 | Total Skills: 1,331+ | Total Bundles: 37_
|
|
@@ -4,13 +4,15 @@ If you are looking for **Claude Code skills** you can install from GitHub, this
|
|
|
4
4
|
|
|
5
5
|
Antigravity Awesome Skills gives Claude Code users an installable library of `SKILL.md` playbooks, role-based bundles, and execution workflows. The goal is not just to collect prompts, but to make repeatable engineering tasks easier to invoke, review, and reuse.
|
|
6
6
|
|
|
7
|
+
Release `9.0.0` also adds a first-class Claude Code plugin distribution plus bundle plugins. If you want the full explanation of root plugin vs bundle plugin vs full install, read [plugins.md](plugins.md).
|
|
8
|
+
|
|
7
9
|
## How to use Antigravity Awesome Skills with Claude Code
|
|
8
10
|
|
|
9
11
|
Install the library into Claude Code, then invoke focused skills directly in the conversation or through the plugin marketplace path. Claude Code benefits most when you keep the prompt specific about the skill, the scope, and the intended output.
|
|
10
12
|
|
|
11
13
|
## Why use this repo for Claude Code
|
|
12
14
|
|
|
13
|
-
- It includes 1,
|
|
15
|
+
- It includes 1,331+ skills instead of a narrow single-domain starter pack.
|
|
14
16
|
- It supports the standard `.claude/skills/` path and the Claude Code plugin marketplace flow.
|
|
15
17
|
- It also ships generated bundle plugins so teams can install focused packs like `Essentials` or `Security Developer` from the marketplace metadata.
|
|
16
18
|
- It includes onboarding docs, bundles, and workflows so new users do not need to guess where to begin.
|
|
@@ -31,6 +33,10 @@ npx antigravity-awesome-skills --claude
|
|
|
31
33
|
/plugin install antigravity-awesome-skills
|
|
32
34
|
```
|
|
33
35
|
|
|
36
|
+
The Claude marketplace plugin is a plugin-safe filtered distribution of the repo. Skills that still require portability hardening or explicit setup metadata remain available in the repository, but are excluded from the plugin until they are ready.
|
|
37
|
+
|
|
38
|
+
You can also install a focused bundle plugin instead of the root plugin when you want a narrower starter surface. See [plugins.md](plugins.md) and [bundles.md](bundles.md).
|
|
39
|
+
|
|
34
40
|
### Verify the install
|
|
35
41
|
|
|
36
42
|
```bash
|
|
@@ -4,6 +4,8 @@ If you want **Codex CLI skills** that are easy to install and practical in a loc
|
|
|
4
4
|
|
|
5
5
|
Antigravity Awesome Skills supports Codex CLI through the `.codex/skills/` path and gives you a wide set of reusable task playbooks for planning, implementation, debugging, testing, security review, and delivery.
|
|
6
6
|
|
|
7
|
+
Release `9.0.0` also adds a first-class Codex plugin distribution plus bundle plugins. If you want the full explanation of root plugin vs bundle plugin vs full install, read [plugins.md](plugins.md).
|
|
8
|
+
|
|
7
9
|
## How to use Antigravity Awesome Skills with Codex CLI
|
|
8
10
|
|
|
9
11
|
Install the library into your Codex path, then invoke focused skills directly in your prompt. The most common pattern is:
|
|
@@ -29,6 +31,10 @@ If you prefer a plugin-style Codex integration, this repository also ships repo-
|
|
|
29
31
|
|
|
30
32
|
It also generates bundle-specific Codex plugins so you can install a curated pack such as `Essentials` or `Web Wizard` as a marketplace plugin instead of loading the full library.
|
|
31
33
|
|
|
34
|
+
Those Codex plugins are plugin-safe filtered distributions. Skills that still depend on host-specific paths or undeclared setup stay in the repository, but are not published into the Codex plugin until they are hardened.
|
|
35
|
+
|
|
36
|
+
For the canonical explanation of how Codex plugins relate to the full library and bundle installs, read [plugins.md](plugins.md).
|
|
37
|
+
|
|
32
38
|
### Verify the install
|
|
33
39
|
|
|
34
40
|
```bash
|
|
@@ -60,5 +66,6 @@ Use @create-pr once everything is passing and summarize the user-facing changes.
|
|
|
60
66
|
## What to do next
|
|
61
67
|
|
|
62
68
|
- Read [`ai-agent-skills.md`](ai-agent-skills.md) if you want a framework for choosing between broad and curated skill libraries.
|
|
69
|
+
- Read [`plugins.md`](plugins.md) if you want the plugin-specific install story for Codex and Claude Code.
|
|
63
70
|
- Use [`workflows.md`](workflows.md) when you want step-by-step execution patterns for common engineering goals.
|
|
64
71
|
- Return to [`README.md`](../../README.md) for the full compatibility matrix.
|
|
@@ -17,6 +17,8 @@ Skills are specialized instruction files that teach AI assistants how to handle
|
|
|
17
17
|
It's like having a library - all books are there, but you only read the ones you need.
|
|
18
18
|
**Pro Tip:** Use [Starter Packs](bundles.md) to focus on the skills that match your role first.
|
|
19
19
|
|
|
20
|
+
If you want a narrower install surface for **Claude Code** or **Codex**, use the new plugin distributions documented in [plugins.md](plugins.md) instead of the full library install.
|
|
21
|
+
|
|
20
22
|
### What is the difference between Bundles and Workflows?
|
|
21
23
|
|
|
22
24
|
- **Bundles** are curated recommendations grouped by role or domain.
|
|
@@ -137,6 +139,27 @@ git clone https://github.com/sickn33/antigravity-awesome-skills.git .agent/skill
|
|
|
137
139
|
|
|
138
140
|
This repository now includes `.claude-plugin/marketplace.json` and `.claude-plugin/plugin.json` so Claude Code can install the same skill tree through the plugin marketplace.
|
|
139
141
|
|
|
142
|
+
**Codex plugin alternative:**
|
|
143
|
+
|
|
144
|
+
This repository also includes repo-local plugin metadata for Codex:
|
|
145
|
+
|
|
146
|
+
- `.agents/plugins/marketplace.json`
|
|
147
|
+
- `plugins/antigravity-awesome-skills/.codex-plugin/plugin.json`
|
|
148
|
+
|
|
149
|
+
That path exposes the new plugin-safe Codex root plugin plus generated bundle plugins. For the full explanation, read [plugins.md](plugins.md).
|
|
150
|
+
|
|
151
|
+
### What does `plugin-safe` mean?
|
|
152
|
+
|
|
153
|
+
Plugin-safe means the published Claude Code and Codex plugins only include the subset of skills that is ready for marketplace-style distribution.
|
|
154
|
+
|
|
155
|
+
Skills can stay repo-only for a while if they still need:
|
|
156
|
+
|
|
157
|
+
- portability cleanup
|
|
158
|
+
- explicit setup metadata
|
|
159
|
+
- additional hardening for plugin ecosystems
|
|
160
|
+
|
|
161
|
+
So it is normal for the **full library** to be larger than the **plugin-safe** plugin subset. The repository stays the complete source of truth; plugins publish the hardened subset.
|
|
162
|
+
|
|
140
163
|
### Does this work with Windows?
|
|
141
164
|
|
|
142
165
|
**Yes.** Use the same standard install flow as other platforms:
|
|
@@ -12,7 +12,7 @@ Install into the Gemini skills path, then ask Gemini to apply one skill at a tim
|
|
|
12
12
|
|
|
13
13
|
- It installs directly into the expected Gemini skills path.
|
|
14
14
|
- It includes both core software engineering skills and deeper agent/LLM-oriented skills.
|
|
15
|
-
- It helps new users get started with bundles and workflows rather than forcing a cold start from 1,
|
|
15
|
+
- It helps new users get started with bundles and workflows rather than forcing a cold start from 1,331+ files.
|
|
16
16
|
- It is useful whether you want a broad internal skill library or a single repo to test many workflows quickly.
|
|
17
17
|
|
|
18
18
|
## Install Gemini CLI Skills
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Getting Started with Antigravity Awesome Skills (
|
|
1
|
+
# Getting Started with Antigravity Awesome Skills (V9.1.0)
|
|
2
2
|
|
|
3
3
|
**New here? This guide will help you supercharge your AI Agent in 5 minutes.**
|
|
4
4
|
|
|
@@ -22,6 +22,8 @@ We have curated **Starter Packs** to get you running immediately.
|
|
|
22
22
|
|
|
23
23
|
You **install the full repo once** (npx or clone); Starter Packs are curated lists to help you **pick which skills to use** by role (e.g. Web Wizard, Hacker Pack)—they are not a different way to install.
|
|
24
24
|
|
|
25
|
+
If you prefer a marketplace-style install for **Claude Code** or **Codex**, use the new plugin distributions described in [plugins.md](plugins.md).
|
|
26
|
+
|
|
25
27
|
### 1. Install the Repo
|
|
26
28
|
|
|
27
29
|
**Option A — npx (easiest):**
|
|
@@ -99,7 +101,7 @@ Once installed, just talk to your AI naturally.
|
|
|
99
101
|
| :-------------- | :-------------- | :-------------------------------------------------------------------- |
|
|
100
102
|
| **Claude Code** | ✅ Full Support | `.claude/skills/` or install via `/plugin marketplace add sickn33/antigravity-awesome-skills` |
|
|
101
103
|
| **Gemini CLI** | ✅ Full Support | `.gemini/skills/` |
|
|
102
|
-
| **Codex CLI** | ✅ Full Support | `.codex/skills/`
|
|
104
|
+
| **Codex CLI** | ✅ Full Support | `.codex/skills/` or use the repo-local plugin metadata described in [plugins.md](plugins.md) |
|
|
103
105
|
| **Kiro CLI** | ✅ Full Support | Global: `~/.kiro/skills/` · Workspace: `.kiro/skills/` |
|
|
104
106
|
| **Kiro IDE** | ✅ Full Support | Global: `~/.kiro/skills/` · Workspace: `.kiro/skills/` |
|
|
105
107
|
| **Antigravity** | ✅ Native | Global: `~/.gemini/antigravity/skills/` · Workspace: `.agent/skills/` |
|
|
@@ -126,13 +128,17 @@ _Check the [Skill Catalog](../../CATALOG.md) for the full list._
|
|
|
126
128
|
|
|
127
129
|
## FAQ
|
|
128
130
|
|
|
129
|
-
If you prefer
|
|
131
|
+
If you prefer a plugin install instead of copying skills into tool directories, start with [plugins.md](plugins.md).
|
|
132
|
+
|
|
133
|
+
For Claude Code, use:
|
|
130
134
|
|
|
131
135
|
```text
|
|
132
136
|
/plugin marketplace add sickn33/antigravity-awesome-skills
|
|
133
137
|
/plugin install antigravity-awesome-skills
|
|
134
138
|
```
|
|
135
139
|
|
|
140
|
+
For Codex, this repository also ships a root plugin plus bundle plugins through the repo-local metadata described in [plugins.md](plugins.md).
|
|
141
|
+
|
|
136
142
|
**Q: Do I need to install every skill?**
|
|
137
143
|
A: You clone the whole repo once; your AI only _reads_ the skills you invoke (or that are relevant), so it stays lightweight. **Starter Packs** in [bundles.md](bundles.md) are curated lists to help you discover the right skills for your role—they don't change how you install.
|
|
138
144
|
|
|
@@ -155,6 +161,7 @@ A: Yes. Original code and tooling are MIT-licensed, and original documentation/n
|
|
|
155
161
|
Need a tool-specific starting point first?
|
|
156
162
|
|
|
157
163
|
- [Claude Code skills](claude-code-skills.md)
|
|
164
|
+
- [Plugins for Claude Code and Codex](plugins.md)
|
|
158
165
|
- [Cursor skills](cursor-skills.md)
|
|
159
166
|
- [Codex CLI skills](codex-cli-skills.md)
|
|
160
167
|
- [Gemini CLI skills](gemini-cli-skills.md)
|
|
@@ -18,7 +18,7 @@ Kiro is AWS's agentic AI IDE that combines:
|
|
|
18
18
|
|
|
19
19
|
Kiro's agentic capabilities are enhanced by skills that provide:
|
|
20
20
|
|
|
21
|
-
- **Domain expertise** across 1,
|
|
21
|
+
- **Domain expertise** across 1,331+ specialized areas
|
|
22
22
|
- **Best practices** from Anthropic, OpenAI, Google, Microsoft, and AWS
|
|
23
23
|
- **Workflow automation** for common development tasks
|
|
24
24
|
- **AWS-specific patterns** for serverless, infrastructure, and cloud architecture
|