opencode-skills-collection 3.1.1 → 3.1.3
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 +4 -1
- package/bundled-skills/2slides-ppt-generator/SKILL.md +8 -7
- package/bundled-skills/agent-creator/SKILL.md +246 -0
- 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/ax-extract-workflow/SKILL.md +156 -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/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/sources/sources.md +1 -1
- package/bundled-skills/docs/users/bundles.md +145 -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/specialized-plugin-roadmap.md +11 -4
- package/bundled-skills/docs/users/usage.md +4 -4
- package/bundled-skills/docs/users/visual-guide.md +4 -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 +11 -8
- 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/remote-gpu-trainer/.gitattributes +8 -0
- package/bundled-skills/remote-gpu-trainer/LICENSE +21 -0
- package/bundled-skills/remote-gpu-trainer/README.md +267 -0
- package/bundled-skills/remote-gpu-trainer/SKILL.md +249 -0
- package/bundled-skills/remote-gpu-trainer/evals/README.md +57 -0
- package/bundled-skills/remote-gpu-trainer/evals/RESULTS.md +44 -0
- package/bundled-skills/remote-gpu-trainer/evals/cases.jsonl +14 -0
- package/bundled-skills/remote-gpu-trainer/evals/run_evals.py +68 -0
- package/bundled-skills/remote-gpu-trainer/examples/autodl_sweep/README.md +72 -0
- package/bundled-skills/remote-gpu-trainer/examples/autodl_sweep/queue_1.txt +6 -0
- package/bundled-skills/remote-gpu-trainer/profiles/_schema.md +100 -0
- package/bundled-skills/remote-gpu-trainer/profiles/autodl.md +327 -0
- package/bundled-skills/remote-gpu-trainer/profiles/china.md +397 -0
- package/bundled-skills/remote-gpu-trainer/profiles/generic-ssh.md +450 -0
- package/bundled-skills/remote-gpu-trainer/profiles/lambda.md +342 -0
- package/bundled-skills/remote-gpu-trainer/profiles/paperspace.md +365 -0
- package/bundled-skills/remote-gpu-trainer/profiles/runpod.md +164 -0
- package/bundled-skills/remote-gpu-trainer/profiles/vastai.md +355 -0
- package/bundled-skills/remote-gpu-trainer/references/china-network.md +206 -0
- package/bundled-skills/remote-gpu-trainer/references/gotchas_universal.md +704 -0
- package/bundled-skills/remote-gpu-trainer/references/lifecycle_checklist.md +148 -0
- package/bundled-skills/remote-gpu-trainer/references/monitoring_patterns.md +327 -0
- package/bundled-skills/remote-gpu-trainer/references/multinode.md +190 -0
- package/bundled-skills/remote-gpu-trainer/references/parallel_ablation.md +196 -0
- package/bundled-skills/remote-gpu-trainer/references/principles.md +179 -0
- package/bundled-skills/remote-gpu-trainer/references/self-improvement.md +74 -0
- package/bundled-skills/remote-gpu-trainer/references/spot-resilience.md +235 -0
- package/bundled-skills/remote-gpu-trainer/references/ssh_transport.md +270 -0
- package/bundled-skills/remote-gpu-trainer/references/training/by-domain.md +230 -0
- package/bundled-skills/remote-gpu-trainer/references/training/checkpoint-resume.md +368 -0
- package/bundled-skills/remote-gpu-trainer/references/training/convergence-debugging.md +187 -0
- package/bundled-skills/remote-gpu-trainer/references/training/data-pipeline.md +119 -0
- package/bundled-skills/remote-gpu-trainer/references/training/distributed-launch.md +422 -0
- package/bundled-skills/remote-gpu-trainer/references/training/oom-memory.md +338 -0
- package/bundled-skills/remote-gpu-trainer/references/training/precision-stability.md +401 -0
- package/bundled-skills/remote-gpu-trainer/references/training/throughput-profiling.md +451 -0
- package/bundled-skills/remote-gpu-trainer/scripts/aggregate_to_fs.sh +55 -0
- package/bundled-skills/remote-gpu-trainer/scripts/check_staleness.py +70 -0
- package/bundled-skills/remote-gpu-trainer/scripts/download_loop.sh +67 -0
- package/bundled-skills/remote-gpu-trainer/scripts/gpu_health.sh +169 -0
- package/bundled-skills/remote-gpu-trainer/scripts/health_patrol.sh.template +67 -0
- package/bundled-skills/remote-gpu-trainer/scripts/mem_monitor.sh +67 -0
- package/bundled-skills/remote-gpu-trainer/scripts/reap_vram_zombies.sh +175 -0
- package/bundled-skills/remote-gpu-trainer/scripts/run_one.sh.template +104 -0
- package/bundled-skills/remote-gpu-trainer/scripts/run_queue.sh.template +83 -0
- package/bundled-skills/remote-gpu-trainer/scripts/setup-china-mirrors.sh +35 -0
- package/bundled-skills/remote-gpu-trainer/scripts/verify_local.py +145 -0
- 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 +128 -49
|
@@ -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)
|
|
@@ -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,681+ skills."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# Jetski/Cortex + Gemini: safe integration with 1,
|
|
6
|
+
# Jetski/Cortex + Gemini: safe integration with 1,681+ 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,681+ 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,681+ 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,681+ 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,681+ 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,681+ 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,681+ skills from the skills directory
|
|
76
76
|
|
|
77
77
|
## When to Update
|
|
78
78
|
|
|
@@ -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:
|
|
1064
|
+
_Last updated: June 2026 | Total Skills: 1,681+ | Total Bundles: 59_
|
|
@@ -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,681+ 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,681+ 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,681+ 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
|
|
@@ -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.
|
|
@@ -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,681+ 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,681+ 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,681+ 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,681+ 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,681+ 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,681+ 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,681+ 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,681+ total) │
|
|
205
205
|
└─────────────────────────────────────────┘
|
|
206
206
|
```
|
|
207
207
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: dos-verify-done-claims
|
|
3
3
|
description: "Before accepting an agent's 'done / shipped / fixed' claim, verify it against ground truth (git ancestry + the commit's own diff) using the DOS kernel's `dos verify` and `dos commit-audit` — never the agent's own narration."
|
|
4
4
|
category: quality
|
|
5
|
-
risk:
|
|
5
|
+
risk: critical
|
|
6
6
|
source: community
|
|
7
7
|
source_repo: anthony-chaudhary/dos-kernel
|
|
8
8
|
source_type: community
|
|
@@ -12,6 +12,14 @@ tags: [verification, git, ai-agents, trust, quality-gate]
|
|
|
12
12
|
tools: [claude, cursor, gemini]
|
|
13
13
|
license: "MIT"
|
|
14
14
|
license_source: "https://github.com/anthony-chaudhary/dos-kernel/blob/master/LICENSE"
|
|
15
|
+
plugin:
|
|
16
|
+
targets:
|
|
17
|
+
codex: blocked
|
|
18
|
+
claude: blocked
|
|
19
|
+
setup:
|
|
20
|
+
type: manual
|
|
21
|
+
summary: "Setup installs and executes an external PyPI CLI; keep out of plugin-safe bundles."
|
|
22
|
+
docs: SKILL.md
|
|
15
23
|
---
|
|
16
24
|
|
|
17
25
|
# Verify done-claims against ground truth, not the agent's word
|
|
@@ -48,7 +56,9 @@ This skill adapts the DOS reference "witness-claim" pattern
|
|
|
48
56
|
### Step 1: Install the kernel (once)
|
|
49
57
|
|
|
50
58
|
```bash
|
|
51
|
-
|
|
59
|
+
python3 -m venv .dos-venv
|
|
60
|
+
. .dos-venv/bin/activate
|
|
61
|
+
python -m pip install 'dos-kernel==<reviewed-version>' # provides the `dos` CLI
|
|
52
62
|
```
|
|
53
63
|
|
|
54
64
|
### Step 2: Audit the latest commit's claim vs its diff
|
|
@@ -144,7 +154,8 @@ dos verify --workspace . AUTH AUTH2 --json --no-ci
|
|
|
144
154
|
|
|
145
155
|
## Security & Safety Notes
|
|
146
156
|
|
|
147
|
-
- This skill runs shell commands: `
|
|
157
|
+
- This skill runs shell commands: installing `dos-kernel` into an isolated
|
|
158
|
+
virtualenv and the read-only
|
|
148
159
|
`dos` verbs (`dos commit-audit`, `dos verify`). These verbs never **mutate**
|
|
149
160
|
the repo or push. `dos commit-audit` only reads git history and the working
|
|
150
161
|
tree (no network). `dos verify` is also git-only **unless** the workspace has
|
|
@@ -153,7 +164,8 @@ dos verify --workspace . AUTH AUTH2 --json --no-ci
|
|
|
153
164
|
(as the examples above do) to force the git-only path and guarantee no network.
|
|
154
165
|
- `pip install dos-kernel` installs from PyPI. The distribution name is
|
|
155
166
|
`dos-kernel` (the bare `dos` on PyPI is an unrelated package — do not install
|
|
156
|
-
it). Pin a version
|
|
167
|
+
it). Pin a reviewed version; do not install an unpinned latest release into a
|
|
168
|
+
global Python environment.
|
|
157
169
|
- Run in the repository you intend to adjudicate; the `--workspace .` argument
|
|
158
170
|
scopes every verdict to that repo.
|
|
159
171
|
|