📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-06-03 16:02:56 +00:00
parent ac7fffe532
commit 5cb67428bd
803 changed files with 78437 additions and 401 deletions
@@ -69,6 +69,7 @@ export function Home(): React.ReactElement {
const [syncMsg, setSyncMsg] = useState<SyncMessage | null>(null);
const [commandCopied, setCommandCopied] = useState(false);
const installCommand = 'npx antigravity-awesome-skills';
const repositoryLink = 'https://github.com/sickn33/antigravity-awesome-skills';
const docsLink = 'https://github.com/sickn33/antigravity-awesome-skills/blob/main/docs/users/usage.md';
const installLink = 'https://www.npmjs.com/package/antigravity-awesome-skills';
const faqItems = getHomeFaqItems();
@@ -172,11 +173,20 @@ export function Home(): React.ReactElement {
Build agent workflows with production-grade skill playbooks
</h2>
<p className="mt-4 max-w-4xl text-sm leading-relaxed text-slate-600 sm:text-base dark:text-slate-300">
Antigravity Awesome Skills is a curated catalog of installable capabilities for AI assistants.
Search fast, shortlist by category, and launch your first tested workflow from one focused workspace.
Antigravity Awesome Skills is a curated catalog for the official GitHub repository of installable
capabilities for AI assistants. Search fast, shortlist by category, and launch your first tested
workflow from one focused workspace.
</p>
<div className="mt-6 flex flex-col gap-3 sm:flex-row sm:flex-wrap sm:items-stretch">
<a
href={repositoryLink}
target="_blank"
rel="noreferrer"
className="inline-flex items-center justify-center rounded-lg border border-slate-400/80 bg-white/80 px-4 py-2.5 text-sm font-semibold text-slate-900 shadow-[inset_0_1px_0_rgba(255,255,255,0.9),0_10px_20px_-16px_rgba(15,23,42,0.7)] transition-colors hover:border-slate-500 hover:bg-slate-100 dark:border-slate-600 dark:bg-slate-800/70 dark:text-slate-100 dark:hover:bg-slate-700"
>
Open the GitHub repository
</a>
<button
onClick={copyInstallCommand}
className="inline-flex items-center justify-center rounded-lg bg-slate-900 px-4 py-2.5 text-sm font-semibold text-white transition-colors hover:bg-slate-800 dark:bg-slate-100 dark:text-slate-900 dark:hover:bg-white"
@@ -32,7 +32,7 @@ export function Plugins(): React.ReactElement {
Choose the focused AAS plugin for your AI coding workflow
</h1>
<p className="mt-4 max-w-4xl text-sm leading-relaxed text-slate-600 sm:text-base dark:text-slate-300">
AAS specialized plugins are focused, domain-specific distributions of the 1,494+ skill library.
AAS specialized plugins are focused, domain-specific distributions of the 1,508+ skill library.
Start here when you know the job: web apps, security, data analytics, documents, DevOps, QA,
OSS maintenance, mobile apps, automation, or agent and MCP systems.
</p>
@@ -4,11 +4,13 @@ import { getAbsolutePublicAssetUrl } from './publicAssetUrls';
export const DEFAULT_TOP_SKILL_COUNT = 40;
export const DEFAULT_SOCIAL_IMAGE = 'social-card.svg';
const SITE_NAME = 'Antigravity Awesome Skills';
const REPOSITORY_URL = 'https://github.com/sickn33/antigravity-awesome-skills';
const HOSTED_CATALOG_URL = 'https://sickn33.github.io/antigravity-awesome-skills/';
const FAQ_ITEMS = [
{
question: 'What is Antigravity Awesome Skills?',
answer:
'Antigravity Awesome Skills is an installable GitHub library of 1,494+ reusable SKILL.md playbooks for AI coding assistants. It supports Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and related hosts through direct skill installs, specialized plugins, bundles, workflows, and a searchable catalog.',
'Antigravity Awesome Skills is an installable GitHub library of 1,508+ reusable SKILL.md playbooks for AI coding assistants. It supports Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and related hosts through direct skill installs, specialized plugins, bundles, workflows, and a searchable catalog.',
},
{
question: 'How do I install Antigravity Awesome Skills?',
@@ -80,12 +82,13 @@ function buildOrganizationSchema(): Record<string, unknown> {
return {
'@context': 'https://schema.org',
'@type': 'Organization',
'@id': `${REPOSITORY_URL}#organization`,
name: SITE_NAME,
url: 'https://github.com/sickn33/antigravity-awesome-skills',
url: REPOSITORY_URL,
sameAs: [
'https://x.com/AASkills_',
'https://www.npmjs.com/package/antigravity-awesome-skills',
'https://sickn33.github.io/antigravity-awesome-skills/',
HOSTED_CATALOG_URL,
],
brand: {
'@type': 'Brand',
@@ -100,6 +103,7 @@ function buildWebSiteSchema(canonicalUrl: string): Record<string, unknown> {
'@type': 'WebSite',
name: SITE_NAME,
url: getCatalogBaseUrl(canonicalUrl),
sameAs: REPOSITORY_URL,
inLanguage: 'en',
potentialAction: {
'@type': 'SearchAction',
@@ -119,8 +123,14 @@ function buildSoftwareSourceCodeSchema(canonicalUrl: string, visibleCount: numbe
'@type': 'SoftwareSourceCode',
name: SITE_NAME,
description: `Installable GitHub library of ${visibleCountLabel}, specialized plugins, bundles, and workflows for AI coding assistants.`,
url: canonicalUrl,
codeRepository: 'https://github.com/sickn33/antigravity-awesome-skills',
url: REPOSITORY_URL,
sameAs: [
canonicalUrl,
HOSTED_CATALOG_URL,
'https://www.npmjs.com/package/antigravity-awesome-skills',
],
mainEntityOfPage: canonicalUrl,
codeRepository: REPOSITORY_URL,
applicationCategory: 'DeveloperApplication',
keywords: [
'AI coding assistant skills',
@@ -138,7 +148,7 @@ function buildSoftwareSourceCodeSchema(canonicalUrl: string, visibleCount: numbe
name: 'Markdown',
url: 'https://en.wikipedia.org/wiki/Markdown',
},
license: 'https://github.com/sickn33/antigravity-awesome-skills/blob/main/LICENSE',
license: `${REPOSITORY_URL}/blob/main/LICENSE`,
};
}
@@ -331,6 +341,8 @@ export function buildHomeMeta(skillCount: number): SeoMeta {
description,
url: canonicalUrl,
isPartOf: buildWebSiteSchema(canonicalUrl),
sameAs: REPOSITORY_URL,
about: buildSoftwareSourceCodeSchema(canonicalUrl, visibleCount),
mainEntity: {
'@type': 'ItemList',
name: 'Antigravity Awesome Skills catalog',