opencode-skills-collection 3.0.31 → 3.0.33

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.
Files changed (51) hide show
  1. package/bundled-skills/.antigravity-install-manifest.json +14 -1
  2. package/bundled-skills/bilig-workpaper/SKILL.md +12 -3
  3. package/bundled-skills/bumblebee/SKILL.md +6 -2
  4. package/bundled-skills/bun-development/SKILL.md +5 -3
  5. package/bundled-skills/cloud-penetration-testing/SKILL.md +5 -3
  6. package/bundled-skills/container-security-hardening/SKILL.md +1001 -0
  7. package/bundled-skills/container-security-hardening/references/base-image-comparison.md +245 -0
  8. package/bundled-skills/container-security-hardening/references/kubernetes-pod-security.md +567 -0
  9. package/bundled-skills/container-security-hardening/references/seccomp-profile-template.json +337 -0
  10. package/bundled-skills/doc2math/SKILL.md +102 -0
  11. package/bundled-skills/docs/integrations/jetski-cortex.md +3 -3
  12. package/bundled-skills/docs/integrations/jetski-gemini-loader/README.md +1 -1
  13. package/bundled-skills/docs/maintainers/repo-growth-seo.md +3 -3
  14. package/bundled-skills/docs/maintainers/skills-update-guide.md +1 -1
  15. package/bundled-skills/docs/users/bundles.md +1 -1
  16. package/bundled-skills/docs/users/claude-code-skills.md +1 -1
  17. package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
  18. package/bundled-skills/docs/users/getting-started.md +6 -2
  19. package/bundled-skills/docs/users/kiro-integration.md +1 -1
  20. package/bundled-skills/docs/users/usage.md +4 -4
  21. package/bundled-skills/docs/users/visual-guide.md +4 -4
  22. package/bundled-skills/environment-setup-guide/SKILL.md +10 -6
  23. package/bundled-skills/evolution/SKILL.md +5 -3
  24. package/bundled-skills/github-actions-advanced/SKILL.md +1100 -0
  25. package/bundled-skills/gitops-workflow/SKILL.md +5 -3
  26. package/bundled-skills/ii-commons/SKILL.md +15 -1
  27. package/bundled-skills/lemmaly/SKILL.md +15 -6
  28. package/bundled-skills/linkerd-patterns/SKILL.md +5 -3
  29. package/bundled-skills/longbridge/SKILL.md +95 -0
  30. package/bundled-skills/mercury-mcp/SKILL.md +9 -1
  31. package/bundled-skills/moatmri/SKILL.md +84 -0
  32. package/bundled-skills/nextjs-seo-indexing/SKILL.md +263 -0
  33. package/bundled-skills/openclaw-github-repo-commander/scripts/repo-audit.sh +42 -0
  34. package/bundled-skills/photopea-embedded-editor/SKILL.md +7 -3
  35. package/bundled-skills/runaway-guard/SKILL.md +331 -0
  36. package/bundled-skills/schema-markup-generator/SKILL.md +319 -0
  37. package/bundled-skills/sendblue/sendblue-api/SKILL.md +6 -1
  38. package/bundled-skills/sendblue/sendblue-cli/SKILL.md +6 -1
  39. package/bundled-skills/sendblue/sendblue-notify/SKILL.md +6 -1
  40. package/bundled-skills/sendblue/textme/SKILL.md +4 -0
  41. package/bundled-skills/social-metadata-hardening/SKILL.md +230 -0
  42. package/bundled-skills/socialclaw/SKILL.md +6 -1
  43. package/bundled-skills/uv-package-manager/resources/implementation-playbook.md +5 -3
  44. package/bundled-skills/varlock/SKILL.md +10 -6
  45. package/bundled-skills/vibe-code-cleanup/SKILL.md +231 -0
  46. package/bundled-skills/vibecode-production-qa-validator/SKILL.md +237 -0
  47. package/bundled-skills/wordpress-centric-high-seo-optimized-blogwriting-skill/SKILL.md +229 -162
  48. package/bundled-skills/yield-intelligence/SKILL.md +121 -0
  49. package/bundled-skills/youtube-full/SKILL.md +144 -0
  50. package/package.json +1 -1
  51. package/skills_index.json +330 -28
