opencode-skills-collection 3.0.31 → 3.0.32
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 +5 -1
- package/bundled-skills/container-security-hardening/SKILL.md +988 -0
- package/bundled-skills/container-security-hardening/references/base-image-comparison.md +245 -0
- package/bundled-skills/container-security-hardening/references/kubernetes-pod-security.md +561 -0
- package/bundled-skills/container-security-hardening/references/seccomp-profile-template.json +337 -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 +1 -1
- package/bundled-skills/docs/users/claude-code-skills.md +1 -1
- package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
- package/bundled-skills/docs/users/getting-started.md +1 -1
- package/bundled-skills/docs/users/kiro-integration.md +1 -1
- package/bundled-skills/docs/users/usage.md +4 -4
- package/bundled-skills/docs/users/visual-guide.md +4 -4
- package/bundled-skills/github-actions-advanced/SKILL.md +1075 -0
- package/bundled-skills/longbridge/SKILL.md +91 -0
- package/bundled-skills/runaway-guard/SKILL.md +331 -0
- package/package.json +1 -1
- package/skills_index.json +131 -27
|
@@ -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
|
+
}
|
|
@@ -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,
|
|
3
|
+
description: "Use antigravity-awesome-skills with Jetski/Cortex without hitting context-window overflow with 1,484+ skills."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# Jetski/Cortex + Gemini: safe integration with 1,
|
|
6
|
+
# Jetski/Cortex + Gemini: safe integration with 1,484+ 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,
|
|
26
|
+
With 1,484+ 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,
|
|
24
|
+
This pattern avoids context overflow when you have 1,484+ 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,
|
|
9
|
+
> Installable GitHub library of 1,484+ 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,484+ 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,484+ 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,
|
|
75
|
+
- All 1,484+ skills from the skills directory
|
|
76
76
|
|
|
77
77
|
## When to Update
|
|
78
78
|
|
|
@@ -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,
|
|
15
|
+
- It includes 1,484+ 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,
|
|
15
|
+
- It helps new users get started with bundles and workflows rather than forcing a cold start from 1,484+ 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
|
|
@@ -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,484+ 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,
|
|
17
|
+
✅ **Downloaded 1,484+ 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,
|
|
37
|
+
- You installed a toolbox with 1,484+ 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,
|
|
215
|
+
Don't try to use all 1,484+ 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,
|
|
346
|
+
No. Even though you have 1,484+ 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,
|
|
37
|
+
├── 📁 skills/ ← 1,484+ 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,
|
|
50
|
+
│ └── ... (1,484+ 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,
|
|
103
|
+
│ 1,484+ 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,
|
|
204
|
+
│ └── ... (1,484+ total) │
|
|
205
205
|
└─────────────────────────────────────────┘
|
|
206
206
|
```
|
|
207
207
|
|