opencode-skills-collection 3.1.1 → 3.1.2
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 +1 -1
- package/bundled-skills/2slides-ppt-generator/SKILL.md +8 -7
- package/bundled-skills/android-cli/SKILL.md +19 -7
- package/bundled-skills/android-ui-journey-testing/SKILL.md +5 -5
- package/bundled-skills/apple-notes-search/SKILL.md +12 -2
- package/bundled-skills/atlas-ledger/SKILL.md +8 -0
- package/bundled-skills/codex-fable5/SKILL.md +10 -2
- package/bundled-skills/competitor-analysis/scripts/gate_candidates.mjs +45 -15
- package/bundled-skills/docs/users/bundles.md +145 -1
- package/bundled-skills/docs/users/getting-started.md +1 -1
- package/bundled-skills/docs/users/specialized-plugin-roadmap.md +11 -4
- package/bundled-skills/dos-verify-done-claims/SKILL.md +16 -4
- package/bundled-skills/ecl-harness-engineer/agents/creator-config.md +1 -1
- package/bundled-skills/ecl-harness-engineer/references/environment-config-guide.md +2 -2
- package/bundled-skills/ecl-harness-engineer/references/environment-detection-guide.md +4 -4
- package/bundled-skills/event-staffing-ordering/SKILL.md +4 -0
- package/bundled-skills/loop-library/SKILL.md +7 -4
- package/bundled-skills/lovable-cleanup/SKILL.md +9 -7
- package/bundled-skills/macos-screen-recorder/SKILL.md +9 -1
- package/bundled-skills/mailtrap-managing-contacts/SKILL.md +1 -1
- package/bundled-skills/mailtrap-sending-emails/SKILL.md +1 -1
- package/bundled-skills/mailtrap-setting-up-sending-domain/SKILL.md +1 -1
- package/bundled-skills/screenstudio-alt/SKILL.md +9 -1
- package/bundled-skills/vibecode-production-qa-validator/SKILL.md +1 -1
- package/bundled-skills/youtube-notetaker/scripts/serve.py +63 -14
- package/package.json +1 -1
- package/skills_index.json +62 -49
|
@@ -47,7 +47,14 @@ Users must have a 2slides API key and credits:
|
|
|
47
47
|
3. **Set API Key:** Store the key in environment variable: `SLIDES_2SLIDES_API_KEY`
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
|
-
|
|
50
|
+
read -r -s SLIDES_2SLIDES_API_KEY
|
|
51
|
+
export SLIDES_2SLIDES_API_KEY
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
4. **Install Script Dependencies:** From this skill directory, install the pinned local requirements before using the Python scripts:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
python -m pip install -r requirements.txt
|
|
51
58
|
```
|
|
52
59
|
|
|
53
60
|
**Credit Costs:**
|
|
@@ -274,12 +281,6 @@ Section 2: [Subtopic]
|
|
|
274
281
|
|
|
275
282
|
Use the `create_pdf_slides.py` script:
|
|
276
283
|
|
|
277
|
-
Install the Python dependency first if it is not already available:
|
|
278
|
-
|
|
279
|
-
```bash
|
|
280
|
-
python -m pip install -r requirements.txt
|
|
281
|
-
```
|
|
282
|
-
|
|
283
284
|
```bash
|
|
284
285
|
# Basic generation
|
|
285
286
|
python scripts/create_pdf_slides.py --content "Your content here"
|
|
@@ -2,17 +2,23 @@
|
|
|
2
2
|
name: android-cli
|
|
3
3
|
description: Orchestrates Android development tasks including project creation, deployment, SDK management, and environment diagnostics using the `android` command-line tool.
|
|
4
4
|
category: tools
|
|
5
|
-
risk:
|
|
5
|
+
risk: critical
|
|
6
6
|
source: self
|
|
7
7
|
source_type: self
|
|
8
8
|
date_added: "2026-06-15"
|
|
9
9
|
author: Owais
|
|
10
10
|
tags: [android, cli, adb, mobile, build, emulator]
|
|
11
11
|
tools: [claude, cursor, gemini, antigravity]
|
|
12
|
+
plugin:
|
|
13
|
+
targets:
|
|
14
|
+
codex: blocked
|
|
15
|
+
claude: blocked
|
|
16
|
+
setup:
|
|
17
|
+
type: manual
|
|
18
|
+
summary: "Installer guidance executes remote Android CLI setup scripts; keep out of plugin-safe bundles."
|
|
19
|
+
docs: SKILL.md
|
|
12
20
|
---
|
|
13
21
|
|
|
14
|
-
<!-- security-allowlist: curl-pipe-bash -->
|
|
15
|
-
|
|
16
22
|
# Android CLI Specialist
|
|
17
23
|
|
|
18
24
|
This skill provides instructions for using the `android` CLI tool. The tool includes various commands for creating projects, running applications, interacting with devices, and managing the CLI environment.
|
|
@@ -26,11 +32,17 @@ This skill provides instructions for using the `android` CLI tool. The tool incl
|
|
|
26
32
|
|
|
27
33
|
## Installation
|
|
28
34
|
|
|
29
|
-
If the `android` tool is not in the path,
|
|
35
|
+
If the `android` tool is not in the path, download the platform installer to a private temporary directory, inspect it, then run it only after the user confirms the source and contents:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
tmpdir="$(mktemp -d "${TMPDIR:-/tmp}/android-cli.XXXXXX")" || exit 1
|
|
39
|
+
curl -fsSL https://dl.google.com/android/cli/latest/linux_x86_64/install.sh -o "$tmpdir/install.sh"
|
|
40
|
+
sed -n '1,160p' "$tmpdir/install.sh"
|
|
41
|
+
# After review and explicit user confirmation:
|
|
42
|
+
bash "$tmpdir/install.sh"
|
|
43
|
+
```
|
|
30
44
|
|
|
31
|
-
|
|
32
|
-
- **macOS:** `curl -fsSL https://dl.google.com/android/cli/latest/darwin_arm64/install.sh | bash`
|
|
33
|
-
- **Windows:** `curl.exe -fsSL https://dl.google.com/android/cli/latest/windows_x86_64/install.cmd -o "%TEMP%\i.cmd" && "%TEMP%\i.cmd"`
|
|
45
|
+
Use the matching `darwin_arm64/install.sh` or `windows_x86_64/install.cmd` URL for macOS or Windows. Do not pipe mutable network installer scripts directly into a shell.
|
|
34
46
|
|
|
35
47
|
## SDK Management
|
|
36
48
|
|
|
@@ -100,7 +100,7 @@ Format the execution results into a standardized JSON schema and write it to the
|
|
|
100
100
|
<action>Tap the username input field</action>
|
|
101
101
|
<action>Type "testuser" into the input</action>
|
|
102
102
|
<action>Tap the password input field</action>
|
|
103
|
-
<action>Type
|
|
103
|
+
<action>Type a redacted test password into the input</action>
|
|
104
104
|
<action>Tap the "Login" button</action>
|
|
105
105
|
<action>Verify that the Home dashboard is visible and user profile photo is shown</action>
|
|
106
106
|
</actions>
|
|
@@ -144,12 +144,12 @@ Format the execution results into a standardized JSON schema and write it to the
|
|
|
144
144
|
"comment": "Tapped center of password input."
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
|
-
"action": "Type
|
|
147
|
+
"action": "Type a redacted test password into the input",
|
|
148
148
|
"status": "PASSED",
|
|
149
149
|
"commands": [
|
|
150
|
-
"adb shell input text \"
|
|
150
|
+
"adb shell input text \"[REDACTED_PASSWORD]\""
|
|
151
151
|
],
|
|
152
|
-
"comment": "Password typed successfully."
|
|
152
|
+
"comment": "Password typed successfully. The actual input value was not stored in the report."
|
|
153
153
|
},
|
|
154
154
|
{
|
|
155
155
|
"action": "Tap the \"Login\" button",
|
|
@@ -177,7 +177,7 @@ Format the execution results into a standardized JSON schema and write it to the
|
|
|
177
177
|
$$x_{center} = \frac{x_1 + x_2}{2}, \quad y_{center} = \frac{y_1 + y_2}{2}$$
|
|
178
178
|
- ✅ **Include Sleep Buffers**: Always add a short delay (e.g., 1-2 seconds) after interactive actions (like button taps) to let layouts and transitions render before executing assertions.
|
|
179
179
|
- ✅ **Fail Fast**: Stop the test immediately upon encountering the first failure. Continuing after a failure leads to invalid results.
|
|
180
|
-
- ✅ **Log Precise Commands**: Include
|
|
180
|
+
- ✅ **Log Precise Commands Safely**: Include non-sensitive raw commands (such as `adb shell input tap`) in the JSON output list for diagnostics. Redact text entered into password, OTP, token, payment, or personal-data fields; never persist the literal secret in reports, CI logs, or shared artifacts.
|
|
181
181
|
|
|
182
182
|
## Limitations
|
|
183
183
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: apple-notes-search
|
|
3
3
|
description: "Semantic + keyword search and connection-discovery across the user's own Apple Notes via the apple-notes MCP server. Use when the user wants to find, recall, or synthesize something from their notes, or surface non-obvious bridges/related notes. macOS, on-device."
|
|
4
|
-
risk:
|
|
4
|
+
risk: critical
|
|
5
5
|
source: community
|
|
6
6
|
source_repo: connerkward/mcp-apple-notes
|
|
7
7
|
source_type: community
|
|
@@ -11,6 +11,14 @@ tags: [apple-notes, search, mcp, macos, semantic-search, knowledge]
|
|
|
11
11
|
tools: [claude-code]
|
|
12
12
|
license: "MIT"
|
|
13
13
|
license_source: "https://github.com/connerkward/mcp-apple-notes/blob/main/LICENSE"
|
|
14
|
+
plugin:
|
|
15
|
+
targets:
|
|
16
|
+
codex: blocked
|
|
17
|
+
claude: blocked
|
|
18
|
+
setup:
|
|
19
|
+
type: manual
|
|
20
|
+
summary: "Requires third-party MCP setup and macOS Full Disk Access; keep out of plugin-safe bundles."
|
|
21
|
+
docs: SKILL.md
|
|
14
22
|
---
|
|
15
23
|
|
|
16
24
|
# Apple Notes search & connection-discovery
|
|
@@ -50,7 +58,9 @@ Disk Access. Steps, in order:
|
|
|
50
58
|
2. **Clone + install deps:**
|
|
51
59
|
```bash
|
|
52
60
|
git clone https://github.com/connerkward/mcp-apple-notes
|
|
53
|
-
cd mcp-apple-notes
|
|
61
|
+
cd mcp-apple-notes
|
|
62
|
+
git checkout <reviewed-tag-or-commit>
|
|
63
|
+
bun install
|
|
54
64
|
```
|
|
55
65
|
3. **Grant Full Disk Access to bun.** Run `which bun`, then open System Settings →
|
|
56
66
|
Privacy & Security → Full Disk Access, click `+`, and add that exact `bun` binary
|
|
@@ -12,6 +12,14 @@ metadata:
|
|
|
12
12
|
version: "2.2.0"
|
|
13
13
|
author: wede-wx
|
|
14
14
|
repository: https://github.com/wede-wx/atlas
|
|
15
|
+
plugin:
|
|
16
|
+
targets:
|
|
17
|
+
codex: blocked
|
|
18
|
+
claude: blocked
|
|
19
|
+
setup:
|
|
20
|
+
type: manual
|
|
21
|
+
summary: "Writes durable Atlas.md project memory after confirmation; keep out of plugin-safe bundles."
|
|
22
|
+
docs: SKILL.md
|
|
15
23
|
---
|
|
16
24
|
|
|
17
25
|
# Atlas Ledger v2.2
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: codex-fable5
|
|
3
3
|
description: "Apply Fable-inspired discipline to Codex work: inspect first, track goals and findings, ground conclusions in evidence, verify before completion, and adapt Claude/Fable prompt guidance without identity or provider claims."
|
|
4
4
|
category: agent-behavior
|
|
5
|
-
risk:
|
|
5
|
+
risk: critical
|
|
6
6
|
source: community
|
|
7
7
|
source_repo: baskduf/FableCodex
|
|
8
8
|
source_type: community
|
|
@@ -12,6 +12,14 @@ tags: [codex, fable-style, agent-workflow, verification, prompt-adaptation]
|
|
|
12
12
|
tools: [codex, antigravity]
|
|
13
13
|
license: "AGPL-3.0-or-later"
|
|
14
14
|
license_source: "https://github.com/baskduf/FableCodex/blob/main/LICENSE"
|
|
15
|
+
plugin:
|
|
16
|
+
targets:
|
|
17
|
+
codex: blocked
|
|
18
|
+
claude: blocked
|
|
19
|
+
setup:
|
|
20
|
+
type: manual
|
|
21
|
+
summary: "Optional external plugin/helper setup executes mutable third-party code; keep out of plugin-safe bundles."
|
|
22
|
+
docs: SKILL.md
|
|
15
23
|
---
|
|
16
24
|
|
|
17
25
|
# Codex Fable5
|
|
@@ -64,7 +72,7 @@ Decide which operating mode fits the task:
|
|
|
64
72
|
For durable local ledgers, install the source plugin and use its helper CLI. Only do this in an authorized local workspace.
|
|
65
73
|
|
|
66
74
|
```bash
|
|
67
|
-
codex plugin marketplace add baskduf/FableCodex --ref
|
|
75
|
+
codex plugin marketplace add baskduf/FableCodex --ref <reviewed-tag-or-commit>
|
|
68
76
|
codex plugin add codex-fable5@fablecodex
|
|
69
77
|
```
|
|
70
78
|
|
|
@@ -57,6 +57,51 @@ const concurrency = Math.max(1, parseInt(flag('--concurrency') || '6', 10) || 0)
|
|
|
57
57
|
const heroChars = parseInt(flag('--hero-chars') || '800', 10);
|
|
58
58
|
const inputFile = flag('--input');
|
|
59
59
|
|
|
60
|
+
function stripHtml(html) {
|
|
61
|
+
const withoutActiveContent = removeElementContent(removeElementContent(html, 'script'), 'style');
|
|
62
|
+
return withoutActiveContent
|
|
63
|
+
.replace(/<[^>]*>/g, ' ')
|
|
64
|
+
.replace(/</g, '<')
|
|
65
|
+
.replace(/>/g, '>')
|
|
66
|
+
.replace(/"/g, '"')
|
|
67
|
+
.replace(/'/g, "'")
|
|
68
|
+
.replace(/ /g, ' ')
|
|
69
|
+
.replace(/&/g, '&')
|
|
70
|
+
.replace(/\s+/g, ' ')
|
|
71
|
+
.trim();
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
function removeElementContent(html, tagName) {
|
|
75
|
+
let out = '';
|
|
76
|
+
let cursor = 0;
|
|
77
|
+
const lower = html.toLowerCase();
|
|
78
|
+
const openNeedle = `<${tagName}`;
|
|
79
|
+
const closeNeedle = `</${tagName}`;
|
|
80
|
+
while (cursor < html.length) {
|
|
81
|
+
const start = lower.indexOf(openNeedle, cursor);
|
|
82
|
+
if (start === -1) {
|
|
83
|
+
out += html.slice(cursor);
|
|
84
|
+
break;
|
|
85
|
+
}
|
|
86
|
+
out += html.slice(cursor, start);
|
|
87
|
+
const close = lower.indexOf(closeNeedle, start + openNeedle.length);
|
|
88
|
+
if (close === -1) {
|
|
89
|
+
cursor = html.length;
|
|
90
|
+
break;
|
|
91
|
+
}
|
|
92
|
+
const closeEnd = html.indexOf('>', close + closeNeedle.length);
|
|
93
|
+
cursor = closeEnd === -1 ? html.length : closeEnd + 1;
|
|
94
|
+
out += ' ';
|
|
95
|
+
}
|
|
96
|
+
return out;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
if (args.includes('--self-test')) {
|
|
100
|
+
console.assert(stripHtml('<p>A&lt;B</p>') === 'A<B');
|
|
101
|
+
console.assert(stripHtml('<script>alert(1)</script ignored><p>ok</p>') === 'ok');
|
|
102
|
+
process.exit(0);
|
|
103
|
+
}
|
|
104
|
+
|
|
60
105
|
if (includes.length === 0) {
|
|
61
106
|
console.error('Error: --include is required');
|
|
62
107
|
process.exit(1);
|
|
@@ -75,21 +120,6 @@ if (urls.length === 0) {
|
|
|
75
120
|
process.exit(1);
|
|
76
121
|
}
|
|
77
122
|
|
|
78
|
-
function stripHtml(html) {
|
|
79
|
-
return html
|
|
80
|
-
.replace(/<script[^>]*>[\s\S]*?<\/script>/gi, ' ')
|
|
81
|
-
.replace(/<style[^>]*>[\s\S]*?<\/style>/gi, ' ')
|
|
82
|
-
.replace(/<[^>]*>/g, ' ')
|
|
83
|
-
.replace(/&/g, '&')
|
|
84
|
-
.replace(/</g, '<')
|
|
85
|
-
.replace(/>/g, '>')
|
|
86
|
-
.replace(/"/g, '"')
|
|
87
|
-
.replace(/'/g, "'")
|
|
88
|
-
.replace(/ /g, ' ')
|
|
89
|
-
.replace(/\s+/g, ' ')
|
|
90
|
-
.trim();
|
|
91
|
-
}
|
|
92
|
-
|
|
93
123
|
// Position-aware classification:
|
|
94
124
|
// 1. Exclude term in <title> → REJECT (their primary identity is the excluded category)
|
|
95
125
|
// 2. Include term in <title> → PASS (their primary identity matches)
|
|
@@ -378,6 +378,7 @@ _Frontend and full-stack developers shipping modern web apps._
|
|
|
378
378
|
- [`shadcn`](../../skills/shadcn/): Build polished interfaces with shadcn/ui.
|
|
379
379
|
- [`form-cro`](../../skills/form-cro/): Improve form conversion and usability.
|
|
380
380
|
- [`seo-audit`](../../skills/seo-audit/): Audit technical SEO and discoverability.
|
|
381
|
+
- [`ui-a11y`](../../skills/ui-a11y/): Audit WCAG, contrast, focus, labels, motion, and semantic HTML.
|
|
381
382
|
|
|
382
383
|
### 🎨 The "AAS Product Design Studio" Plugin
|
|
383
384
|
|
|
@@ -393,6 +394,8 @@ _Builders who want richer UI, brand, portfolio, and visual product work._
|
|
|
393
394
|
- [`canvas-design`](../../skills/canvas-design/): Generate visual assets, posters, and diagrams.
|
|
394
395
|
- [`scroll-experience`](../../skills/scroll-experience/): Design scroll-driven web experiences.
|
|
395
396
|
- [`interactive-portfolio`](../../skills/interactive-portfolio/): Create compelling interactive portfolios.
|
|
397
|
+
- [`ui-a11y`](../../skills/ui-a11y/): Audit WCAG, contrast, focus, labels, motion, and semantic HTML.
|
|
398
|
+
- [`ui-review`](../../skills/ui-review/): Review UI quality, usability, and product fit.
|
|
396
399
|
|
|
397
400
|
### 🛡️ The "AAS Security Engineer" Plugin
|
|
398
401
|
|
|
@@ -409,6 +412,7 @@ _Authorized security testing, audit, and hardening teams._
|
|
|
409
412
|
- [`security-auditor`](../../skills/security-auditor/): Run comprehensive security audits.
|
|
410
413
|
- [`vulnerability-scanner`](../../skills/vulnerability-scanner/): Analyze and validate vulnerability findings.
|
|
411
414
|
- [`sast-configuration`](../../skills/sast-configuration/): Configure static application security testing.
|
|
415
|
+
- [`web-security-testing`](../../skills/web-security-testing/): Test web application security defensively.
|
|
412
416
|
|
|
413
417
|
### 🔐 The "AAS Secure App Builder" Plugin
|
|
414
418
|
|
|
@@ -424,6 +428,8 @@ _Application developers who want security embedded while building features._
|
|
|
424
428
|
- [`pci-compliance`](../../skills/pci-compliance/): Handle payment security and PCI expectations.
|
|
425
429
|
- [`sast-configuration`](../../skills/sast-configuration/): Configure static application security testing.
|
|
426
430
|
- [`sql-injection-testing`](../../skills/sql-injection-testing/): Find and validate SQL injection risks.
|
|
431
|
+
- [`broken-authentication`](../../skills/broken-authentication/): Find and prevent authentication implementation flaws.
|
|
432
|
+
- [`django-access-review`](../../skills/django-access-review/): Review Django access control and authorization behavior.
|
|
427
433
|
|
|
428
434
|
### 📄 The "AAS Documents & Presentations" Plugin
|
|
429
435
|
|
|
@@ -437,6 +443,7 @@ _Users creating, editing, converting, and automating office documents._
|
|
|
437
443
|
- [`pptx-official`](../../skills/pptx-official/): Create and edit PowerPoint-compatible presentations.
|
|
438
444
|
- [`pdf-official`](../../skills/pdf-official/): Extract, generate, and manipulate PDFs.
|
|
439
445
|
- [`pdf-conversion-router`](../../skills/pdf-conversion-router/): Choose high-fidelity PDF conversion routes.
|
|
446
|
+
- [`google-docs-automation`](../../skills/google-docs-automation/): Automate Google Docs creation and updates.
|
|
440
447
|
- [`google-sheets-automation`](../../skills/google-sheets-automation/): Automate Google Sheets reads and writes.
|
|
441
448
|
- [`google-slides-automation`](../../skills/google-slides-automation/): Automate Google Slides updates.
|
|
442
449
|
|
|
@@ -447,6 +454,7 @@ _Operators, analysts, and builders working with product analytics, SQL, dashboar
|
|
|
447
454
|
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
448
455
|
|
|
449
456
|
- [`analytics-tracking`](../../skills/analytics-tracking/): Set up reliable product analytics.
|
|
457
|
+
- [`analytics-product`](../../skills/analytics-product/): Model product analytics and product metrics.
|
|
450
458
|
- [`sql-pro`](../../skills/sql-pro/): Query and model data with modern SQL.
|
|
451
459
|
- [`postgres-best-practices`](../../skills/postgres-best-practices/): Optimize Postgres schemas and queries.
|
|
452
460
|
- [`database-architect`](../../skills/database-architect/): Design robust database structures.
|
|
@@ -454,6 +462,7 @@ _Operators, analysts, and builders working with product analytics, SQL, dashboar
|
|
|
454
462
|
- [`claude-d3js-skill`](../../skills/claude-d3js-skill/): Create custom D3 visualizations.
|
|
455
463
|
- [`kpi-dashboard-design`](../../skills/kpi-dashboard-design/): Design dashboards for decision-making.
|
|
456
464
|
- [`ab-test-setup`](../../skills/ab-test-setup/): Plan and validate experiments.
|
|
465
|
+
- [`business-analyst`](../../skills/business-analyst/): Analyze business context, requirements, and tradeoffs.
|
|
457
466
|
|
|
458
467
|
### 🤖 The "AAS Agent & MCP Builder" Plugin
|
|
459
468
|
|
|
@@ -470,6 +479,7 @@ _Developers building agentic apps, MCP tools, RAG systems, and evaluation loops.
|
|
|
470
479
|
- [`langgraph`](../../skills/langgraph/): Implement stateful agent workflows.
|
|
471
480
|
- [`langfuse`](../../skills/langfuse/): Trace, evaluate, and monitor LLM apps.
|
|
472
481
|
- [`context-window-management`](../../skills/context-window-management/): Manage long context effectively.
|
|
482
|
+
- [`prompt-engineering`](../../skills/prompt-engineering/): Design effective prompts and LLM interaction patterns.
|
|
473
483
|
|
|
474
484
|
### 🧰 The "AAS OSS Maintainer" Plugin
|
|
475
485
|
|
|
@@ -503,6 +513,7 @@ _Engineers and QA teams writing, debugging, and stabilizing test suites._
|
|
|
503
513
|
- [`k6-load-testing`](../../skills/k6-load-testing/): Run load and scalability tests.
|
|
504
514
|
- [`test-fixing`](../../skills/test-fixing/): Fix failing tests systematically.
|
|
505
515
|
- [`code-review-checklist`](../../skills/code-review-checklist/): Catch common bugs in reviews.
|
|
516
|
+
- [`screen-reader-testing`](../../skills/screen-reader-testing/): Test interfaces with screen-reader expectations.
|
|
506
517
|
|
|
507
518
|
### ☁️ The "AAS DevOps & Cloud" Plugin
|
|
508
519
|
|
|
@@ -519,6 +530,7 @@ _Teams shipping infrastructure, deployments, and operational workflows._
|
|
|
519
530
|
- [`deployment-procedures`](../../skills/deployment-procedures/): Roll out changes safely.
|
|
520
531
|
- [`bash-linux`](../../skills/bash-linux/): Use Linux shell workflows effectively.
|
|
521
532
|
- [`incident-responder`](../../skills/incident-responder/): Respond to incidents with clear procedure.
|
|
533
|
+
- [`devops-troubleshooter`](../../skills/devops-troubleshooter/): Diagnose infrastructure and deployment issues.
|
|
522
534
|
|
|
523
535
|
|
|
524
536
|
---
|
|
@@ -534,6 +546,7 @@ _Founders and growth teams creating content, SEO systems, experiments, and email
|
|
|
534
546
|
- [`content-creator`](../../skills/content-creator/): Create SEO-aware marketing content.
|
|
535
547
|
- [`seo-audit`](../../skills/seo-audit/): Audit technical SEO and discoverability.
|
|
536
548
|
- [`seo-fundamentals`](../../skills/seo-fundamentals/): Apply durable SEO principles.
|
|
549
|
+
- [`seo-content-planner`](../../skills/seo-content-planner/): Plan SEO content clusters and calendars.
|
|
537
550
|
- [`programmatic-seo`](../../skills/programmatic-seo/): Create scalable SEO page systems.
|
|
538
551
|
- [`analytics-tracking`](../../skills/analytics-tracking/): Set up reliable product analytics.
|
|
539
552
|
- [`ab-test-setup`](../../skills/ab-test-setup/): Plan and validate experiments.
|
|
@@ -550,11 +563,13 @@ _Teams designing reliable automations across tools, data stores, and communicati
|
|
|
550
563
|
- [`workflow-automation`](../../skills/workflow-automation/): Design durable automation workflows.
|
|
551
564
|
- [`mcp-builder`](../../skills/mcp-builder/): Create MCP interfaces for agents.
|
|
552
565
|
- [`make-automation`](../../skills/make-automation/): Build Make/Integromat automations.
|
|
566
|
+
- [`zapier-make-patterns`](../../skills/zapier-make-patterns/): Design Zapier and Make automation patterns.
|
|
553
567
|
- [`airtable-automation`](../../skills/airtable-automation/): Automate Airtable data and views.
|
|
554
568
|
- [`notion-automation`](../../skills/notion-automation/): Automate Notion pages and databases.
|
|
555
569
|
- [`slack-automation`](../../skills/slack-automation/): Automate Slack workflows.
|
|
556
570
|
- [`googlesheets-automation`](../../skills/googlesheets-automation/): Automate Google Sheets operations.
|
|
557
571
|
- [`github-automation`](../../skills/github-automation/): Automate GitHub issues and repository work.
|
|
572
|
+
- [`n8n-expression-syntax`](../../skills/n8n-expression-syntax/): Use n8n expressions safely in automations.
|
|
558
573
|
|
|
559
574
|
### 📡 The "AAS Observability IR" Plugin
|
|
560
575
|
|
|
@@ -570,6 +585,8 @@ _Engineering teams monitoring systems, debugging production issues, and writing
|
|
|
570
585
|
- [`performance-engineer`](../../skills/performance-engineer/): Diagnose and improve application performance.
|
|
571
586
|
- [`grafana-dashboards`](../../skills/grafana-dashboards/): Create useful Grafana dashboards.
|
|
572
587
|
- [`langfuse`](../../skills/langfuse/): Trace, evaluate, and monitor LLM apps.
|
|
588
|
+
- [`devops-troubleshooter`](../../skills/devops-troubleshooter/): Diagnose infrastructure and deployment issues.
|
|
589
|
+
- [`claude-monitor`](../../skills/claude-monitor/): Monitor Claude usage and operational behavior.
|
|
573
590
|
|
|
574
591
|
### 🐍 The "AAS Python API Builder" Plugin
|
|
575
592
|
|
|
@@ -585,6 +602,8 @@ _Python developers building APIs, services, and tests._
|
|
|
585
602
|
- [`python-testing-patterns`](../../skills/python-testing-patterns/): Test Python code with pytest patterns.
|
|
586
603
|
- [`async-python-patterns`](../../skills/async-python-patterns/): Use asyncio and async Python safely.
|
|
587
604
|
- [`api-design-principles`](../../skills/api-design-principles/): Design clear and maintainable APIs.
|
|
605
|
+
- [`pydantic-models-py`](../../skills/pydantic-models-py/): Design Pydantic models for Python APIs.
|
|
606
|
+
- [`openapi-spec-generation`](../../skills/openapi-spec-generation/): Generate and maintain OpenAPI specifications.
|
|
588
607
|
|
|
589
608
|
### 📱 The "AAS Mobile App Builder" Plugin
|
|
590
609
|
|
|
@@ -601,6 +620,7 @@ _Mobile teams shipping Expo, React Native, Flutter, and iOS apps._
|
|
|
601
620
|
- [`flutter-expert`](../../skills/flutter-expert/): Build Flutter multi-platform apps.
|
|
602
621
|
- [`ios-developer`](../../skills/ios-developer/): Develop iOS apps with Swift.
|
|
603
622
|
- [`app-store-optimization`](../../skills/app-store-optimization/): Improve App Store and Play Store visibility.
|
|
623
|
+
- [`multi-platform-apps-multi-platform`](../../skills/multi-platform-apps-multi-platform/): Plan and build multi-platform app experiences.
|
|
604
624
|
|
|
605
625
|
|
|
606
626
|
---
|
|
@@ -826,6 +846,130 @@ _For creating and maintaining high-quality SKILL.md assets._
|
|
|
826
846
|
- [`lint-and-validate`](../../skills/lint-and-validate/): Validate quality after edits.
|
|
827
847
|
- [`verification-before-completion`](../../skills/verification-before-completion/): Confirm changes before claiming done.
|
|
828
848
|
|
|
849
|
+
|
|
850
|
+
---
|
|
851
|
+
|
|
852
|
+
## ⭐ Specialized Product Plugins
|
|
853
|
+
|
|
854
|
+
### ♿ The "AAS Accessibility & Inclusive UX" Plugin
|
|
855
|
+
|
|
856
|
+
_Design, frontend, QA, and product teams improving accessible user experiences._
|
|
857
|
+
|
|
858
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe · Requires manual setup
|
|
859
|
+
|
|
860
|
+
- [`accesslint-audit`](../../skills/accesslint-audit/): Audit accessibility issues with AccessLint workflows.
|
|
861
|
+
- [`accesslint-scan`](../../skills/accesslint-scan/): Scan interfaces for accessibility regressions.
|
|
862
|
+
- [`screen-reader-testing`](../../skills/screen-reader-testing/): Test interfaces with screen-reader expectations.
|
|
863
|
+
- [`accesslint-diff`](../../skills/accesslint-diff/): Review accessibility changes and regressions in diffs.
|
|
864
|
+
- [`fixing-accessibility`](../../skills/fixing-accessibility/): Fix accessibility issues in product UI.
|
|
865
|
+
- [`ui-a11y`](../../skills/ui-a11y/): Audit WCAG, contrast, focus, labels, motion, and semantic HTML.
|
|
866
|
+
- [`webapp-testing`](../../skills/webapp-testing/): Use webapp-testing in this workflow.
|
|
867
|
+
- [`playwright-skill`](../../skills/playwright-skill/): Use playwright-skill in this workflow. _(manual setup)_
|
|
868
|
+
|
|
869
|
+
### 🔌 The "AAS API Platform Builder" Plugin
|
|
870
|
+
|
|
871
|
+
_Backend and platform teams designing APIs, contracts, auth, security, load tests, and observability._
|
|
872
|
+
|
|
873
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
874
|
+
|
|
875
|
+
- [`api-design-principles`](../../skills/api-design-principles/): Design clear and maintainable APIs.
|
|
876
|
+
- [`api-patterns`](../../skills/api-patterns/): Choose REST, GraphQL, tRPC, and API patterns.
|
|
877
|
+
- [`openapi-spec-generation`](../../skills/openapi-spec-generation/): Generate and maintain OpenAPI specifications.
|
|
878
|
+
- [`api-documentation`](../../skills/api-documentation/): Document APIs for users and maintainers.
|
|
879
|
+
- [`api-endpoint-builder`](../../skills/api-endpoint-builder/): Build API endpoints with sound boundaries.
|
|
880
|
+
- [`auth-implementation-patterns`](../../skills/auth-implementation-patterns/): Implement auth, sessions, JWT, and OAuth2 safely.
|
|
881
|
+
- [`api-security-best-practices`](../../skills/api-security-best-practices/): Apply secure API design practices.
|
|
882
|
+
- [`backend-architect`](../../skills/backend-architect/): Architect backend services and platform boundaries.
|
|
883
|
+
- [`k6-load-testing`](../../skills/k6-load-testing/): Run API and service load tests.
|
|
884
|
+
- [`observability-engineer`](../../skills/observability-engineer/): Design monitoring and observability systems.
|
|
885
|
+
|
|
886
|
+
### 💸 The "AAS SaaS Launch & Revenue" Plugin
|
|
887
|
+
|
|
888
|
+
_Founders and product teams launching, pricing, monetizing, measuring, and improving SaaS products._
|
|
889
|
+
|
|
890
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
891
|
+
|
|
892
|
+
- [`saas-mvp-launcher`](../../skills/saas-mvp-launcher/): Launch SaaS MVPs with practical product flow.
|
|
893
|
+
- [`micro-saas-launcher`](../../skills/micro-saas-launcher/): Plan and ship micro-SaaS products.
|
|
894
|
+
- [`pricing-strategy`](../../skills/pricing-strategy/): Design pricing and packaging strategy.
|
|
895
|
+
- [`monetization`](../../skills/monetization/): Design monetization systems deliberately.
|
|
896
|
+
- [`stripe-integration`](../../skills/stripe-integration/): Integrate Stripe payments and subscriptions.
|
|
897
|
+
- [`analytics-product`](../../skills/analytics-product/): Model product analytics and product metrics.
|
|
898
|
+
- [`launch-strategy`](../../skills/launch-strategy/): Plan product launches and go-to-market steps.
|
|
899
|
+
- [`referral-program`](../../skills/referral-program/): Design referral and growth loops.
|
|
900
|
+
- [`email-sequence`](../../skills/email-sequence/): Write automated lifecycle email campaigns.
|
|
901
|
+
- [`seo-audit`](../../skills/seo-audit/): Audit technical SEO and discoverability.
|
|
902
|
+
|
|
903
|
+
### 🧠 The "AAS AI Product & Evaluation Ops" Plugin
|
|
904
|
+
|
|
905
|
+
_PMs, founders, and AI product teams defining, measuring, and improving AI features._
|
|
906
|
+
|
|
907
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
908
|
+
|
|
909
|
+
- [`ai-wrapper-product`](../../skills/ai-wrapper-product/): Shape AI wrapper products with clearer value.
|
|
910
|
+
- [`agent-evaluation`](../../skills/agent-evaluation/): Evaluate agent reliability and performance.
|
|
911
|
+
- [`langfuse`](../../skills/langfuse/): Trace, evaluate, and monitor LLM apps.
|
|
912
|
+
- [`llm-app-patterns`](../../skills/llm-app-patterns/): Use production LLM application patterns.
|
|
913
|
+
- [`context-window-management`](../../skills/context-window-management/): Manage long context effectively.
|
|
914
|
+
- [`kpi-dashboard-design`](../../skills/kpi-dashboard-design/): Design dashboards for decision-making.
|
|
915
|
+
- [`analytics-product`](../../skills/analytics-product/): Model product analytics and product metrics.
|
|
916
|
+
- [`product-manager`](../../skills/product-manager/): Apply product management judgment and planning.
|
|
917
|
+
- [`ab-test-setup`](../../skills/ab-test-setup/): Plan and validate experiments.
|
|
918
|
+
- [`hugging-face-evaluation`](../../skills/hugging-face-evaluation/): Evaluate AI models and datasets with Hugging Face workflows.
|
|
919
|
+
|
|
920
|
+
|
|
921
|
+
---
|
|
922
|
+
|
|
923
|
+
## 🧩 Specialized Product Plugins - Next Wave
|
|
924
|
+
|
|
925
|
+
### 🛠️ The "AAS Data Engineering Platform" Plugin
|
|
926
|
+
|
|
927
|
+
_Data and AI platform teams building pipelines, warehouses, transforms, embeddings, and RAG-ready data foundations._
|
|
928
|
+
|
|
929
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
930
|
+
|
|
931
|
+
- [`data-engineer`](../../skills/data-engineer/): Design and operate data pipelines.
|
|
932
|
+
- [`airflow-dag-patterns`](../../skills/airflow-dag-patterns/): Build maintainable Airflow DAGs.
|
|
933
|
+
- [`dbt-transformation-patterns`](../../skills/dbt-transformation-patterns/): Build dbt transformation pipelines.
|
|
934
|
+
- [`postgres-best-practices`](../../skills/postgres-best-practices/): Optimize Postgres schemas and queries.
|
|
935
|
+
- [`database-architect`](../../skills/database-architect/): Design robust database structures.
|
|
936
|
+
- [`vector-database-engineer`](../../skills/vector-database-engineer/): Design vector database systems.
|
|
937
|
+
- [`embedding-strategies`](../../skills/embedding-strategies/): Choose and operate embedding strategies.
|
|
938
|
+
- [`rag-engineer`](../../skills/rag-engineer/): Build retrieval-augmented generation systems.
|
|
939
|
+
- [`sql-pro`](../../skills/sql-pro/): Query and model data with modern SQL.
|
|
940
|
+
- [`fp-data-transforms`](../../skills/fp-data-transforms/): Build reliable data transformation flows.
|
|
941
|
+
|
|
942
|
+
### 🧾 The "AAS Privacy & Compliance Engineering" Plugin
|
|
943
|
+
|
|
944
|
+
_Teams building privacy-aware and compliance-sensitive SaaS, AI, finance, and cloud systems._
|
|
945
|
+
|
|
946
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
947
|
+
|
|
948
|
+
- [`privacy-by-design`](../../skills/privacy-by-design/): Apply privacy-by-design principles.
|
|
949
|
+
- [`gdpr-data-handling`](../../skills/gdpr-data-handling/): Handle GDPR-sensitive data safely.
|
|
950
|
+
- [`pci-compliance`](../../skills/pci-compliance/): Handle payment security and PCI expectations.
|
|
951
|
+
- [`fsi-compliance-checker`](../../skills/fsi-compliance-checker/): Check financial-services compliance requirements.
|
|
952
|
+
- [`spec-to-code-compliance`](../../skills/spec-to-code-compliance/): Verify implementation against written specs.
|
|
953
|
+
- [`security-audit`](../../skills/security-audit/): Audit security posture and controls.
|
|
954
|
+
- [`cc-skill-security-review`](../../skills/cc-skill-security-review/): Review features with a security checklist.
|
|
955
|
+
|
|
956
|
+
### 🌍 The "AAS Localization & International Growth" Plugin
|
|
957
|
+
|
|
958
|
+
_Growth, content, and product teams expanding sites and products across languages and markets._
|
|
959
|
+
|
|
960
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
961
|
+
|
|
962
|
+
- [`i18n-localization`](../../skills/i18n-localization/): Internationalize and localize product interfaces.
|
|
963
|
+
- [`seo-hreflang`](../../skills/seo-hreflang/): Implement hreflang and international SEO signals.
|
|
964
|
+
- [`seo-fundamentals`](../../skills/seo-fundamentals/): Apply durable SEO principles.
|
|
965
|
+
- [`seo-content-planner`](../../skills/seo-content-planner/): Plan SEO content clusters and calendars.
|
|
966
|
+
- [`seo-content-writer`](../../skills/seo-content-writer/): Write search-aware content drafts.
|
|
967
|
+
- [`schema-markup`](../../skills/schema-markup/): Add structured data for search visibility.
|
|
968
|
+
- [`content-creator`](../../skills/content-creator/): Create SEO-aware marketing content.
|
|
969
|
+
- [`copywriting`](../../skills/copywriting/): Write conversion-focused copy.
|
|
970
|
+
- [`analytics-tracking`](../../skills/analytics-tracking/): Set up reliable product analytics.
|
|
971
|
+
- [`apify-market-research`](../../skills/apify-market-research/): Research markets and competitors with Apify workflows.
|
|
972
|
+
|
|
829
973
|
## 📚 How to Use Bundles
|
|
830
974
|
|
|
831
975
|
### 1) Pick by immediate goal
|
|
@@ -917,4 +1061,4 @@ Found a skill that should be in a bundle? Or want to create a new bundle? [Open
|
|
|
917
1061
|
|
|
918
1062
|
---
|
|
919
1063
|
|
|
920
|
-
_Last updated: March 2026 | Total Skills: 1,678+ | Total Bundles:
|
|
1064
|
+
_Last updated: March 2026 | Total Skills: 1,678+ | Total Bundles: 59_
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This roadmap shifts Antigravity Awesome Skills from "one giant plugin with every safe skill" toward a smaller set of focused, high-value Codex and Claude plugins.
|
|
4
4
|
|
|
5
|
-
The full catalog remains useful as a repository and installer. The plugin product should be different: clear jobs, narrow install surfaces, strong names, and skill groups that users can trust without browsing 1,
|
|
5
|
+
The full catalog remains useful as a repository and installer. The plugin product should be different: clear jobs, narrow install surfaces, strong names, and skill groups that users can trust without browsing 1,678 options.
|
|
6
6
|
|
|
7
7
|
## Official Codex Basis
|
|
8
8
|
|
|
@@ -19,7 +19,7 @@ That makes specialized plugins the better default product shape. A root plugin c
|
|
|
19
19
|
|
|
20
20
|
This pass evaluated the full local catalog in `data/skills_index.json`:
|
|
21
21
|
|
|
22
|
-
- Total skills evaluated: 1,
|
|
22
|
+
- Total skills evaluated: 1,678.
|
|
23
23
|
- Broadest categories: development, cloud, AI/ML, security, business, workflow, content, marketing, automation, and web development.
|
|
24
24
|
- Existing editorial bundles are all small and mostly plugin-compatible, which makes them a good starting point.
|
|
25
25
|
- The stronger opportunity is to turn the best bundles into first-class product plugins with sharper names, richer descriptions, and optional app/MCP extensions.
|
|
@@ -44,6 +44,10 @@ These should become the primary marketplace surface.
|
|
|
44
44
|
| AAS OSS Maintainer | Manage PRs, reviews, releases, changelogs, and repo guidance. | Very useful for this repository's own maintainer workflow. |
|
|
45
45
|
| AAS QA & Test Automation | Write, debug, stabilize, and scale tests. | Testing is a workflow chain: TDD, browser automation, failure diagnosis, and regression prevention. |
|
|
46
46
|
| AAS DevOps & Cloud | Ship infrastructure, deployment, and operational workflows. | Strong fit for scripts, deployment gates, incident practice, and cloud patterns. |
|
|
47
|
+
| AAS Accessibility & Inclusive UX | Audit, test, and fix accessible product experiences. | Accessibility is a standalone product-quality workflow across audit, automated scans, screen readers, fixes, and QA. |
|
|
48
|
+
| AAS API Platform Builder | Design language-agnostic API platforms. | Complements Python API Builder with OpenAPI, auth, security, documentation, load testing, and observability. |
|
|
49
|
+
| AAS SaaS Launch & Revenue | Launch, price, monetize, measure, and grow SaaS products. | Turns startup, pricing, payments, analytics, lifecycle, referral, and SEO skills into one revenue workflow. |
|
|
50
|
+
| AAS AI Product & Evaluation Ops | Define, evaluate, instrument, and improve AI product features. | Covers the PM/product side of AI: metrics, evals, tracing, experiments, model evaluation, and context constraints. |
|
|
47
51
|
|
|
48
52
|
## Tier 2 Plugins
|
|
49
53
|
|
|
@@ -56,6 +60,9 @@ These are promising and should be hardened after Tier 1.
|
|
|
56
60
|
| AAS Observability IR | Monitor systems, debug production, and write postmortems. | Operational work benefits from consistent proof gates. |
|
|
57
61
|
| AAS Python API Builder | Build Python APIs and services with tests. | Language-specialized plugin with practical framework coverage. |
|
|
58
62
|
| AAS Mobile App Builder | Ship Expo, React Native, Flutter, and iOS apps. | Covers architecture, release, CI, native platforms, and store optimization. |
|
|
63
|
+
| AAS Data Engineering Platform | Build pipelines, transforms, warehouses, embeddings, and RAG-ready data foundations. | Connects analytics engineering, data pipelines, vector databases, and AI data foundations. |
|
|
64
|
+
| AAS Privacy & Compliance Engineering | Engineer privacy and compliance controls. | Uses existing GDPR, PCI, privacy-by-design, compliance, spec, and security review skills without inventing new skills. |
|
|
65
|
+
| AAS Localization & International Growth | Expand products across languages and markets. | Combines existing i18n, hreflang, SEO, content, copy, analytics, and market research skills. |
|
|
59
66
|
|
|
60
67
|
## Recommended Product Changes
|
|
61
68
|
|
|
@@ -86,10 +93,10 @@ These are promising and should be hardened after Tier 1.
|
|
|
86
93
|
|
|
87
94
|
Implemented in the repository:
|
|
88
95
|
|
|
89
|
-
- `data/editorial-bundles.json` includes all
|
|
96
|
+
- `data/editorial-bundles.json` includes all 22 specialized plugin candidates.
|
|
90
97
|
- `data/specialized-plugin-candidates.json` remains the source-of-truth shortlist and rationale.
|
|
91
98
|
- `plugins/antigravity-bundle-aas-*` contains the generated plugin folders.
|
|
92
99
|
- `.agents/plugins/marketplace.json` and `.claude-plugin/marketplace.json` expose the generated plugin entries.
|
|
93
100
|
- `docs/users/bundles.md` renders the specialized plugin sections for users.
|
|
94
101
|
|
|
95
|
-
Future improvements should focus on
|
|
102
|
+
Future improvements should focus on brand metadata, optional MCP/app integrations where a plugin naturally needs live tools, and keeping every plugin backed by existing canonical skills.
|