@@ -0,0 +1,337 @@
1
+ {
2
+ "_comment": "Minimal seccomp profile for a typical web server container (HTTP/HTTPS, TCP, file I/O). Default action: DENY everything not explicitly listed. Start here and add syscalls as your app requires them. Use 'strace -c <cmd>' or 'sysdig' to discover which syscalls your app actually makes in production.",
3
+ "_usage": {
4
+ "docker_run": "docker run --security-opt seccomp=seccomp-profile-template.json myapp:latest",
5
+ "docker_compose": "security_opt:\n - seccomp:./references/seccomp-profile-template.json",
6
+ "kubernetes": "securityContext:\n seccompProfile:\n type: Localhost\n localhostProfile: profiles/seccomp-profile-template.json"
7
+ },
8
+ "_discover_syscalls": {
9
+ "with_strace": "strace -c -f -p <PID> # Attach to running process",
10
+ "with_docker": "docker run --security-opt seccomp=unconfined --name audit myapp:latest",
11
+ "with_sysdig": "sysdig -p '%syscall.type' container.name=audit | sort -u"
12
+ },
13
+ "defaultAction": "SCMP_ACT_ERRNO",
14
+ "architectures": [
15
+ "SCMP_ARCH_X86_64",
16
+ "SCMP_ARCH_X86",
17
+ "SCMP_ARCH_X32",
18
+ "SCMP_ARCH_AARCH64"
19
+ ],
20
+ "syscalls": [
21
+ {
22
+ "_group": "Process lifecycle",
23
+ "names": [
24
+ "execve",
25
+ "execveat",
26
+ "exit",
27
+ "exit_group",
28
+ "clone",
29
+ "clone3",
30
+ "fork",
31
+ "vfork",
32
+ "wait4",
33
+ "waitid",
34
+ "getpid",
35
+ "getppid",
36
+ "gettid",
37
+ "tgkill",
38
+ "kill",
39
+ "tkill",
40
+ "sched_yield",
41
+ "sched_getaffinity",
42
+ "sched_setaffinity",
43
+ "prctl",
44
+ "arch_prctl",
45
+ "seccomp",
46
+ "nanosleep",
47
+ "clock_nanosleep",
48
+ "pause"
49
+ ],
50
+ "action": "SCMP_ACT_ALLOW"
51
+ },
52
+ {
53
+ "_group": "File I/O",
54
+ "names": [
55
+ "open",
56
+ "openat",
57
+ "openat2",
58
+ "close",
59
+ "close_range",
60
+ "read",
61
+ "readv",
62
+ "pread64",
63
+ "write",
64
+ "writev",
65
+ "pwrite64",
66
+ "lseek",
67
+ "fstat",
68
+ "fstat64",
69
+ "stat",
70
+ "stat64",
71
+ "lstat",
72
+ "lstat64",
73
+ "statx",
74
+ "newfstatat",
75
+ "access",
76
+ "faccessat",
77
+ "faccessat2",
78
+ "readlink",
79
+ "readlinkat",
80
+ "getcwd",
81
+ "getdents",
82
+ "getdents64",
83
+ "dup",
84
+ "dup2",
85
+ "dup3",
86
+ "sendfile",
87
+ "sendfile64",
88
+ "splice",
89
+ "copy_file_range",
90
+ "truncate",
91
+ "ftruncate",
92
+ "fsync",
93
+ "fdatasync",
94
+ "sync_file_range",
95
+ "fallocate",
96
+ "fadvise64",
97
+ "mknod",
98
+ "mknodat",
99
+ "mkdir",
100
+ "mkdirat",
101
+ "rmdir",
102
+ "unlink",
103
+ "unlinkat",
104
+ "rename",
105
+ "renameat",
106
+ "renameat2",
107
+ "chmod",
108
+ "fchmod",
109
+ "fchmodat",
110
+ "chown",
111
+ "fchown",
112
+ "lchown",
113
+ "fchownat",
114
+ "utimes",
115
+ "utimensat",
116
+ "futimesat",
117
+ "inotify_init",
118
+ "inotify_init1",
119
+ "inotify_add_watch",
120
+ "inotify_rm_watch"
121
+ ],
122
+ "action": "SCMP_ACT_ALLOW"
123
+ },
124
+ {
125
+ "_group": "Memory management",
126
+ "names": [
127
+ "brk",
128
+ "mmap",
129
+ "mmap2",
130
+ "munmap",
131
+ "mremap",
132
+ "mprotect",
133
+ "madvise",
134
+ "mlock",
135
+ "munlock",
136
+ "mlockall",
137
+ "munlockall",
138
+ "mincore",
139
+ "msync",
140
+ "memfd_create",
141
+ "remap_file_pages"
142
+ ],
143
+ "action": "SCMP_ACT_ALLOW"
144
+ },
145
+ {
146
+ "_group": "Networking (TCP/UDP server)",
147
+ "names": [
148
+ "socket",
149
+ "socketpair",
150
+ "bind",
151
+ "listen",
152
+ "accept",
153
+ "accept4",
154
+ "connect",
155
+ "getsockname",
156
+ "getpeername",
157
+ "setsockopt",
158
+ "getsockopt",
159
+ "sendto",
160
+ "sendmsg",
161
+ "sendmmsg",
162
+ "recvfrom",
163
+ "recvmsg",
164
+ "recvmmsg",
165
+ "shutdown",
166
+ "poll",
167
+ "ppoll",
168
+ "select",
169
+ "pselect6",
170
+ "epoll_create",
171
+ "epoll_create1",
172
+ "epoll_ctl",
173
+ "epoll_wait",
174
+ "epoll_pwait",
175
+ "epoll_pwait2",
176
+ "pipe",
177
+ "pipe2",
178
+ "eventfd",
179
+ "eventfd2"
180
+ ],
181
+ "action": "SCMP_ACT_ALLOW"
182
+ },
183
+ {
184
+ "_group": "Signals",
185
+ "names": [
186
+ "rt_sigaction",
187
+ "rt_sigprocmask",
188
+ "rt_sigreturn",
189
+ "rt_sigsuspend",
190
+ "rt_sigpending",
191
+ "rt_sigtimedwait",
192
+ "rt_sigqueueinfo",
193
+ "rt_tgsigqueueinfo",
194
+ "sigaltstack",
195
+ "signalfd",
196
+ "signalfd4",
197
+ "sigreturn",
198
+ "setitimer",
199
+ "getitimer",
200
+ "timer_create",
201
+ "timer_settime",
202
+ "timer_gettime",
203
+ "timer_getoverrun",
204
+ "timer_delete",
205
+ "timerfd_create",
206
+ "timerfd_settime",
207
+ "timerfd_gettime"
208
+ ],
209
+ "action": "SCMP_ACT_ALLOW"
210
+ },
211
+ {
212
+ "_group": "Identity / user management (read-only)",
213
+ "names": [
214
+ "getuid",
215
+ "getuid32",
216
+ "getgid",
217
+ "getgid32",
218
+ "geteuid",
219
+ "geteuid32",
220
+ "getegid",
221
+ "getegid32",
222
+ "getresuid",
223
+ "getresuid32",
224
+ "getresgid",
225
+ "getresgid32",
226
+ "getgroups",
227
+ "getgroups32",
228
+ "capget"
229
+ ],
230
+ "action": "SCMP_ACT_ALLOW"
231
+ },
232
+ {
233
+ "_group": "System info / time",
234
+ "names": [
235
+ "uname",
236
+ "sysinfo",
237
+ "getrlimit",
238
+ "setrlimit",
239
+ "prlimit64",
240
+ "getrusage",
241
+ "clock_gettime",
242
+ "clock_gettime64",
243
+ "clock_getres",
244
+ "clock_adjtime",
245
+ "gettimeofday",
246
+ "time"
247
+ ],
248
+ "action": "SCMP_ACT_ALLOW"
249
+ },
250
+ {
251
+ "_group": "I/O multiplexing / async I/O",
252
+ "names": [
253
+ "io_setup",
254
+ "io_submit",
255
+ "io_getevents",
256
+ "io_cancel",
257
+ "io_destroy",
258
+ "io_uring_setup",
259
+ "io_uring_enter",
260
+ "io_uring_register"
261
+ ],
262
+ "action": "SCMP_ACT_ALLOW"
263
+ },
264
+ {
265
+ "_group": "File descriptor management",
266
+ "names": [
267
+ "fcntl",
268
+ "fcntl64",
269
+ "ioctl",
270
+ "flock",
271
+ "sync"
272
+ ],
273
+ "action": "SCMP_ACT_ALLOW"
274
+ },
275
+ {
276
+ "_group": "Futex (thread synchronization)",
277
+ "names": [
278
+ "futex",
279
+ "futex_time64",
280
+ "futex_waitv",
281
+ "set_robust_list",
282
+ "get_robust_list",
283
+ "set_tid_address"
284
+ ],
285
+ "action": "SCMP_ACT_ALLOW"
286
+ },
287
+ {
288
+ "_group": "Miscellaneous safe syscalls",
289
+ "names": [
290
+ "getrandom",
291
+ "umask",
292
+ "chdir",
293
+ "fchdir",
294
+ "symlink",
295
+ "symlinkat",
296
+ "link",
297
+ "linkat"
298
+ ],
299
+ "action": "SCMP_ACT_ALLOW"
300
+ },
301
+ {
302
+ "_group": "EXPLICITLY BLOCKED — comment out only with documented justification",
303
+ "_blocked_reason": "These syscalls are dangerous and should never be needed by a web server. Do not uncomment without a security review.",
304
+ "names": [],
305
+ "action": "SCMP_ACT_ERRNO",
306
+ "_examples_that_should_stay_blocked": [
307
+ "ptrace -- debug/trace processes; allows container escape",
308
+ "kexec_load -- load a new kernel; always block",
309
+ "kexec_file_load-- load a new kernel; always block",
310
+ "mount -- mount filesystems; always block in containers",
311
+ "umount -- unmount filesystems",
312
+ "umount2 -- unmount filesystems",
313
+ "swapon -- manage swap",
314
+ "swapoff -- manage swap",
315
+ "reboot -- reboot/halt system",
316
+ "syslog -- read/clear kernel message ring buffer",
317
+ "bpf -- load eBPF programs; high privilege",
318
+ "perf_event_open-- access hardware perf counters",
319
+ "init_module -- load kernel modules",
320
+ "finit_module -- load kernel modules",
321
+ "delete_module -- unload kernel modules",
322
+ "create_module -- create loadable modules",
323
+ "query_module -- query module info",
324
+ "get_kernel_syms-- deprecated kernel symbol query",
325
+ "nfsservctl -- NFS server control",
326
+ "pivot_root -- change root filesystem",
327
+ "settimeofday -- set system clock (use capabilities instead)",
328
+ "adjtimex -- tune kernel clock",
329
+ "acct -- enable/disable process accounting",
330
+ "setdomainname -- set domain name",
331
+ "sethostname -- set hostname",
332
+ "setns -- join a namespace (container escape risk)",
333
+ "unshare -- disassociate namespace (container escape risk)"
334
+ ]
335
+ }
336
+ ]
337
+ }
@@ -0,0 +1,102 @@
1
+ ---
2
+ name: doc2math
3
+ description: Convert narrative technical documents into grounded Mathematical Problem Specifications with variables, constraints, objectives, and uncertainty.
4
+ risk: safe
5
+ source: community
6
+ date_added: "2026-05-31"
7
+ ---
8
+
9
+ # DOC2MATH — Document-to-Mathematics Problem Specification
10
+
11
+ ## When to Use This Skill
12
+
13
+ - "Formalize this problem statement into math"
14
+ - "Extract the mathematical structure from this research paper section"
15
+ - "What variables, constraints, and objectives are in this spec?"
16
+ - "Convert this word problem to a structured MPS"
17
+ - "Find what's missing in this problem formulation"
18
+
19
+ ## Zero-Inference Protocol (Mandatory)
20
+
21
+ 1. **Closed World** — if it is not stated in the document, it does not exist in output
22
+ 2. **Grounding Rule** — every element must cite the exact source phrase (`"evidence"` field)
23
+ 3. **No Silent Filling** — unknown values use `null`; ambiguous types use `"ambiguous"`
24
+ 4. **Inference Tagging** — structural inferences tagged `"inferred": true` with `"inference_basis"`
25
+ 5. **MISSING Markers** — elements mentioned but insufficiently defined get `"status": "MISSING"` with `"missing_reason"`
26
+ 6. **No Hallucinated Math** — never introduce equations or values not in the source text
27
+
28
+ ## Limitations
29
+
30
+ - Does not invent missing equations, domains, values, or assumptions that are absent from the source document.
31
+ - Requires enough source text to cite every extracted element; sparse prompts should be returned with explicit missing-information markers.
32
+ - Produces a formal specification, not a solved optimization model or proof.
33
+
34
+ ## How It Works
35
+
36
+ ### Step 1 — Receive Document
37
+
38
+ Accept the document text, research excerpt, problem description, or specification as input.
39
+
40
+ ### Step 2 — Classify
41
+
42
+ Identify `problem_class`: `optimization | classification | simulation | proof | estimation | other`
43
+
44
+ ### Step 3 — Extract MPS Components
45
+
46
+ **Variables** — `id`, `name`, `symbol`, `type`, `domain`, `units`, `role`, `evidence`, `inferred`, `status`
47
+
48
+ **Operators** — `id`, `name`, `symbol`, `arity`, `acts_on`, `produces`, `evidence`, `inferred`
49
+
50
+ **Constraints** — `id`, `type`, `expression`, `variables_involved`, `evidence`, `hardness`, `inferred`, `status`
51
+
52
+ **Objectives** — `id`, `direction` (minimize/maximize/satisfy/find/prove), `expression`, `variables_involved`, `evidence`, `inferred`
53
+
54
+ **Uncertainty** — `id`, `type` (stochastic/epistemic/measurement/model/none_stated), `affects`, `characterization`, `evidence`, `status`
55
+
56
+ ### Step 4 — Surface Missing Information
57
+
58
+ Identify what the document implies but doesn't state: `missing_information[]` with `element`, `needed_for`, `missing_reason`.
59
+
60
+ ### Step 5 — Validate and Score
61
+
62
+ `validation_flags`:
63
+ - `has_complete_objectives`: true/false/partial
64
+ - `has_bounded_variables`: true/false/partial
65
+ - `has_evidence_for_all_elements`: true/false/partial
66
+ - `inference_count`: integer
67
+ - `missing_count`: integer
68
+ - `overall_formalizability`: HIGH/MEDIUM/LOW
69
+
70
+ ## Output Format
71
+
72
+ Produce the complete MPS as a JSON object:
73
+
74
+ ```json
75
+ {
76
+ "mps_version": "1.0",
77
+ "source_title": "...",
78
+ "problem_class": "optimization",
79
+ "variables": [...],
80
+ "operators": [...],
81
+ "constraints": [...],
82
+ "objectives": [...],
83
+ "uncertainty": [...],
84
+ "missing_information": [...],
85
+ "validation_flags": {
86
+ "overall_formalizability": "HIGH"
87
+ }
88
+ }
89
+ ```
90
+
91
+ ## Best Practices
92
+
93
+ - ✅ Apply all 6 Zero-Inference Protocol rules before outputting any element
94
+ - ✅ Surface MISSING markers rather than silently inferring — incomplete formalization is valid output
95
+ - ✅ Cite the exact source phrase in every `evidence` field
96
+ - ❌ Never introduce mathematical relationships not grounded in the source text
97
+
98
+ ## Additional Resources
99
+
100
+ - Repository: [thebrierfox/doc2math-skill](https://github.com/thebrierfox/doc2math-skill)
101
+ - Full BYOK tool: [ace-license-server-production.up.railway.app/byok/doc2math](https://ace-license-server-production.up.railway.app/byok/doc2math)
102
+ - Built by [IntuiTek¹](https://intuitek.ai) (~K¹) — MIT License
@@ -1,9 +1,9 @@
1
1
  ---
2
2
  title: Jetski/Cortex + Gemini Integration Guide
3
- description: "Use antigravity-awesome-skills with Jetski/Cortex without hitting context-window overflow with 1,480+ skills."
3
+ description: "Use antigravity-awesome-skills with Jetski/Cortex without hitting context-window overflow with 1,493+ skills."
4
4
  ---
5
5
 
6
- # Jetski/Cortex + Gemini: safe integration with 1,480+ skills
6
+ # Jetski/Cortex + Gemini: safe integration with 1,493+ skills
7
7
 
8
8
  This guide shows how to integrate the `antigravity-awesome-skills` repository with an agent based on **Jetski/Cortex + Gemini** (or similar frameworks) **without exceeding the model context window**.
9
9
 
@@ -23,7 +23,7 @@ Never do:
23
23
  - concatenate all `SKILL.md` content into a single system prompt;
24
24
  - re-inject the entire library for **every** request.
25
25
 
26
- With 1,480+ skills, this approach fills the context window before user messages are even added, causing truncation.
26
+ With 1,493+ skills, this approach fills the context window before user messages are even added, causing truncation.
27
27
 
28
28
  ---
29
29
 
@@ -21,7 +21,7 @@ This example shows one way to integrate **antigravity-awesome-skills** with a Je
21
21
  - How to enforce a **maximum number of skills per turn** via `maxSkillsPerTurn`.
22
22
  - How to choose whether to **truncate or error** when too many skills are requested via `overflowBehavior`.
23
23
 
24
- This pattern avoids context overflow when you have 1,480+ skills installed.
24
+ This pattern avoids context overflow when you have 1,493+ skills installed.
25
25
 
26
26
  Manifest contract references:
27
27
 
@@ -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,480+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and other AI coding assistants.
9
+ > Installable GitHub library of 1,493+ 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,480+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.
23
+ > Installable GitHub library of 1,493+ 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,480+ Agentic Skills`;
31
+ - use a clean preview image that says `1,493+ 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
 
@@ -72,7 +72,7 @@ The update process refreshes:
72
72
  - Canonical skills index (`skills_index.json`)
73
73
  - Compatibility mirror (`data/skills_index.json`)
74
74
  - Web app skills data (`apps\web-app\public\skills.json`)
75
- - All 1,480+ skills from the skills directory
75
+ - All 1,493+ skills from the skills directory
76
76
 
77
77
  ## When to Update
78
78
 
@@ -673,4 +673,4 @@ Found a skill that should be in a bundle? Or want to create a new bundle? [Open
673
673
 
674
674
  ---
675
675
 
676
- _Last updated: March 2026 | Total Skills: 1,480+ | Total Bundles: 37_
676
+ _Last updated: March 2026 | Total Skills: 1,493+ | Total Bundles: 37_
@@ -12,7 +12,7 @@ Install the library into Claude Code, then invoke focused skills directly in the
12
12
 
13
13
  ## Why use this repo for Claude Code
14
14
 
15
- - It includes 1,480+ skills instead of a narrow single-domain starter pack.
15
+ - It includes 1,493+ skills instead of a narrow single-domain starter pack.
16
16
  - It supports the standard `.claude/skills/` path and the Claude Code plugin marketplace flow.
17
17
  - It also ships generated bundle plugins so teams can install focused packs like `Essentials` or `Security Developer` from the marketplace metadata.
18
18
  - It includes onboarding docs, bundles, and workflows so new users do not need to guess where to begin.
@@ -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,480+ files.
15
+ - It helps new users get started with bundles and workflows rather than forcing a cold start from 1,493+ 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 (V11.8.0)
1
+ # Getting Started with Antigravity Awesome Skills (V11.10.0)
2
2
 
3
3
  **New here? This guide will help you supercharge your AI Agent in 5 minutes.**
4
4
 
@@ -32,7 +32,7 @@ If you prefer a marketplace-style install for **Claude Code** or **Codex**, use
32
32
  npx antigravity-awesome-skills
33
33
  ```
34
34
 
35
- This clones to `~/.agents/skills` by default. Use `--cursor`, `--claude`, `--gemini`, `--codex`, or `--kiro` to install for a specific tool, or `--path <dir>` for a custom location. Run `npx antigravity-awesome-skills --help` for details.
35
+ This clones to `~/.agents/skills` by default. Use `--cursor`, `--claude`, `--gemini`, `--codex`, `--kiro`, or `--agy` to install for a specific tool, or `--path <dir>` for a custom location. Run `npx antigravity-awesome-skills --help` for details.
36
36
  The installer uses a shallow clone by default so you get the current library without paying for the full git history on first install.
37
37
 
38
38
  If you see a 404 error, use: `npx github:sickn33/antigravity-awesome-skills`
@@ -106,6 +106,7 @@ Once installed, just talk to your AI naturally.
106
106
  | **Kiro CLI** | ✅ Full Support | Global: `~/.kiro/skills/` · Workspace: `.kiro/skills/` |
107
107
  | **Kiro IDE** | ✅ Full Support | Global: `~/.kiro/skills/` · Workspace: `.kiro/skills/` |
108
108
  | **Antigravity** | ✅ Native | Global: `~/.agents/skills/` · Workspace: `.agent/skills/` |
109
+ | **Antigravity CLI (`agy`)** | ✅ Full Support | Global slash-command files: `~/.gemini/antigravity-cli/skills/` |
109
110
  | **Cursor** | ✅ Native | `.cursor/skills/` |
110
111
  | **OpenCode** | ✅ Full Support | `.agents/skills/` (prefer reduced installs with `--risk`, `--category`, or `--tags`) |
111
112
  | **AdaL CLI** | ✅ Full Support | `.adal/skills/` |
@@ -154,6 +155,9 @@ A: Follow the recovery steps in [windows-truncation-recovery.md](windows-truncat
154
155
  **Q: What if Antigravity overloads on Linux or macOS when too many skills are active?**
155
156
  A: Use the activation flow in [agent-overload-recovery.md](agent-overload-recovery.md). It shows how to run `scripts/activate-skills.sh` from a cloned repo so you can keep the full library archived and activate only the bundles or skills you need in the live Antigravity directory.
156
157
 
158
+ **Q: What if `agy` does not show installed skills when I type `/`?**
159
+ A: The Antigravity CLI reads flat markdown skills from `~/.gemini/antigravity-cli/skills/`. Run `npx antigravity-awesome-skills --agy`, restart `agy`, then open `/skills` or type a specific slash command such as `/brainstorming`.
160
+
157
161
  **Q: What if OpenCode or another `.agents/skills` host becomes unstable with a full install?**
158
162
  A: Start with a reduced install instead of copying the whole library. For example: `npx antigravity-awesome-skills --path .agents/skills --category development,backend --risk safe,none`. You can narrow further with `--tags` and use a trailing `-` to exclude values such as `typescript-`.
159
163
 
@@ -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,480+ specialized areas
21
+ - **Domain expertise** across 1,493+ 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
@@ -14,7 +14,7 @@ If you came in through a **Claude Code** or **Codex** plugin instead of a full l
14
14
 
15
15
  When you ran `npx antigravity-awesome-skills` or cloned the repository, you:
16
16
 
17
- ✅ **Downloaded 1,480+ skill files** to your computer (default: `~/.agents/skills/`; or a custom path like `~/.agent/skills/` if you used `--path`)
17
+ ✅ **Downloaded 1,493+ skill files** to your computer (default: `~/.agents/skills/`; or a custom path like `~/.agent/skills/` if you used `--path`)
18
18
  ✅ **Made them available** to your AI assistant
19
19
  ❌ **Did NOT enable them all automatically** (they're just sitting there, waiting)
20
20
 
@@ -34,7 +34,7 @@ Bundles are **curated groups** of skills organized by role. They help you decide
34
34
 
35
35
  **Analogy:**
36
36
 
37
- - You installed a toolbox with 1,480+ tools (✅ done)
37
+ - You installed a toolbox with 1,493+ tools (✅ done)
38
38
  - Bundles are like **labeled organizer trays** saying: "If you're a carpenter, start with these 10 tools"
39
39
  - You can either **pick skills from the tray** or install that tray as a focused marketplace bundle plugin
40
40
 
@@ -212,7 +212,7 @@ Let's actually use a skill right now. Follow these steps:
212
212
 
213
213
  ## Step 5: Picking Your First Skills (Practical Advice)
214
214
 
215
- Don't try to use all 1,480+ skills at once. Here's a sensible approach:
215
+ Don't try to use all 1,493+ skills at once. Here's a sensible approach:
216
216
 
217
217
  If you want a tool-specific starting point before choosing skills, use:
218
218
 
@@ -343,7 +343,7 @@ Usually no, but if your AI doesn't recognize a skill:
343
343
 
344
344
  ### "Can I load all skills into the model at once?"
345
345
 
346
- No. Even though you have 1,480+ skills installed locally, you should **not** concatenate every `SKILL.md` into a single system prompt or context block.
346
+ No. Even though you have 1,493+ skills installed locally, you should **not** concatenate every `SKILL.md` into a single system prompt or context block.
347
347
 
348
348
  The intended pattern is:
349
349
 
@@ -34,7 +34,7 @@ antigravity-awesome-skills/
34
34
  ├── 📄 CONTRIBUTING.md ← Contributor workflow
35
35
  ├── 📄 CATALOG.md ← Full generated catalog
36
36
 
37
- ├── 📁 skills/ ← 1,480+ skills live here
37
+ ├── 📁 skills/ ← 1,493+ skills live here
38
38
  │ │
39
39
  │ ├── 📁 brainstorming/
40
40
  │ │ └── 📄 SKILL.md ← Skill definition
@@ -47,7 +47,7 @@ antigravity-awesome-skills/
47
47
  │ │ └── 📁 2d-games/
48
48
  │ │ └── 📄 SKILL.md ← Nested skills also supported
49
49
  │ │
50
- │ └── ... (1,480+ total)
50
+ │ └── ... (1,493+ total)
51
51
 
52
52
  ├── 📁 apps/
53
53
  │ └── 📁 web-app/ ← Interactive browser
@@ -100,7 +100,7 @@ antigravity-awesome-skills/
100
100
 
101
101
  ```
102
102
  ┌─────────────────────────┐
103
- │ 1,480+ SKILLS │
103
+ │ 1,493+ SKILLS │
104
104
  └────────────┬────────────┘
105
105
 
106
106
  ┌────────────────────────┼────────────────────────┐
@@ -201,7 +201,7 @@ If you want a workspace-style manual install instead, cloning into `.agent/skill
201
201
  │ ├── 📁 brainstorming/ │
202
202
  │ ├── 📁 stripe-integration/ │
203
203
  │ ├── 📁 react-best-practices/ │
204
- │ └── ... (1,480+ total) │
204
+ │ └── ... (1,493+ total) │
205
205
  └─────────────────────────────────────────┘
206
206
  ```
207
207