diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..5b0578c --- /dev/null +++ b/.env.example @@ -0,0 +1 @@ +GITHUB_TOKEN=ghp_your_github_token_here diff --git a/docs/releases/v0.3.1/skills-aggregation-repo.md b/docs/releases/v0.3.1/skills-aggregation-repo.md new file mode 100644 index 0000000..c4978ff --- /dev/null +++ b/docs/releases/v0.3.1/skills-aggregation-repo.md @@ -0,0 +1,234 @@ +# 需求:Skills 聚合数据源升级 — 精选仓库列表方案 + +## 背景 + +Skills Hub 应用的"探索"功能依赖 `featured-skills.json` 提供精选技能列表。早期方案通过 GitHub Search API 搜索 `claude-code-skill` 等 topic 标签自动发现仓库,但属于盲目搜索,质量不可控,噪音多。 + +**新方案**:维护一份精选仓库列表(Curated Repos),直接从已知的高质量仓库中获取 skills。质量可控、API 调用极少、维护简单。 + +## 目标 + +重写 `scripts/fetch-featured-skills.mjs` 脚本,从精选仓库列表直接获取元数据并深入检测 skill 目录结构,为每个 skill 生成独立条目,最终输出 `featured-skills.json`(最多 300 条)。保持现有的 GitHub Actions 定时更新机制不变。 + +## 架构(保持不变) + +``` +skills-desktop-app/ +├── featured-skills.json # 精选技能数据(应用内嵌 fallback + 在线更新源) +├── scripts/ +│ └── fetch-featured-skills.mjs # 聚合脚本(需重写) +└── .github/workflows/ + └── update-featured-skills.yml # 每日定时运行(保持不变) +``` + +## 数据源 — 精选仓库列表 + +从 GitHub Topic 盲目搜索改为直接指定高质量仓库: + +| 仓库 | Stars | 说明 | +|------|-------|------| +| `anthropics/skills` | ~96k | Anthropic 官方 Agent Skills | +| `sickn33/antigravity-awesome-skills` | ~24.7k | 1000+ 社区 skills 集合 | +| `K-Dense-AI/claude-scientific-skills` | ~15.3k | 170+ 科学研究 skills | +| `travisvn/awesome-claude-skills` | ~9.1k | 精选 Claude skills 列表 | +| `VoltAgent/awesome-agent-skills` | ~8.4k | 500+ Agent skills | +| `anthropics/knowledge-work-plugins` | ~7.7k | 官方知识工作插件 | +| `alirezarezvani/claude-skills` | ~5.2k | 192+ 社区 skills | + +列表定义在脚本顶部 `CURATED_REPOS` 常量中,新增/移除仓库只需编辑此数组。 + +## 脚本重写逻辑 + +### 1. 数据采集(仓库元数据) + +通过 GitHub Repos API 逐个获取精选仓库的元数据: + +``` +GET /repos/{owner}/{repo} +``` + +返回:`full_name`, `description`, `stargazers_count`, `topics[]`, `updated_at`, `html_url`, `default_branch` + +认证:**必须**使用环境变量 `GITHUB_TOKEN`,脚本启动时校验。 + +失败处理:获取失败的仓库跳过(打印警告),不影响其余仓库。 + +### 2. Skill 检测(仓库内深入扫描) + +使用 GitHub Git Trees API 获取仓库目录结构(单次请求,`recursive=1`): + +``` +GET /repos/{owner}/{repo}/git/trees/{default_branch}?recursive=1 +``` + +#### Skill 目录扫描规则(与应用端 `installer.rs` 保持一致) + +扫描以下基础路径下的子目录: + +``` +skills/ +skills/.curated/ +skills/.experimental/ +skills/.system/ +.claude/skills/ +``` + +以及**根目录的直接子目录**(排除 `skills/`、`.claude/`、`.git/` 等特殊目录)。 + +#### 新增:`.claude-plugin/plugin.json` 检测 + +为兼容 `anthropics/knowledge-work-plugins` 等使用插件格式的仓库,增加检测规则: + +- 根级子目录包含 `.claude-plugin/plugin.json` 文件 → 视为有效 skill + +#### Skill 判定条件 + +一个目录被视为有效 skill,需满足以下任一条件: +- 目录内存在 `SKILL.md` 文件 +- 目录位于 `.claude/skills/` 路径下(即使没有 `SKILL.md`) +- 目录内存在 `.claude-plugin/plugin.json` 文件(插件格式) + +#### 单 skill 仓库 + +如果仓库根目录本身就是一个 skill(根目录有 `SKILL.md`),且没有检测到子目录 skill,则整个仓库视为单 skill,`source_url` 指向仓库根路径。 + +#### Skill 名称与描述 + +- **名称**:从 skill 目录名生成(kebab-case → Title Case) +- **描述**:使用仓库的 `description` 字段(同仓库内所有 skill 共享) + +> 注:不使用 Contents API 获取 SKILL.md 内容,避免大量 API 调用。目录名 + 仓库 description 已满足展示需求。 + +### 3. 自动分类 + +基于仓库 `topics[]` 和 `description` 关键词匹配(分类继承自仓库,同仓库内所有 skill 共享分类): + +| 关键词 | 分类 | +|--------|------| +| browser, automation, playwright, puppeteer | browser-automation | +| security, audit, vulnerability, pentest | security | +| devops, deploy, infra, docker, kubernetes | devops | +| marketing, seo, ads, advertising | marketing | +| database, sql, postgres, mongo | database | +| git, github, pr, code-review | development | +| ai, llm, agent, model | ai-assistant | +| 以上都不匹配 | general | + +### 4. 排序与截取 + +1. 按仓库 `stargazers_count` 降序,同星数按 skill 名称字母序 +2. **截取前 300 条**(`MAX_SKILLS = 300`),避免输出过大 + +### 5. 输出 + +生成 `featured-skills.json`,**向前兼容现有数据结构**: + +```json +{ + "updated_at": "2026-03-19T00:00:00Z", + "total": 300, + "categories": ["general", "browser-automation", "security", "devops", ...], + "skills": [ + { + "slug": "commit", + "name": "Conventional Commit", + "summary": "Generate conventional commit messages...", + "downloads": 0, + "stars": 96000, + "category": "development", + "tags": ["claude-code-skill", "git", "commit"], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/commit", + "updated_at": "2026-03-17T15:10:09Z" + } + ] +} +``` + +#### 向前兼容策略 + +新格式**必须保留现有字段**,确保后端 `FeaturedSkillRaw` 和前端 `FeaturedSkillDto` 无需任何改动即可解析新数据: + +| 字段 | 现有 | 新版 | 兼容处理 | +|------|------|------|----------| +| `slug` | ✅ | ✅ | 不变 | +| `name` | ✅ | ✅ | 不变 | +| `summary` | ✅ | ✅ | 不变 | +| `downloads` | ✅ | ✅ | **保留,固定为 0**(无真实数据源) | +| `stars` | ✅ | ✅ | 填入 GitHub 真实 star 数 | +| `source_url` | ✅ | ✅ | 精确到 skill 目录的路径 | +| `category` | ❌ | ✅ 新增 | 后端 `#[serde(default)]` 自动忽略未知字段 | +| `tags` | ❌ | ✅ 新增 | 同上 | +| `updated_at`(skill 级) | ❌ | ✅ 新增 | 同上 | + +**结论**:脚本输出格式升级后,后端和前端代码**零改动**即可正常工作。 + +#### 字段说明 + +- `slug`:skill 目录名(单 skill 仓库则为仓库名) +- `name`:基于 skill 目录名生成(kebab-case → Title Case) +- `summary`:仓库 `description`(同仓库内所有 skill 共享) +- `downloads`:固定为 `0`(向前兼容,无真实数据源) +- `stars`:所属仓库的 GitHub star 数 +- `category`:基于仓库 topics/description 的自动分类结果 +- `tags`:仓库 `topics[]`(最多取 5 个) +- `source_url`:**精确到 skill 目录的 GitHub URL**,格式为 `https://github.com/{owner}/{repo}/tree/{branch}/{skill-path}`;单 skill 仓库则为 `https://github.com/{owner}/{repo}` +- `updated_at`:仓库最后更新时间 + +## API 用量估算 + +| 阶段 | API | 请求数 | 说明 | +|------|-----|--------|------| +| 获取仓库元数据 | Repos API | 7 | 每个精选仓库 1 次 | +| 获取目录树 | Git Trees API | 7 | 每个仓库 1 次 | +| **合计** | | **14** | | + +对比旧方案(Topic 搜索)的 ~412 次请求,新方案仅需 14 次,**几乎不可能触发速率限制**。 + +GitHub API 限额(已认证):5000 次/小时。即使未认证(60 次/小时)也完全够用,但仍建议使用 token 以确保稳定性。 + +## GitHub Actions 配置 + +保持现有 `.github/workflows/update-featured-skills.yml` 不变: + +```yaml +- name: Fetch featured skills + run: node scripts/fetch-featured-skills.mjs + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +``` + +## Skills Hub 应用端适配 + +**后端和前端代码无需任何改动**(向前兼容): + +- `FeaturedSkillRaw` / `FeaturedSkillDto` 结构体不变 +- 新增的 `category`、`tags`、`updated_at` 等字段被 serde 自动忽略 +- 内嵌 fallback(`featured-skills.json`)随脚本运行自动更新 + +### 后续可选增强(独立需求) + +1. 后端 DTO 新增 `category`、`tags` 字段以支持前端展示 +2. 探索页面增加按分类筛选 +3. 排序改为按星数排序 + +## 技术要点 + +- **精选仓库列表**:质量可控,新增仓库只需编辑 `CURATED_REPOS` 数组 +- **极低 API 用量**:14 次请求 vs 旧方案 412 次,无速率限制风险 +- **零外部依赖**:仅依赖 GitHub API(公开、稳定、有 SLA) +- **Skill 粒度聚合**:每条记录精确到仓库内具体 skill 目录 +- **与应用检测逻辑一致**:skill 扫描规则与 `installer.rs` 保持同步 +- **新增插件格式支持**:兼容 `.claude-plugin/plugin.json` 结构 +- **数量上限**:最多 300 条,按星数排序取 top +- **项目内维护**:脚本、数据、CI 全部在 skills-desktop-app 仓库内 + +## 变更清单 + +| 文件 | 操作 | +|------|------| +| `scripts/fetch-featured-skills.mjs` | 重写(精选仓库列表 + Repos API + Trees API) | +| `featured-skills.json` | 内容更新(精选仓库来源,≤300 条) | +| `docs/requirements/skills-aggregation-repo.md` | 更新需求文档 | +| `.github/workflows/update-featured-skills.yml` | **无需改动** | +| 后端代码 | **无需改动**(向前兼容) | +| 前端代码 | **无需改动**(向前兼容) | diff --git a/featured-skills.json b/featured-skills.json index e1540f5..6cab574 100644 --- a/featured-skills.json +++ b/featured-skills.json @@ -1,741 +1,5038 @@ { - "updated_at": "2026-03-15T04:06:45.519Z", + "updated_at": "2026-03-19T05:55:53.761Z", + "total": 300, + "categories": [ + "ai-assistant", + "development" + ], "skills": [ { - "slug": "self-improving-agent", - "name": "self-improving-agent", - "summary": "Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Clau...", - "downloads": 217542, - "stars": 2034, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/pskoett/self-improving-agent" - }, - { - "slug": "find-skills", - "name": "Find Skills", - "summary": "Helps users discover and install agent skills when they ask questions like \"how do I do X\", \"find a skill for X\", \"is there a skill that can...\", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.", - "downloads": 210218, - "stars": 856, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/JimLiuxinghai/find-skills" - }, - { - "slug": "summarize", - "name": "Summarize", - "summary": "Summarize URLs or files with the summarize CLI (web, PDFs, images, audio, YouTube).", - "downloads": 159755, - "stars": 609, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/summarize" - }, - { - "slug": "agent-browser", - "name": "Agent Browser", - "summary": "A fast Rust-based headless browser automation CLI with Node.js fallback that enables AI agents to navigate, click, type, and snapshot pages via structured commands.", - "downloads": 129759, - "stars": 564, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/TheSethRose/agent-browser" - }, - { - "slug": "gog", - "name": "Gog", - "summary": "Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.", - "downloads": 113664, - "stars": 730, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/gog" - }, - { - "slug": "github", - "name": "Github", - "summary": "Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.", - "downloads": 109793, - "stars": 359, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/github" - }, - { - "slug": "ontology", - "name": "ontology", - "summary": "Typed knowledge graph for structured agent memory and composable skills. Use when creating/querying entities (Person, Project, Task, Event, Document), linkin...", - "downloads": 105150, - "stars": 270, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/oswalpalash/ontology" - }, - { - "slug": "proactive-agent", - "name": "Proactive Agent", - "summary": "Transform AI agents from task-followers into proactive partners that anticipate needs and continuously improve. Now with WAL Protocol, Working Buffer, Autonomous Crons, and battle-tested patterns. Part of the Hal Stack 🦞", - "downloads": 99927, - "stars": 547, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/halthelobster/proactive-agent" - }, - { - "slug": "skill-vetter", - "name": "Skill Vetter", - "summary": "Security-first skill vetting for AI agents. Use before installing any skill from ClawdHub, GitHub, or other sources. Checks for red flags, permission scope, and suspicious patterns.", - "downloads": 97842, - "stars": 388, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/spclaudehome/skill-vetter" - }, - { - "slug": "weather", - "name": "Weather", - "summary": "Get current weather and forecasts (no API key required).", - "downloads": 94137, - "stars": 287, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/weather" - }, - { - "slug": "self-improving", - "name": "Self-Improving + Proactive Agent", - "summary": "Self-reflection + Self-criticism + Self-learning + Self-organizing memory. Agent evaluates its own work, catches mistakes, and improves permanently. Use when...", - "downloads": 69362, - "stars": 343, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/ivangdavila/self-improving" - }, - { - "slug": "nano-pdf", - "name": "Nano Pdf", - "summary": "Edit PDFs with natural-language instructions using the nano-pdf CLI.", - "downloads": 58330, - "stars": 133, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/nano-pdf" - }, - { - "slug": "sonoscli", - "name": "Sonoscli", - "summary": "Control Sonos speakers (discover/status/play/volume/group).", - "downloads": 58206, - "stars": 39, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/sonoscli" - }, - { - "slug": "humanizer", - "name": "Humanizer", - "summary": "Remove signs of AI-generated writing from text. Use when editing or reviewing\ntext to make it sound more natural and human-written. Based on Wikipedia's\ncomprehensive \"Signs of AI writing\" guide. Detects and fixes patterns including:\ninflated symbolism, promotional language, superficial -ing analyses, vague\nattributions, em dash overuse, rule of three, AI vocabulary words, negative\nparallelisms, and excessive conjunctive phrases.", - "downloads": 55347, - "stars": 400, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/biostartechnology/humanizer" - }, - { - "slug": "notion", - "name": "Notion", - "summary": "Notion API for creating and managing pages, databases, and blocks.", - "downloads": 55105, - "stars": 184, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/notion" - }, - { - "slug": "multi-search-engine", - "name": "Multi Search Engine", - "summary": "Multi search engine integration with 17 engines (8 CN + 9 Global). Supports advanced search operators, time filters, site search, privacy engines, and WolframAlpha knowledge queries. No API keys required.", - "downloads": 53832, - "stars": 276, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/gpyAngyoujun/multi-search-engine" - }, - { - "slug": "obsidian", - "name": "Obsidian", - "summary": "Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli.", - "downloads": 50917, - "stars": 199, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/obsidian" - }, - { - "slug": "nano-banana-pro", - "name": "Nano Banana Pro", - "summary": "Generate/edit images with Nano Banana Pro (Gemini 3 Pro Image). Use for image create/modify requests incl. edits. Supports text-to-image + image-to-image; 1K/2K/4K; use --input-image.", - "downloads": 49777, - "stars": 199, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/nano-banana-pro" - }, - { - "slug": "openai-whisper", - "name": "Openai Whisper", - "summary": "Local speech-to-text with the Whisper CLI (no API key).", - "downloads": 46141, - "stars": 210, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/openai-whisper" - }, - { - "slug": "auto-updater", - "name": "Auto-Updater Skill", - "summary": "Automatically update Clawdbot and all installed skills once daily. Runs via cron, checks for updates, applies them, and messages the user with a summary of what changed.", - "downloads": 44520, - "stars": 267, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/maximeprades/auto-updater" - }, - { - "slug": "api-gateway", - "name": "API Gateway", - "summary": "Connect to 100+ APIs (Google Workspace, Microsoft 365, GitHub, Notion, Slack, Airtable, HubSpot, etc.) with managed OAuth. Use this skill when users want to...", - "downloads": 43490, - "stars": 213, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/byungkyu/api-gateway" - }, - { - "slug": "skill-creator", - "name": "Skill Creator", - "summary": "Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.", - "downloads": 40872, - "stars": 142, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/chindden/skill-creator" - }, - { - "slug": "baidu-search", - "name": "baidu web search", - "summary": "Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.", - "downloads": 40682, - "stars": 100, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/ide-rea/baidu-search" - }, - { - "slug": "adclaw", - "name": "AdClaw", - "summary": "广告素材搜索助手。搜索结果通过 ad.h5.miaozhisheng.tech 展示。当用户提到\"找素材\"、\"搜广告\"、\"广告视频\"、\"创意素材\"、\"竞品广告\"、\"ad creative\"、\"search ads\" 等关键词时触发。", - "downloads": 39871, - "stars": 13, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/fly0pants/adclaw" - }, - { - "slug": "automation-workflows", - "name": "Automation Workflows", - "summary": "Design and implement automation workflows to save time and scale operations as a solopreneur. Use when identifying repetitive tasks to automate, building workflows across tools, setting up triggers and actions, or optimizing existing automations. Covers automation opportunity identification, workflow design, tool selection (Zapier, Make, n8n), testing, and maintenance. Trigger on \"automate\", \"automation\", \"workflow automation\", \"save time\", \"reduce manual work\", \"automate my business\", \"no-code automation\".", - "downloads": 39739, - "stars": 173, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/JK-0001/automation-workflows" - }, - { - "slug": "brave-search", - "name": "Brave Search", - "summary": "Web search and content extraction via Brave Search API. Use for searching documentation, facts, or any web content. Lightweight, no browser required.", - "downloads": 39354, - "stars": 147, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/brave-search" - }, - { - "slug": "mcporter", - "name": "Mcporter", - "summary": "Use the mcporter CLI to list, configure, auth, and call MCP servers/tools directly (HTTP or stdio), including ad-hoc servers, config edits, and CLI/type generation.", - "downloads": 36803, - "stars": 108, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/mcporter" - }, - { - "slug": "free-ride", - "name": "Free Ride - Unlimited free AI", - "summary": "Manages free AI models from OpenRouter for OpenClaw. Automatically ranks models by quality, configures fallbacks for rate-limit handling, and updates opencla...", - "downloads": 36013, - "stars": 270, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/Shaivpidadi/free-ride" - }, - { - "slug": "openclaw-youtube-transcript", - "name": "OpenClaw YouTube Transcript", - "summary": "Transcribe YouTube videos to text by extracting captions and subtitles directly from the video URL using yt-dlp without audio processing.", - "downloads": 31775, - "stars": 21, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/YoavRez/openclaw-youtube-transcript" - }, - { - "slug": "elite-longterm-memory", - "name": "Elite Longterm Memory", - "summary": "Ultimate AI agent memory system for Cursor, Claude, ChatGPT & Copilot. WAL protocol + vector search + git-notes + cloud backup. Never lose context again. Vibe-coding ready.", - "downloads": 30947, - "stars": 126, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/NextFrontierBuilds/elite-longterm-memory" - }, - { - "slug": "stock-analysis", - "name": "Stock Analysis", - "summary": "Analyze stocks and cryptocurrencies using Yahoo Finance data. Supports portfolio management, watchlists with alerts, dividend analysis, 8-dimension stock scoring, viral trend detection (Hot Scanner), and rumor/early signal detection. Use for stock analysis, portfolio tracking, earnings reactions, crypto monitoring, trending stocks, or finding rumors before they hit mainstream.", - "downloads": 30839, - "stars": 153, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/udiedrichsen/stock-analysis" - }, - { - "slug": "outlook-graph", - "name": "Outlook Graph", - "summary": "Connect OpenClaw to Outlook and Microsoft Graph for email, calendar, contacts, and folder operations using a pre-provided access token. Use when the user ask...", - "downloads": 30644, - "stars": 3, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/c36025251-pixel/outlook-graph" - }, - { - "slug": "humanize-ai-text", - "name": "Humanize AI text", - "summary": "Humanize AI-generated text to bypass detection. This humanizer rewrites ChatGPT, Claude, and GPT content to sound natural and pass AI detectors like GPTZero,...", - "downloads": 30233, - "stars": 141, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/moltbro/humanize-ai-text" - }, - { - "slug": "youtube-watcher", - "name": "YouTube Watcher", - "summary": "Fetch and read transcripts from YouTube videos. Use when you need to summarize a video, answer questions about its content, or extract information from it.", - "downloads": 30179, - "stars": 212, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/Michaelgathara/youtube-watcher" - }, - { - "slug": "openclaw-tavily-search", - "name": "Tavily 搜索", - "summary": "Web search via Tavily API (alternative to Brave). Use when the user asks to search the web / look up sources / find links and Brave web_search is unavailable...", - "downloads": 29525, - "stars": 51, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/Jacky1n7/openclaw-tavily-search" - }, - { - "slug": "byterover", - "name": "ByteRover", - "summary": "You MUST use this for gathering contexts before any work. This is a Knowledge management for AI agents. Use `brv` to store and retrieve project patterns, dec...", - "downloads": 29234, - "stars": 97, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/byteroverinc/byterover" - }, - { - "slug": "desktop-control", - "name": "Desktop Control", - "summary": "Advanced desktop automation with mouse, keyboard, and screen control", - "downloads": 28755, - "stars": 200, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/matagul/desktop-control" - }, - { - "slug": "clawddocs", - "name": "Clawdbot Documentation Expert", - "summary": "Clawdbot documentation expert with decision tree navigation, search scripts, doc fetching, version tracking, and config snippets for all Clawdbot features", - "downloads": 28683, - "stars": 254, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/NicholasSpisak/clawddocs" - }, - { - "slug": "himalaya", - "name": "Himalaya", - "summary": "CLI to manage emails via IMAP/SMTP. Use `himalaya` to list, read, write, reply, forward, search, and organize emails from the terminal. Supports multiple accounts and message composition with MML (MIME Meta Language).", - "downloads": 27635, - "stars": 50, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/lamelas/himalaya" - }, - { - "slug": "slack", - "name": "Slack", - "summary": "Use when you need to control Slack from Clawdbot via the slack tool, including reacting to messages or pinning/unpinning items in Slack channels or DMs.", - "downloads": 27067, - "stars": 90, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/slack" - }, - { - "slug": "video-frames", - "name": "Video Frames", - "summary": "Extract frames or short clips from videos using ffmpeg.", - "downloads": 26929, - "stars": 77, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/video-frames" - }, - { - "slug": "browser-use", - "name": "Browser Use", - "summary": "Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with w...", - "downloads": 25490, - "stars": 63, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/ShawnPana/browser-use" - }, - { - "slug": "trello", - "name": "Trello", - "summary": "Manage Trello boards, lists, and cards via the Trello REST API.", - "downloads": 25202, - "stars": 103, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/trello" - }, - { - "slug": "blogwatcher", - "name": "Blogwatcher", - "summary": "Monitor blogs and RSS/Atom feeds for updates using the blogwatcher CLI.", - "downloads": 24824, - "stars": 44, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/blogwatcher" - }, - { - "slug": "model-usage", - "name": "Model Usage", - "summary": "Use CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.", - "downloads": 24509, - "stars": 88, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/model-usage" - }, - { - "slug": "news-summary", - "name": "News Summary", - "summary": "This skill should be used when the user asks for news updates, daily briefings, or what's happening in the world. Fetches news from trusted international RSS feeds and can create voice summaries.", - "downloads": 24299, - "stars": 74, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/joargp/news-summary" - }, - { - "slug": "gmail", - "name": "Gmail", - "summary": "Gmail API integration with managed OAuth. Read, send, and manage emails, threads, labels, and drafts. Use this skill when users want to interact with Gmail. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).", - "downloads": 23964, - "stars": 60, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/byungkyu/gmail" - }, - { - "slug": "imap-smtp-email", - "name": "imap-smtp-email", - "summary": "Read and send email via IMAP/SMTP. Check for new/unread messages, fetch content, search mailboxes, mark as read/unread, and send emails with attachments. Wor...", - "downloads": 23588, - "stars": 56, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/gzlicanyi/imap-smtp-email" - }, - { - "slug": "evolver", - "name": "Evolver", - "summary": "A self-evolution engine for AI agents. Analyzes runtime history to identify improvements and applies protocol-constrained evolution.", - "downloads": 22651, - "stars": 56, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/autogame-17/evolver" - }, - { - "slug": "agent-browser-clawdbot", - "name": "Agent Browser", - "summary": "Headless browser automation CLI optimized for AI agents with accessibility tree snapshots and ref-based element selection", - "downloads": 22639, - "stars": 55, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/MaTriXy/agent-browser-clawdbot" - }, - { - "slug": "youtube-api-skill", - "name": "YouTube", - "summary": "YouTube Data API integration with managed OAuth. Search videos, manage playlists, access channel data, and interact with comments. Use this skill when users want to interact with YouTube. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).", - "downloads": 22313, - "stars": 117, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/byungkyu/youtube-api-skill" - }, - { - "slug": "markdown-converter", - "name": "Markdown Converter", - "summary": "Convert documents and files to Markdown using markitdown. Use when converting PDF, Word (.docx), PowerPoint (.pptx), Excel (.xlsx, .xls), HTML, CSV, JSON, XML, images (with EXIF/OCR), audio (with transcription), ZIP archives, YouTube URLs, or EPubs to Markdown format for LLM processing or text analysis.", - "downloads": 22292, - "stars": 112, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/markdown-converter" - }, - { - "slug": "playwright-mcp", - "name": "Playwright MCP", - "summary": "Browser automation via Playwright MCP server. Navigate websites, click elements, fill forms, extract data, take screenshots, and perform full browser automation workflows.", - "downloads": 22161, - "stars": 84, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/Spiceman161/playwright-mcp" - }, - { - "slug": "gemini", - "name": "Gemini", - "summary": "Gemini CLI for one-shot Q&A, summaries, and generation.", - "downloads": 21745, - "stars": 43, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/gemini" - }, - { - "slug": "browser-automation", - "name": "Browser Automation", - "summary": "Automate web browser interactions using natural language via CLI commands. Use when the user asks to browse websites, navigate web pages, extract data from websites, take screenshots, fill forms, click buttons, or interact with web applications.", - "downloads": 21257, - "stars": 29, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/peytoncasper/browser-automation" - }, - { - "slug": "tavily", - "name": "Tavily AI Search", - "summary": "AI-optimized web search using Tavily Search API. Use when you need comprehensive web research, current events lookup, domain-specific search, or AI-generated answer summaries. Tavily is optimized for LLM consumption with clean structured results, answer generation, and raw content extraction. Best for research tasks, news queries, fact-checking, and gathering authoritative sources.", - "downloads": 20830, - "stars": 25, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/bert-builder/tavily" - }, - { - "slug": "qmd", - "name": "Qmd", - "summary": "Local search/indexing CLI (BM25 + vectors + rerank) with MCP mode.", - "downloads": 20525, - "stars": 72, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/qmd" - }, - { - "slug": "apple-notes", - "name": "Apple Notes", - "summary": "Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks Clawdbot to add a note, list notes, search notes, or manage note folders.", - "downloads": 20195, - "stars": 38, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/apple-notes" - }, - { - "slug": "stock-market-pro", - "name": "Stock Market Pro", - "summary": "Yahoo Finance (yfinance) powered stock analysis skill: quotes, fundamentals, ASCII trends, high-resolution charts (RSI/MACD/BB/VWAP/ATR), plus optional web a...", - "downloads": 20188, - "stars": 128, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/kys42/stock-market-pro" - }, - { - "slug": "superdesign", - "name": "SuperDesign", - "summary": "Expert frontend design guidelines for creating beautiful, modern UIs. Use when building landing pages, dashboards, or any user interface.", - "downloads": 20139, - "stars": 117, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/mpociot/superdesign" - }, - { - "slug": "discord", - "name": "Discord", - "summary": "Use when you need to control Discord from Clawdbot via the discord tool: send messages, react, post or upload stickers, upload emojis, run polls, manage threads/pins/search, fetch permissions or member/role/channel info, or handle moderation actions in Discord DMs or channels.", - "downloads": 19810, - "stars": 47, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/discord" - }, - { - "slug": "lnbits-with-qrcode", - "name": "LNBits Wallet wtih QR Code", - "summary": "Manage LNbits Lightning Wallet (Balance, Pay, Invoice)", - "downloads": 19738, - "stars": 6, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/JamesTsetsekas/lnbits-with-qrcode" - }, - { - "slug": "web-search-exa", - "name": "Web Search by Exa", - "summary": "Neural web search, content extraction, company and people research, code search, and deep research via the Exa MCP server. Use when you need to: (1) search t...", - "downloads": 19418, - "stars": 19, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/theishangoswami/web-search-exa" - }, - { - "slug": "feishu-evolver-wrapper", - "name": "Feishu Evolver Wrapper", - "summary": "Feishu-integrated wrapper for the capability-evolver. Manages the evolution loop lifecycle (start/stop/ensure), sends rich Feishu card reports, and provides...", - "downloads": 19242, - "stars": 4, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/autogame-17/feishu-evolver-wrapper" - }, - { - "slug": "caldav-calendar", - "name": "Caldav Calendar", - "summary": "Sync and query CalDAV calendars (iCloud, Google, Fastmail, Nextcloud, etc.) using vdirsyncer + khal. Works on Linux.", - "downloads": 19151, - "stars": 172, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/Asleep123/caldav-calendar" - }, - { - "slug": "docker-essentials", - "name": "Docker Essentials", - "summary": "Essential Docker commands and workflows for container management, image operations, and debugging.", - "downloads": 19098, - "stars": 21, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/Arnarsson/docker-essentials" - }, - { - "slug": "outlook-api", - "name": "Outlook", - "summary": "Microsoft Outlook API integration with managed OAuth. Read, send, and manage emails, folders, calendar events, and contacts via Microsoft Graph. Use this skill when users want to interact with Outlook. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).", - "downloads": 18948, - "stars": 30, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/byungkyu/outlook-api" + "slug": "algorithmic-art", + "name": "algorithmic-art", + "summary": "Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/algorithmic-art", + "updated_at": "2026-03-19T05:50:38Z" + }, + { + "slug": "brand-guidelines", + "name": "brand-guidelines", + "summary": "Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/brand-guidelines", + "updated_at": "2026-03-19T05:50:38Z" + }, + { + "slug": "canvas-design", + "name": "canvas-design", + "summary": "Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/canvas-design", + "updated_at": "2026-03-19T05:50:38Z" + }, + { + "slug": "claude-api", + "name": "claude-api", + "summary": "Build apps with the Claude API or Anthropic SDK. TRIGGER when: code imports `anthropic`/`@anthropic-ai/sdk`/`claude_agent_sdk`, or user asks to use Claude API, Anthropic SDKs, or Agent SDK. DO NOT TRIGGER when: code imports `openai`/other AI SDK, general programming, or ML/data-science tasks.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/claude-api", + "updated_at": "2026-03-19T05:50:38Z" + }, + { + "slug": "doc-coauthoring", + "name": "doc-coauthoring", + "summary": "Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/doc-coauthoring", + "updated_at": "2026-03-19T05:50:38Z" + }, + { + "slug": "docx", + "name": "docx", + "summary": "Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/docx", + "updated_at": "2026-03-19T05:50:38Z" + }, + { + "slug": "frontend-design", + "name": "frontend-design", + "summary": "Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/frontend-design", + "updated_at": "2026-03-19T05:50:38Z" + }, + { + "slug": "internal-comms", + "name": "internal-comms", + "summary": "A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/internal-comms", + "updated_at": "2026-03-19T05:50:38Z" + }, + { + "slug": "mcp-builder", + "name": "mcp-builder", + "summary": "Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/mcp-builder", + "updated_at": "2026-03-19T05:50:38Z" }, { "slug": "pdf", - "name": "Pdf", - "summary": "Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmatically process, generate, or analyze PDF documents at scale.", - "downloads": 18899, - "stars": 28, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/awspace/pdf" + "name": "pdf", + "summary": "Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/pdf", + "updated_at": "2026-03-19T05:50:38Z" }, { - "slug": "clawdhub", - "name": "Clawdhub", - "summary": "Use the ClawdHub CLI to search, install, update, and publish agent skills from clawdhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed clawdhub CLI.", - "downloads": 18864, - "stars": 170, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/clawdhub" + "slug": "pptx", + "name": "pptx", + "summary": "Use this skill any time a .pptx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates, layouts, speaker notes, or comments. Trigger whenever the user mentions \\\"deck,\\\" \\\"slides,\\\" \\\"presentation,\\\" or references a .pptx filename, regardless of what they plan to do with the content afterward. If a .pptx file needs to be opened, created, or touched, use this skill.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/pptx", + "updated_at": "2026-03-19T05:50:38Z" }, { - "slug": "whatsapp-business", - "name": "WhatsApp Business", - "summary": "WhatsApp Business API integration with managed OAuth. Send messages, manage templates, and handle conversations. Use this skill when users want to interact with WhatsApp Business. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).", - "downloads": 18454, - "stars": 46, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/byungkyu/whatsapp-business" + "slug": "skill-creator", + "name": "skill-creator", + "summary": "Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/skill-creator", + "updated_at": "2026-03-19T05:50:38Z" }, { - "slug": "memory-setup", - "name": "Memory Setup", - "summary": "Enable and configure Moltbot/Clawdbot memory search for persistent context. Use when setting up memory, fixing \"goldfish brain,\" or helping users configure memorySearch in their config. Covers MEMORY.md, daily logs, and vector search setup.", - "downloads": 18448, - "stars": 82, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/jrbobbyhansen-pixel/memory-setup" + "slug": "slack-gif-creator", + "name": "slack-gif-creator", + "summary": "Knowledge and utilities for creating animated GIFs optimized for Slack. Provides constraints, validation tools, and animation concepts. Use when users request animated GIFs for Slack like \"make me a GIF of X doing Y for Slack.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/slack-gif-creator", + "updated_at": "2026-03-19T05:50:38Z" }, { - "slug": "stripe-api", - "name": "Stripe", - "summary": "Stripe API integration with managed OAuth. Manage customers, subscriptions, invoices, products, prices, and payments.\nUse this skill when users want to process payments, manage billing, or handle subscriptions with Stripe.\nFor other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).\nRequires network access and valid Maton API key.", - "downloads": 18249, - "stars": 24, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/byungkyu/stripe-api" + "slug": "template", + "name": "template-skill", + "summary": "Replace with description of the skill and when Claude should use it.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/template", + "updated_at": "2026-03-19T05:50:38Z" }, { - "slug": "capability-evolver", - "name": "Capability Evolver", - "summary": "A self-evolution engine for AI agents. Analyzes runtime history to identify improvements and applies protocol-constrained evolution.", - "downloads": 18131, - "stars": 61, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/autogame-17/capability-evolver" + "slug": "theme-factory", + "name": "theme-factory", + "summary": "Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/theme-factory", + "updated_at": "2026-03-19T05:50:38Z" }, { - "slug": "web-search", - "name": "Web Search", - "summary": "This skill should be used when users need to search the web for information, find current content, look up news articles, search for images, or find videos. It uses DuckDuckGo's search API to return results in clean, formatted output (text, markdown, or JSON). Use for research, fact-checking, finding recent information, or gathering web resources.", - "downloads": 18100, - "stars": 22, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/billyutw/web-search" + "slug": "web-artifacts-builder", + "name": "web-artifacts-builder", + "summary": "Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/web-artifacts-builder", + "updated_at": "2026-03-19T05:50:38Z" }, { - "slug": "session-logs", - "name": "Session-logs", - "summary": "Search and analyze your own session logs (older/parent conversations) using jq.", - "downloads": 17999, - "stars": 15, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/guogang1024/session-logs" + "slug": "webapp-testing", + "name": "webapp-testing", + "summary": "Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/webapp-testing", + "updated_at": "2026-03-19T05:50:38Z" + }, + { + "slug": "xlsx", + "name": "xlsx", + "summary": "Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Trigger especially when the user references a spreadsheet file by name or path — even casually (like \\\"the xlsx in my downloads\\\") — and wants something done to it or produced from it. Also trigger for cleaning or restructuring messy tabular data files (malformed rows, misplaced headers, junk data) into proper spreadsheets. The deliverable must be a spreadsheet file. Do NOT trigger when the primary deliverable is a Word document, HTML report, standalone Python script, database pipeline, or Google Sheets API integration, even if tabular data is involved.", + "downloads": 0, + "stars": 97149, + "category": "ai-assistant", + "tags": [ + "agent-skills" + ], + "source_url": "https://github.com/anthropics/skills/tree/main/skills/xlsx", + "updated_at": "2026-03-19T05:50:38Z" + }, + { + "slug": "00-andruia-consultant", + "name": "00-andruia-consultant", + "summary": "Arquitecto de Soluciones Principal y Consultor Tecnológico de Andru.ia. Diagnostica y traza la hoja de ruta óptima para proyectos de IA en español.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/00-andruia-consultant", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "007", + "name": "007", + "summary": "Security audit, hardening, threat modeling (STRIDE/PASTA), Red/Blue Team, OWASP checks, code review, incident response, and infrastructure security for any project.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/007", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "10-andruia-skill-smith", + "name": "10-andruia-skill-smith", + "summary": "Ingeniero de Sistemas de Andru.ia. Diseña, redacta y despliega nuevas habilidades (skills) dentro del repositorio siguiendo el Estándar de Diamante.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/10-andruia-skill-smith", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "20-andruia-niche-intelligence", + "name": "20-andruia-niche-intelligence", + "summary": "Estratega de Inteligencia de Dominio de Andru.ia. Analiza el nicho específico de un proyecto para inyectar conocimientos, regulaciones y estándares únicos del sector. Actívalo tras definir el nicho.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/20-andruia-niche-intelligence", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "3d-web-experience", + "name": "3d-web-experience", + "summary": "Expert in building 3D experiences for the web - Three.js, React Three Fiber, Spline, WebGL, and interactive 3D scenes. Covers product configurators, 3D portfolios, immersive websites, and bringing ...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/3d-web-experience", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "ab-test-setup", + "name": "ab-test-setup", + "summary": "Structured guide for setting up A/B tests with mandatory gates for hypothesis, metrics, and execution readiness.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/ab-test-setup", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "acceptance-orchestrator", + "name": "acceptance-orchestrator", + "summary": "Use when a coding task should be driven end-to-end from issue intake through implementation, review, deployment, and acceptance verification with minimal human re-intervention.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/acceptance-orchestrator", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "accessibility-compliance-accessibility-audit", + "name": "accessibility-compliance-accessibility-audit", + "summary": "You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive technology compatibility. Conduct audits, identify barriers, and provide remediation guidance.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/accessibility-compliance-accessibility-audit", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "active-directory-attacks", + "name": "active-directory-attacks", + "summary": "This skill should be used when the user asks to \\\"attack Active Directory\\\", \\\"exploit AD\\\", \\\"Kerberoasting\\\", \\\"DCSync\\\", \\\"pass-the-hash\\\", \\\"BloodHound enumeration\\\", \\\"Golden Ticket\\\", ...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/active-directory-attacks", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "activecampaign-automation", + "name": "activecampaign-automation", + "summary": "Automate ActiveCampaign tasks via Rube MCP (Composio): manage contacts, tags, list subscriptions, automation enrollment, and tasks. Always search tools first for current schemas.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/activecampaign-automation", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "address-github-comments", + "name": "address-github-comments", + "summary": "Use when you need to address review or issue comments on an open GitHub Pull Request using the gh CLI.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/address-github-comments", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "advanced-evaluation", + "name": "advanced-evaluation", + "summary": "This skill should be used when the user asks to \"implement LLM-as-judge\", \"compare model outputs\", \"create evaluation rubrics\", \"mitigate evaluation bias\", or mentions direct scoring, pairwise comparison, position bias, evaluation pipelines, or automated quality assessment.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/advanced-evaluation", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "advogado-criminal", + "name": "advogado-criminal", + "summary": "Advogado criminalista especializado em Maria da Penha, violencia domestica, feminicidio, direito penal brasileiro, medidas protetivas, inquerito policial e acao penal.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/advogado-criminal", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "advogado-especialista", + "name": "advogado-especialista", + "summary": "Advogado especialista em todas as areas do Direito brasileiro: familia, criminal, trabalhista, tributario, consumidor, imobiliario, empresarial, civil e constitucional.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/advogado-especialista", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "agent-evaluation", + "name": "agent-evaluation", + "summary": "Testing and benchmarking LLM agents including behavioral testing, capability assessment, reliability metrics, and production monitoring\\u2014where even top agents achieve less than 50% on re...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/agent-evaluation", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "agent-framework-azure-ai-py", + "name": "agent-framework-azure-ai-py", + "summary": "Build Azure AI Foundry agents using the Microsoft Agent Framework Python SDK (agent-framework-azure-ai). Use when creating persistent agents with AzureAIAgentsProvider, using hosted tools (code int...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/agent-framework-azure-ai-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "agent-manager-skill", + "name": "agent-manager-skill", + "summary": "Manage multiple local CLI agents via tmux sessions (start/stop/monitor/assign) with cron-friendly scheduling.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/agent-manager-skill", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "agent-memory-mcp", + "name": "agent-memory-mcp", + "summary": "A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/agent-memory-mcp", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "agent-memory-systems", + "name": "agent-memory-systems", + "summary": "Memory is the cornerstone of intelligent agents. Without it, every interaction starts from zero. This skill covers the architecture of agent memory: short-term (context window), long-term (vector s...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/agent-memory-systems", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "agent-orchestration-improve-agent", + "name": "agent-orchestration-improve-agent", + "summary": "Systematic improvement of existing agents through performance analysis, prompt engineering, and continuous iteration.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/agent-orchestration-improve-agent", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "agent-orchestration-multi-agent-optimize", + "name": "agent-orchestration-multi-agent-optimize", + "summary": "Optimize multi-agent systems with coordinated profiling, workload distribution, and cost-aware orchestration. Use when improving agent performance, throughput, or reliability.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/agent-orchestration-multi-agent-optimize", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "agent-orchestrator", + "name": "agent-orchestrator", + "summary": "Meta-skill que orquestra todos os agentes do ecossistema. Scan automatico de skills, match por capacidades, coordenacao de workflows multi-skill e registry management.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/agent-orchestrator", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "agent-tool-builder", + "name": "agent-tool-builder", + "summary": "Tools are how AI agents interact with the world. A well-designed tool is the difference between an agent that works and one that hallucinates, fails silently, or costs 10x more tokens than necessar...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/agent-tool-builder", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "agentfolio", + "name": "agentfolio", + "summary": "Skill for discovering and researching autonomous AI agents, tools, and ecosystems using the AgentFolio directory.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/agentfolio", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "agentic-actions-auditor", + "name": "agentic-actions-auditor", + "summary": "Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations including Claude Code Action, Gemini CLI, OpenAI Codex, and GitHub AI Inference. Detects attack vectors where attacker-controlled input reaches AI agents running in CI/CD pipelines,...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/agentic-actions-auditor", + "updated_at": "2026-03-19T05:50:47Z" }, { "slug": "agentmail", - "name": "AgentMail", - "summary": "API-first email platform designed for AI agents. Create and manage dedicated email inboxes, send and receive emails programmatically, and handle email-based workflows with webhooks and real-time events. Use when you need to set up agent email identity, send emails from agents, handle incoming email workflows, or replace traditional email providers like Gmail with agent-friendly infrastructure.", - "downloads": 17939, - "stars": 44, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/adboio/agentmail" + "name": "agentmail", + "summary": "Email infrastructure for AI agents. Create accounts, send/receive emails, manage webhooks, and check karma balance via the AgentMail API.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/agentmail", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "xiaohongshu-mcp", - "name": "Xiaohongshu (小红书) Automation", - "summary": "Automate Xiaohongshu (RedNote) content operations using a Python client for the xiaohongshu-mcp server. Use for: (1) Publishing image, text, and video content, (2) Searching for notes and trends, (3) Analyzing post details and comments, (4) Managing user profiles and content feeds. Triggers: xiaohongshu automation, rednote content, publish to xiaohongshu, xiaohongshu search, social media management.", - "downloads": 17648, - "stars": 71, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/Borye/xiaohongshu-mcp" + "slug": "agents-md", + "name": "agents-md", + "summary": "This skill should be used when the user asks to \"create AGENTS.md\", \"update AGENTS.md\", \"maintain agent docs\", \"set up CLAUDE.md\", or needs to keep agent instructions concise. Enforces research-backed best practices for minimal, high-signal agent documentation.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/agents-md", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "duckduckgo-search", - "name": "Performs web searches using DuckDuckGo to retrieve real-time information from the internet. Use when the user needs to search for current events, documentation, tutorials, or any information that requires web search capabilities.", - "summary": "Performs web searches using DuckDuckGo to retrieve real-time information from the internet. Use when the user needs to search for current events, documentation, tutorials, or any information that requires web search capabilities.", - "downloads": 17447, - "stars": 36, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/10e9928a/duckduckgo-search" + "slug": "agents-v2-py", + "name": "agents-v2-py", + "summary": "Build container-based Foundry Agents with Azure AI Projects SDK (ImageBasedHostedAgentDefinition). Use when creating hosted agents with custom container images in Azure AI Foundry.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/agents-v2-py", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "n8n-workflow-automation", - "name": "n8n workflow automation", - "summary": "Designs and outputs n8n workflow JSON with robust triggers, idempotency, error handling, logging, retries, and human-in-the-loop review queues. Use when you need an auditable automation that won’t silently fail.", - "downloads": 17417, - "stars": 86, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/KOwl64/n8n-workflow-automation" + "slug": "ai-agent-development", + "name": "ai-agent-development", + "summary": "AI agent development workflow for building autonomous agents, multi-agent systems, and agent orchestration with CrewAI, LangGraph, and custom agents.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/ai-agent-development", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "peekaboo", - "name": "Peekaboo", - "summary": "Capture and automate macOS UI with the Peekaboo CLI.", - "downloads": 17315, - "stars": 47, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/peekaboo" + "slug": "ai-agents-architect", + "name": "ai-agents-architect", + "summary": "Expert in designing and building autonomous AI agents. Masters tool use, memory systems, planning strategies, and multi-agent orchestration. Use when: build agent, AI agent, autonomous agent, tool ...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/ai-agents-architect", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "apple-reminders", - "name": "Apple Reminders", - "summary": "Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output.", - "downloads": 17267, - "stars": 38, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/apple-reminders" + "slug": "ai-analyzer", + "name": "ai-analyzer", + "summary": "AI驱动的综合健康分析系统,整合多维度健康数据、识别异常模式、预测健康风险、提供个性化建议。支持智能问答和AI健康报告生成。", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/ai-analyzer", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "shopify", - "name": "Shopify", - "summary": "Shopify integration - currently under maintenance. Contact founders@maton.ai for assistance.", - "downloads": 17263, - "stars": 4, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/byungkyu/shopify" + "slug": "ai-engineer", + "name": "ai-engineer", + "summary": "Build production-ready LLM applications, advanced RAG systems, and intelligent agents. Implements vector search, multimodal AI, agent orchestration, and enterprise AI integrations.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/ai-engineer", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "markdown-convert", - "name": "Markdown.new Skill", - "summary": "Convert public web pages into clean Markdown with markdown.new for AI workflows. Use when tasks require URL-to-Markdown conversion for summarization, RAG ing...", - "downloads": 17028, - "stars": 38, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/joelchance/markdown-convert" + "slug": "ai-engineering-toolkit", + "name": "ai-engineering-toolkit", + "summary": "6 production-ready AI engineering workflows: prompt evaluation (8-dimension scoring), context budget planning, RAG pipeline design, agent security audit (65-point checklist), eval harness building, and product sense coaching.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/ai-engineering-toolkit", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "xero", - "name": "Xero", - "summary": "Xero API integration with managed OAuth. Manage contacts, invoices, payments, accounts, and run financial reports. Use this skill when users want to interact with Xero accounting data. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).", - "downloads": 16996, - "stars": 10, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/byungkyu/xero" + "slug": "ai-md", + "name": "ai-md", + "summary": "Convert human-written CLAUDE.md into AI-native structured-label format. Battle-tested across 4 models. Same rules, fewer tokens, higher compliance.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/ai-md", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "sag", - "name": "Sag", - "summary": "ElevenLabs text-to-speech with mac-style say UX.", - "downloads": 16964, - "stars": 18, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/steipete/sag" + "slug": "ai-ml", + "name": "ai-ml", + "summary": "AI and machine learning workflow covering LLM application development, RAG implementation, agent architecture, ML pipelines, and AI-powered features.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/ai-ml", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "marketing-mode", - "name": "Marketing Mode", - "summary": "Marketing Mode combines 23 comprehensive marketing skills covering strategy, psychology, content, SEO, conversion optimization, and paid growth. Use when users need marketing strategy, copywriting, SEO help, conversion optimization, paid advertising, or any marketing tactic.", - "downloads": 16922, - "stars": 114, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/TheSethRose/marketing-mode" + "slug": "ai-native-cli", + "name": "ai-native-cli", + "summary": "Design spec with 98 rules for building CLI tools that AI agents can safely use. Covers structured JSON output, error handling, input contracts, safety guardrails, exit codes, and agent self-description.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/ai-native-cli", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "git-essentials", - "name": "Git Essentials", - "summary": "Essential Git commands and workflows for version control, branching, and collaboration.", - "downloads": 16833, - "stars": 22, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/Arnarsson/git-essentials" + "slug": "ai-product", + "name": "ai-product", + "summary": "Every product will be AI-powered. The question is whether you'll build it right or ship a demo that falls apart in production. This skill covers LLM integration patterns, RAG architecture, prompt ...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/ai-product", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "google-slides", - "name": "Google Slides", - "summary": "Google Slides API integration with managed OAuth. Create presentations, add slides, insert content, and manage slide formatting. Use this skill when users want to interact with Google Slides. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).", - "downloads": 16830, - "stars": 33, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/byungkyu/google-slides" + "slug": "ai-studio-image", + "name": "ai-studio-image", + "summary": "Geracao de imagens humanizadas via Google AI Studio (Gemini). Fotos realistas estilo influencer ou educacional com iluminacao natural e imperfeicoes sutis.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/ai-studio-image", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "typeform", - "name": "Typeform", - "summary": "Typeform API integration with managed OAuth. Create forms, manage responses, and access insights. Use this skill when users want to interact with Typeform surveys and responses. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).", - "downloads": 16721, - "stars": 5, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/byungkyu/typeform" + "slug": "ai-wrapper-product", + "name": "ai-wrapper-product", + "summary": "Expert in building products that wrap AI APIs (OpenAI, Anthropic, etc.) into focused tools people will pay for. Not just 'ChatGPT but different' - products that solve specific problems with AI. Cov...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/ai-wrapper-product", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "salesforce-api", - "name": "Salesforce", - "summary": "Salesforce CRM API integration with managed OAuth. Query records with SOQL, manage sObjects (Contacts, Accounts, Leads, Opportunities), and perform batch operations. Use this skill when users want to interact with Salesforce data. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).", - "downloads": 16680, - "stars": 7, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/byungkyu/salesforce-api" + "slug": "airflow-dag-patterns", + "name": "airflow-dag-patterns", + "summary": "Build production Apache Airflow DAGs with best practices for operators, sensors, testing, and deployment. Use when creating data pipelines, orchestrating workflows, or scheduling batch jobs.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/airflow-dag-patterns", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "x-twitter", - "name": "x-twitter", - "summary": "Interact with Twitter/X — read tweets, search, post, like, retweet, and manage your timeline.", - "downloads": 16676, - "stars": 38, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/annettemekuro30/x-twitter" + "slug": "airtable-automation", + "name": "airtable-automation", + "summary": "Automate Airtable tasks via Rube MCP (Composio): records, bases, tables, fields, views. Always search tools first for current schemas.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/airtable-automation", + "updated_at": "2026-03-19T05:50:47Z" }, { - "slug": "stock-watcher", - "name": "Stock Watcher", - "summary": "Manage and monitor a personal stock watchlist with support for adding, removing, listing stocks, and summarizing their recent performance using data from 10jqka.com.cn. Use when the user wants to track specific stocks, get performance summaries, or manage their watchlist.", - "downloads": 16653, - "stars": 55, - "source_url": "https://github.com/openclaw/skills/tree/main/skills/Robin797860/stock-watcher" + "slug": "algolia-search", + "name": "algolia-search", + "summary": "Expert patterns for Algolia search implementation, indexing strategies, React InstantSearch, and relevance tuning Use when: adding search to, algolia, instantsearch, search api, search functionality.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/algolia-search", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "alpha-vantage", + "name": "alpha-vantage", + "summary": "Access real-time and historical stock market data, forex rates, cryptocurrency prices, commodities, economic indicators, and 50+ technical indicators via the Alpha Vantage API. Use when fetching stock prices (OHLCV), company fundamentals (income statement, balance sheet, cash...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/alpha-vantage", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "amazon-alexa", + "name": "amazon-alexa", + "summary": "Integracao completa com Amazon Alexa para criar skills de voz inteligentes, transformar Alexa em assistente com Claude como cerebro (projeto Auri) e integrar com AWS ecosystem (Lambda, DynamoDB,...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/amazon-alexa", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "amplitude-automation", + "name": "amplitude-automation", + "summary": "Automate Amplitude tasks via Rube MCP (Composio): events, user activity, cohorts, user identification. Always search tools first for current schemas.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/amplitude-automation", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "analytics-product", + "name": "analytics-product", + "summary": "Analytics de produto — PostHog, Mixpanel, eventos, funnels, cohorts, retencao, north star metric, OKRs e dashboards de produto. Ativar para: configurar tracking de eventos, criar funil de...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/analytics-product", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "analytics-tracking", + "name": "analytics-tracking", + "summary": "Design, audit, and improve analytics tracking systems that produce reliable, decision-ready data.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/analytics-tracking", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "analyze-project", + "name": "analyze-project", + "summary": "Forensic root cause analyzer for Antigravity sessions. Classifies scope deltas, rework patterns, root causes, hotspots, and auto-improves prompts/health.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/analyze-project", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "andrej-karpathy", + "name": "andrej-karpathy", + "summary": "Agente que simula Andrej Karpathy — ex-Director of AI da Tesla, co-fundador da OpenAI, fundador da Eureka Labs, e o maior educador de deep learning do mundo. Use quando quiser: aprender deep...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/andrej-karpathy", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "android_ui_verification", + "name": "android_ui_verification", + "summary": "Automated end-to-end UI testing and verification on an Android Emulator using ADB.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/android_ui_verification", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "android-jetpack-compose-expert", + "name": "android-jetpack-compose-expert", + "summary": "Expert guidance for building modern Android UIs with Jetpack Compose, covering state management, navigation, performance, and Material Design 3.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/android-jetpack-compose-expert", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "angular", + "name": "angular", + "summary": "Modern Angular (v20+) expert with deep knowledge of Signals, Standalone Components, Zoneless applications, SSR/Hydration, and reactive patterns.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/angular", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "angular-best-practices", + "name": "angular-best-practices", + "summary": "Angular performance optimization and best practices guide. Use when writing, reviewing, or refactoring Angular code for optimal performance, bundle size, and rendering efficiency.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/angular-best-practices", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "angular-migration", + "name": "angular-migration", + "summary": "Migrate from AngularJS to Angular using hybrid mode, incremental component rewriting, and dependency injection updates. Use when upgrading AngularJS applications, planning framework migrations, or ...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/angular-migration", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "angular-state-management", + "name": "angular-state-management", + "summary": "Master modern Angular state management with Signals, NgRx, and RxJS. Use when setting up global state, managing component stores, choosing between state solutions, or migrating from legacy patterns.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/angular-state-management", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "angular-ui-patterns", + "name": "angular-ui-patterns", + "summary": "Modern Angular UI patterns for loading states, error handling, and data display. Use when building UI components, handling async data, or managing component states.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/angular-ui-patterns", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "animejs-animation", + "name": "animejs-animation", + "summary": "Advanced JavaScript animation library skill for creating complex, high-performance web animations.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/animejs-animation", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "anti-reversing-techniques", + "name": "anti-reversing-techniques", + "summary": "Understand anti-reversing, obfuscation, and protection techniques encountered during software analysis. Use when analyzing protected binaries, bypassing anti-debugging for authorized analysis, or u...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/anti-reversing-techniques", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "antigravity-design-expert", + "name": "antigravity-design-expert", + "summary": "Core UI/UX engineering skill for building highly interactive, spatial, weightless, and glassmorphism-based web interfaces using GSAP and 3D CSS.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/antigravity-design-expert", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "antigravity-skill-orchestrator", + "name": "antigravity-skill-orchestrator", + "summary": "A meta-skill that understands task requirements, dynamically selects appropriate skills, tracks successful skill combinations using agent-memory-mcp, and prevents skill overuse for simple tasks.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/antigravity-skill-orchestrator", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "antigravity-workflows", + "name": "antigravity-workflows", + "summary": "Orchestrate multiple Antigravity skills through guided workflows for SaaS MVP delivery, security audits, AI agent builds, and browser QA.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/antigravity-workflows", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "api-design-principles", + "name": "api-design-principles", + "summary": "Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/api-design-principles", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "api-documentation", + "name": "api-documentation", + "summary": "API documentation workflow for generating OpenAPI specs, creating developer guides, and maintaining comprehensive API documentation.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/api-documentation", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "api-documentation-generator", + "name": "api-documentation-generator", + "summary": "Generate comprehensive, developer-friendly API documentation from code, including endpoints, parameters, examples, and best practices", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/api-documentation-generator", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "api-documenter", + "name": "api-documenter", + "summary": "Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/api-documenter", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "api-endpoint-builder", + "name": "api-endpoint-builder", + "summary": "Builds production-ready REST API endpoints with validation, error handling, authentication, and documentation. Follows best practices for security and scalability.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/api-endpoint-builder", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "api-fuzzing-bug-bounty", + "name": "api-fuzzing-bug-bounty", + "summary": "This skill should be used when the user asks to \\\"test API security\\\", \\\"fuzz APIs\\\", \\\"find IDOR vulnerabilities\\\", \\\"test REST API\\\", \\\"test GraphQL\\\", \\\"API penetration testing\\\", \\\"bug b...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/api-fuzzing-bug-bounty", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "api-patterns", + "name": "api-patterns", + "summary": "API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/api-patterns", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "api-security-best-practices", + "name": "api-security-best-practices", + "summary": "Implement secure API design patterns including authentication, authorization, input validation, rate limiting, and protection against common API vulnerabilities", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/api-security-best-practices", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "api-security-testing", + "name": "api-security-testing", + "summary": "API security testing workflow for REST and GraphQL APIs covering authentication, authorization, rate limiting, input validation, and security best practices.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/api-security-testing", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "api-testing-observability-api-mock", + "name": "api-testing-observability-api-mock", + "summary": "You are an API mocking expert specializing in realistic mock services for development, testing, and demos. Design mocks that simulate real API behavior and enable parallel development.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/api-testing-observability-api-mock", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "apify-actor-development", + "name": "apify-actor-development", + "summary": "Develop, debug, and deploy Apify Actors - serverless cloud programs for web scraping, automation, and data processing. Use when creating new Actors, modifying existing ones, or troubleshooting Acto...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/apify-actor-development", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "apify-actorization", + "name": "apify-actorization", + "summary": "Convert existing projects into Apify Actors - serverless cloud programs. Actorize JavaScript/TypeScript (SDK with Actor.init/exit), Python (async context manager), or any language (CLI wrapper). Us...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/apify-actorization", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "apify-audience-analysis", + "name": "apify-audience-analysis", + "summary": "Understand audience demographics, preferences, behavior patterns, and engagement quality across Facebook, Instagram, YouTube, and TikTok.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/apify-audience-analysis", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "apify-brand-reputation-monitoring", + "name": "apify-brand-reputation-monitoring", + "summary": "Track reviews, ratings, sentiment, and brand mentions across Google Maps, Booking.com, TripAdvisor, Facebook, Instagram, YouTube, and TikTok. Use when user asks to monitor brand reputation, analyze...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/apify-brand-reputation-monitoring", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "apify-competitor-intelligence", + "name": "apify-competitor-intelligence", + "summary": "Analyze competitor strategies, content, pricing, ads, and market positioning across Google Maps, Booking.com, Facebook, Instagram, YouTube, and TikTok.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/apify-competitor-intelligence", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "apify-content-analytics", + "name": "apify-content-analytics", + "summary": "Track engagement metrics, measure campaign ROI, and analyze content performance across Instagram, Facebook, YouTube, and TikTok.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/apify-content-analytics", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "apify-ecommerce", + "name": "apify-ecommerce", + "summary": "Scrape e-commerce data for pricing intelligence, customer reviews, and seller discovery across Amazon, Walmart, eBay, IKEA, and 50+ marketplaces. Use when user asks to monitor prices, track competi...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/apify-ecommerce", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "apify-influencer-discovery", + "name": "apify-influencer-discovery", + "summary": "Find and evaluate influencers for brand partnerships, verify authenticity, and track collaboration performance across Instagram, Facebook, YouTube, and TikTok.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/apify-influencer-discovery", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "apify-lead-generation", + "name": "apify-lead-generation", + "summary": "Generates B2B/B2C leads by scraping Google Maps, websites, Instagram, TikTok, Facebook, LinkedIn, YouTube, and Google Search. Use when user asks to find leads, prospects, businesses, build lead lis...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/apify-lead-generation", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "apify-market-research", + "name": "apify-market-research", + "summary": "Analyze market conditions, geographic opportunities, pricing, consumer behavior, and product validation across Google Maps, Facebook, Instagram, Booking.com, and TripAdvisor.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/apify-market-research", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "apify-trend-analysis", + "name": "apify-trend-analysis", + "summary": "Discover and track emerging trends across Google Trends, Instagram, Facebook, YouTube, and TikTok to inform content strategy.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/apify-trend-analysis", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "apify-ultimate-scraper", + "name": "apify-ultimate-scraper", + "summary": "Universal AI-powered web scraper for any platform. Scrape data from Instagram, Facebook, TikTok, YouTube, Google Maps, Google Search, Google Trends, Booking.com, and TripAdvisor. Use for lead gener...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/apify-ultimate-scraper", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "app-builder", + "name": "app-builder", + "summary": "Main application building orchestrator. Creates full-stack applications from natural language requests. Determines project type, selects tech stack, coordinates agents.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/app-builder", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "app-store-optimization", + "name": "app-store-optimization", + "summary": "Complete App Store Optimization (ASO) toolkit for researching, optimizing, and tracking mobile app performance on Apple App Store and Google Play Store", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/app-store-optimization", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "appdeploy", + "name": "appdeploy", + "summary": "Deploy web apps with backend APIs, database, and file storage. Use when the user asks to deploy or publish a website or web app and wants a public URL. Uses HTTP API via curl.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/appdeploy", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "application-performance-performance-optimization", + "name": "application-performance-performance-optimization", + "summary": "Optimize end-to-end application performance with profiling, observability, and backend/frontend tuning. Use when coordinating performance optimization across the stack.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/application-performance-performance-optimization", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "architect-review", + "name": "architect-review", + "summary": "Master software architect specializing in modern architecture", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/architect-review", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "architecture", + "name": "architecture", + "summary": "Architectural decision-making framework. Requirements analysis, trade-off evaluation, ADR documentation. Use when making architecture decisions or analyzing system design.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/architecture", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "architecture-decision-records", + "name": "architecture-decision-records", + "summary": "Write and maintain Architecture Decision Records (ADRs) following best practices for technical decision documentation. Use when documenting significant technical decisions, reviewing past architect...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/architecture-decision-records", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "architecture-patterns", + "name": "architecture-patterns", + "summary": "Implement proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design. Use when architecting complex backend systems or refactoring existing ...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/architecture-patterns", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "arm-cortex-expert", + "name": "arm-cortex-expert", + "summary": "Senior embedded software engineer specializing in firmware and driver development for ARM Cortex-M microcontrollers (Teensy, STM32, nRF52, SAMD).", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/arm-cortex-expert", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "asana-automation", + "name": "asana-automation", + "summary": "Automate Asana tasks via Rube MCP (Composio): tasks, projects, sections, teams, workspaces. Always search tools first for current schemas.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/asana-automation", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "ask-questions-if-underspecified", + "name": "ask-questions-if-underspecified", + "summary": "Clarify requirements before implementing. Use when serious doubts arise.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/ask-questions-if-underspecified", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "astro", + "name": "astro", + "summary": "Build content-focused websites with Astro — zero JS by default, islands architecture, multi-framework components, and Markdown/MDX support.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/astro", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "astropy", + "name": "astropy", + "summary": "Comprehensive Python library for astronomy and astrophysics. This skill should be used when working with astronomical data including celestial coordinates, physical units, FITS files, cosmological calculations, time systems, tables, world coordinate systems (WCS), and...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/astropy", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "async-python-patterns", + "name": "async-python-patterns", + "summary": "Master Python asyncio, concurrent programming, and async/await patterns for high-performance applications. Use when building async APIs, concurrent systems, or I/O-bound applications requiring non-...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/async-python-patterns", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "attack-tree-construction", + "name": "attack-tree-construction", + "summary": "Build comprehensive attack trees to visualize threat paths. Use when mapping attack scenarios, identifying defense gaps, or communicating security risks to stakeholders.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/attack-tree-construction", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "audio-transcriber", + "name": "audio-transcriber", + "summary": "Transform audio recordings into professional Markdown documentation with intelligent summaries using LLM integration", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/audio-transcriber", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "audit-context-building", + "name": "audit-context-building", + "summary": "Enables ultra-granular, line-by-line code analysis to build deep architectural context before vulnerability or bug finding.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/audit-context-building", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "audit-skills", + "name": "audit-skills", + "summary": "Expert security auditor for AI Skills and Bundles. Performs non-intrusive static analysis to identify malicious patterns, data leaks, system stability risks, and obfuscated payloads across Windows, macOS, Linux/Unix, and Mobile (Android/iOS).", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/audit-skills", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "auri-core", + "name": "auri-core", + "summary": "Auri: assistente de voz inteligente (Alexa + Claude claude-opus-4-20250805). Visao do produto, persona Vitoria Neural, stack AWS, modelo Free/Pro/Business/Enterprise, roadmap 4 fases, GTM,", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/auri-core", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "auth-implementation-patterns", + "name": "auth-implementation-patterns", + "summary": "Master authentication and authorization patterns including JWT, OAuth2, session management, and RBAC to build secure, scalable access control systems. Use when implementing auth systems, securing A...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/auth-implementation-patterns", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "autonomous-agent-patterns", + "name": "autonomous-agent-patterns", + "summary": "Design patterns for building autonomous coding agents. Covers tool integration, permission systems, browser automation, and human-in-the-loop workflows. Use when building AI agents, designing tool ...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/autonomous-agent-patterns", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "autonomous-agents", + "name": "autonomous-agents", + "summary": "Autonomous agents are AI systems that can independently decompose goals, plan actions, execute tools, and self-correct without constant human guidance. The challenge isn't making them capable - it'...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/autonomous-agents", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "avalonia-layout-zafiro", + "name": "avalonia-layout-zafiro", + "summary": "Guidelines for modern Avalonia UI layout using Zafiro.Avalonia, emphasizing shared styles, generic components, and avoiding XAML redundancy.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/avalonia-layout-zafiro", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "avalonia-viewmodels-zafiro", + "name": "avalonia-viewmodels-zafiro", + "summary": "Optimal ViewModel and Wizard creation patterns for Avalonia using Zafiro and ReactiveUI.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/avalonia-viewmodels-zafiro", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "avalonia-zafiro-development", + "name": "avalonia-zafiro-development", + "summary": "Mandatory skills, conventions, and behavioral rules for Avalonia UI development using the Zafiro toolkit.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/avalonia-zafiro-development", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "avoid-ai-writing", + "name": "avoid-ai-writing", + "summary": "Audit and rewrite content to remove 21 categories of AI writing patterns with a 43-entry replacement table", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/avoid-ai-writing", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "aws-cost-cleanup", + "name": "aws-cost-cleanup", + "summary": "Automated cleanup of unused AWS resources to reduce costs", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/aws-cost-cleanup", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "aws-cost-optimizer", + "name": "aws-cost-optimizer", + "summary": "Comprehensive AWS cost analysis and optimization recommendations using AWS CLI and Cost Explorer", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/aws-cost-optimizer", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "aws-penetration-testing", + "name": "aws-penetration-testing", + "summary": "This skill should be used when the user asks to \\\"pentest AWS\\\", \\\"test AWS security\\\", \\\"enumerate IAM\\\", \\\"exploit cloud infrastructure\\\", \\\"AWS privilege escalation\\\", \\\"S3 bucket testing...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/aws-penetration-testing", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "aws-serverless", + "name": "aws-serverless", + "summary": "Specialized skill for building production-ready serverless applications on AWS. Covers Lambda functions, API Gateway, DynamoDB, SQS/SNS event-driven patterns, SAM/CDK deployment, and cold start opt...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/aws-serverless", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "aws-skills", + "name": "aws-skills", + "summary": "AWS development with infrastructure automation and cloud architecture patterns", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/aws-skills", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "awt-e2e-testing", + "name": "awt-e2e-testing", + "summary": "AI-powered E2E web testing — eyes and hands for AI coding tools. Declarative YAML scenarios, Playwright execution, visual matching (OpenCV + OCR), platform auto-detection (Flutter/React/Vue), learning DB. Install: npx skills add ksgisang/awt-skill --skill awt -g", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/awt-e2e-testing", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azd-deployment", + "name": "azd-deployment", + "summary": "Deploy containerized applications to Azure Container Apps using Azure Developer CLI (azd). Use when setting up azd projects, writing azure.yaml configuration, creating Bicep infrastructure for Cont...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azd-deployment", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-agents-persistent-dotnet", + "name": "azure-ai-agents-persistent-dotnet", + "summary": "Azure AI Agents Persistent SDK for .NET. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-agents-persistent-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-agents-persistent-java", + "name": "azure-ai-agents-persistent-java", + "summary": "Azure AI Agents Persistent SDK for Java. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-agents-persistent-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-anomalydetector-java", + "name": "azure-ai-anomalydetector-java", + "summary": "Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate/multivariate anomaly detection, time-series analysis, or AI-powered monitoring.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-anomalydetector-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-contentsafety-java", + "name": "azure-ai-contentsafety-java", + "summary": "Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text/image analysis, blocklist management, or harm detection for hate, violence, sexual conten...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-contentsafety-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-contentsafety-py", + "name": "azure-ai-contentsafety-py", + "summary": "Azure AI Content Safety SDK for Python. Use for detecting harmful content in text and images with multi-severity classification.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-contentsafety-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-contentsafety-ts", + "name": "azure-ai-contentsafety-ts", + "summary": "Analyze text and images for harmful content using Azure AI Content Safety (@azure-rest/ai-content-safety). Use when moderating user-generated content, detecting hate speech, violence, sexual conten...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-contentsafety-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-contentunderstanding-py", + "name": "azure-ai-contentunderstanding-py", + "summary": "Azure AI Content Understanding SDK for Python. Use for multimodal content extraction from documents, images, audio, and video.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-contentunderstanding-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-document-intelligence-dotnet", + "name": "azure-ai-document-intelligence-dotnet", + "summary": "Azure AI Document Intelligence SDK for .NET. Extract text, tables, and structured data from documents using prebuilt and custom models.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-document-intelligence-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-document-intelligence-ts", + "name": "azure-ai-document-intelligence-ts", + "summary": "Extract text, tables, and structured data from documents using Azure Document Intelligence (@azure-rest/ai-document-intelligence). Use when processing invoices, receipts, IDs, forms, or building cu...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-document-intelligence-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-formrecognizer-java", + "name": "azure-ai-formrecognizer-java", + "summary": "Build document analysis applications with Azure Document Intelligence (Form Recognizer) SDK for Java. Use when extracting text, tables, key-value pairs from documents, receipts, invoices, or buildi...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-formrecognizer-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-ml-py", + "name": "azure-ai-ml-py", + "summary": "Azure Machine Learning SDK v2 for Python. Use for ML workspaces, jobs, models, datasets, compute, and pipelines.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-ml-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-openai-dotnet", + "name": "azure-ai-openai-dotnet", + "summary": "Azure OpenAI SDK for .NET. Client library for Azure OpenAI and OpenAI services. Use for chat completions, embeddings, image generation, audio transcription, and assistants.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-openai-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-projects-dotnet", + "name": "azure-ai-projects-dotnet", + "summary": "Azure AI Projects SDK for .NET. High-level client for Azure AI Foundry projects including agents, connections, datasets, deployments, evaluations, and indexes.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-projects-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-projects-java", + "name": "azure-ai-projects-java", + "summary": "Azure AI Projects SDK for Java. High-level SDK for Azure AI Foundry project management including connections, datasets, indexes, and evaluations.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-projects-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-projects-py", + "name": "azure-ai-projects-py", + "summary": "Build AI applications using the Azure AI Projects Python SDK (azure-ai-projects). Use when working with Foundry project clients, creating versioned agents with PromptAgentDefinition, running evalua...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-projects-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-projects-ts", + "name": "azure-ai-projects-ts", + "summary": "Build AI applications using Azure AI Projects SDK for JavaScript (@azure/ai-projects). Use when working with Foundry project clients, agents, connections, deployments, datasets, indexes, evaluation...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-projects-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-textanalytics-py", + "name": "azure-ai-textanalytics-py", + "summary": "Azure AI Text Analytics SDK for sentiment analysis, entity recognition, key phrases, language detection, PII, and healthcare NLP. Use for natural language processing on text.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-textanalytics-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-transcription-py", + "name": "azure-ai-transcription-py", + "summary": "Azure AI Transcription SDK for Python. Use for real-time and batch speech-to-text transcription with timestamps and diarization.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-transcription-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-translation-document-py", + "name": "azure-ai-translation-document-py", + "summary": "Azure AI Document Translation SDK for batch translation of documents with format preservation. Use for translating Word, PDF, Excel, PowerPoint, and other document formats at scale.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-translation-document-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-translation-text-py", + "name": "azure-ai-translation-text-py", + "summary": "Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-translation-text-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-translation-ts", + "name": "azure-ai-translation-ts", + "summary": "Build translation applications using Azure Translation SDKs for JavaScript (@azure-rest/ai-translation-text, @azure-rest/ai-translation-document). Use when implementing text translation, transliter...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-translation-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-vision-imageanalysis-java", + "name": "azure-ai-vision-imageanalysis-java", + "summary": "Build image analysis applications with Azure AI Vision SDK for Java. Use when implementing image captioning, OCR text extraction, object detection, tagging, or smart cropping.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-vision-imageanalysis-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-vision-imageanalysis-py", + "name": "azure-ai-vision-imageanalysis-py", + "summary": "Azure AI Vision Image Analysis SDK for captions, tags, objects, OCR, people detection, and smart cropping. Use for computer vision and image understanding tasks.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-vision-imageanalysis-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-voicelive-dotnet", + "name": "azure-ai-voicelive-dotnet", + "summary": "Azure AI Voice Live SDK for .NET. Build real-time voice AI applications with bidirectional WebSocket communication.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-voicelive-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-voicelive-java", + "name": "azure-ai-voicelive-java", + "summary": "Azure AI VoiceLive SDK for Java. Real-time bidirectional voice conversations with AI assistants using WebSocket.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-voicelive-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-voicelive-py", + "name": "azure-ai-voicelive-py", + "summary": "Build real-time voice AI applications using Azure AI Voice Live SDK (azure-ai-voicelive). Use this skill when creating Python applications that need real-time bidirectional audio communication with...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-voicelive-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-ai-voicelive-ts", + "name": "azure-ai-voicelive-ts", + "summary": "Azure AI Voice Live SDK for JavaScript/TypeScript. Build real-time voice AI applications with bidirectional WebSocket communication.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-ai-voicelive-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-appconfiguration-java", + "name": "azure-appconfiguration-java", + "summary": "Azure App Configuration SDK for Java. Centralized application configuration management with key-value settings, feature flags, and snapshots.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-appconfiguration-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-appconfiguration-py", + "name": "azure-appconfiguration-py", + "summary": "Azure App Configuration SDK for Python. Use for centralized configuration management, feature flags, and dynamic settings.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-appconfiguration-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-appconfiguration-ts", + "name": "azure-appconfiguration-ts", + "summary": "Build applications using Azure App Configuration SDK for JavaScript (@azure/app-configuration). Use when working with configuration settings, feature flags, Key Vault references, dynamic refresh, o...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-appconfiguration-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-communication-callautomation-java", + "name": "azure-communication-callautomation-java", + "summary": "Build call automation workflows with Azure Communication Services Call Automation Java SDK. Use when implementing IVR systems, call routing, call recording, DTMF recognition, text-to-speech, or AI-...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-communication-callautomation-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-communication-callingserver-java", + "name": "azure-communication-callingserver-java", + "summary": "Azure Communication Services CallingServer (legacy) Java SDK. Note - This SDK is deprecated. Use azure-communication-callautomation instead for new projects. Only use this skill when maintaining le...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-communication-callingserver-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-communication-chat-java", + "name": "azure-communication-chat-java", + "summary": "Build real-time chat applications with Azure Communication Services Chat Java SDK. Use when implementing chat threads, messaging, participants, read receipts, typing notifications, or real-time cha...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-communication-chat-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-communication-common-java", + "name": "azure-communication-common-java", + "summary": "Azure Communication Services common utilities for Java. Use when working with CommunicationTokenCredential, user identifiers, token refresh, or shared authentication across ACS services.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-communication-common-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-communication-sms-java", + "name": "azure-communication-sms-java", + "summary": "Send SMS messages with Azure Communication Services SMS Java SDK. Use when implementing SMS notifications, alerts, OTP delivery, bulk messaging, or delivery reports.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-communication-sms-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-compute-batch-java", + "name": "azure-compute-batch-java", + "summary": "Azure Batch SDK for Java. Run large-scale parallel and HPC batch jobs with pools, jobs, tasks, and compute nodes.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-compute-batch-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-containerregistry-py", + "name": "azure-containerregistry-py", + "summary": "Azure Container Registry SDK for Python. Use for managing container images, artifacts, and repositories.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-containerregistry-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-cosmos-db-py", + "name": "azure-cosmos-db-py", + "summary": "Build Azure Cosmos DB NoSQL services with Python/FastAPI following production-grade patterns. Use when implementing database client setup with dual auth (DefaultAzureCredential + emulator), service...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-cosmos-db-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-cosmos-java", + "name": "azure-cosmos-java", + "summary": "Azure Cosmos DB SDK for Java. NoSQL database operations with global distribution, multi-model support, and reactive patterns.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-cosmos-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-cosmos-py", + "name": "azure-cosmos-py", + "summary": "Azure Cosmos DB SDK for Python (NoSQL API). Use for document CRUD, queries, containers, and globally distributed data.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-cosmos-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-cosmos-rust", + "name": "azure-cosmos-rust", + "summary": "Azure Cosmos DB SDK for Rust (NoSQL API). Use for document CRUD, queries, containers, and globally distributed data.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-cosmos-rust", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-cosmos-ts", + "name": "azure-cosmos-ts", + "summary": "Azure Cosmos DB JavaScript/TypeScript SDK (@azure/cosmos) for data plane operations. Use for CRUD operations on documents, queries, bulk operations, and container management.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-cosmos-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-data-tables-java", + "name": "azure-data-tables-java", + "summary": "Build table storage applications with Azure Tables SDK for Java. Use when working with Azure Table Storage or Cosmos DB Table API for NoSQL key-value data, schemaless storage, or structured data at...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-data-tables-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-data-tables-py", + "name": "azure-data-tables-py", + "summary": "Azure Tables SDK for Python (Storage and Cosmos DB). Use for NoSQL key-value storage, entity CRUD, and batch operations.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-data-tables-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-eventgrid-dotnet", + "name": "azure-eventgrid-dotnet", + "summary": "Azure Event Grid SDK for .NET. Client library for publishing and consuming events with Azure Event Grid. Use for event-driven architectures, pub/sub messaging, CloudEvents, and EventGridEvents.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-eventgrid-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-eventgrid-java", + "name": "azure-eventgrid-java", + "summary": "Build event-driven applications with Azure Event Grid SDK for Java. Use when publishing events, implementing pub/sub patterns, or integrating with Azure services via events.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-eventgrid-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-eventgrid-py", + "name": "azure-eventgrid-py", + "summary": "Azure Event Grid SDK for Python. Use for publishing events, handling CloudEvents, and event-driven architectures.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-eventgrid-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-eventhub-dotnet", + "name": "azure-eventhub-dotnet", + "summary": "Azure Event Hubs SDK for .NET.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-eventhub-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-eventhub-java", + "name": "azure-eventhub-java", + "summary": "Build real-time streaming applications with Azure Event Hubs SDK for Java. Use when implementing event streaming, high-throughput data ingestion, or building event-driven architectures.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-eventhub-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-eventhub-py", + "name": "azure-eventhub-py", + "summary": "Azure Event Hubs SDK for Python streaming. Use for high-throughput event ingestion, producers, consumers, and checkpointing.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-eventhub-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-eventhub-rust", + "name": "azure-eventhub-rust", + "summary": "Azure Event Hubs SDK for Rust. Use for sending and receiving events, streaming data ingestion.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-eventhub-rust", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-eventhub-ts", + "name": "azure-eventhub-ts", + "summary": "Build event streaming applications using Azure Event Hubs SDK for JavaScript (@azure/event-hubs). Use when implementing high-throughput event ingestion, real-time analytics, IoT telemetry, or event...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-eventhub-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-functions", + "name": "azure-functions", + "summary": "Expert patterns for Azure Functions development including isolated worker model, Durable Functions orchestration, cold start optimization, and production patterns. Covers .NET, Python, and Node.js ...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-functions", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-identity-dotnet", + "name": "azure-identity-dotnet", + "summary": "Azure Identity SDK for .NET. Authentication library for Azure SDK clients using Microsoft Entra ID. Use for DefaultAzureCredential, managed identity, service principals, and developer credentials.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-identity-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-identity-java", + "name": "azure-identity-java", + "summary": "Azure Identity Java SDK for authentication with Azure services. Use when implementing DefaultAzureCredential, managed identity, service principal, or any Azure authentication pattern in Java applic...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-identity-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-identity-py", + "name": "azure-identity-py", + "summary": "Azure Identity SDK for Python authentication. Use for DefaultAzureCredential, managed identity, service principals, and token caching.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-identity-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-identity-rust", + "name": "azure-identity-rust", + "summary": "Azure Identity SDK for Rust authentication. Use for DeveloperToolsCredential, ManagedIdentityCredential, ClientSecretCredential, and token-based authentication.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-identity-rust", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-identity-ts", + "name": "azure-identity-ts", + "summary": "Authenticate to Azure services using Azure Identity SDK for JavaScript (@azure/identity). Use when configuring authentication with DefaultAzureCredential, managed identity, service principals, or i...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-identity-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-keyvault-certificates-rust", + "name": "azure-keyvault-certificates-rust", + "summary": "Azure Key Vault Certificates SDK for Rust. Use for creating, importing, and managing certificates.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-keyvault-certificates-rust", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-keyvault-keys-rust", + "name": "azure-keyvault-keys-rust", + "summary": "Azure Key Vault Keys SDK for Rust. Use for creating, managing, and using cryptographic keys. Triggers: \"keyvault keys rust\", \"KeyClient rust\", \"create key rust\", \"encrypt rust\", \"sign rust\".", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-keyvault-keys-rust", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-keyvault-keys-ts", + "name": "azure-keyvault-keys-ts", + "summary": "Manage cryptographic keys using Azure Key Vault Keys SDK for JavaScript (@azure/keyvault-keys). Use when creating, encrypting/decrypting, signing, or rotating keys.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-keyvault-keys-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-keyvault-py", + "name": "azure-keyvault-py", + "summary": "Azure Key Vault SDK for Python. Use for secrets, keys, and certificates management with secure storage.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-keyvault-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-keyvault-secrets-rust", + "name": "azure-keyvault-secrets-rust", + "summary": "Azure Key Vault Secrets SDK for Rust. Use for storing and retrieving secrets, passwords, and API keys. Triggers: \"keyvault secrets rust\", \"SecretClient rust\", \"get secret rust\", \"set secret rust\".", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-keyvault-secrets-rust", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-keyvault-secrets-ts", + "name": "azure-keyvault-secrets-ts", + "summary": "Manage secrets using Azure Key Vault Secrets SDK for JavaScript (@azure/keyvault-secrets). Use when storing and retrieving application secrets or configuration values.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-keyvault-secrets-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-maps-search-dotnet", + "name": "azure-maps-search-dotnet", + "summary": "Azure Maps SDK for .NET. Location-based services including geocoding, routing, rendering, geolocation, and weather. Use for address search, directions, map tiles, IP geolocation, and weather data.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-maps-search-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-messaging-webpubsub-java", + "name": "azure-messaging-webpubsub-java", + "summary": "Build real-time web applications with Azure Web PubSub SDK for Java. Use when implementing WebSocket-based messaging, live updates, chat applications, or server-to-client push notifications.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-messaging-webpubsub-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-messaging-webpubsubservice-py", + "name": "azure-messaging-webpubsubservice-py", + "summary": "Azure Web PubSub Service SDK for Python. Use for real-time messaging, WebSocket connections, and pub/sub patterns.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-messaging-webpubsubservice-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-mgmt-apicenter-dotnet", + "name": "azure-mgmt-apicenter-dotnet", + "summary": "Azure API Center SDK for .NET. Centralized API inventory management with governance, versioning, and discovery.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-mgmt-apicenter-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-mgmt-apicenter-py", + "name": "azure-mgmt-apicenter-py", + "summary": "Azure API Center Management SDK for Python. Use for managing API inventory, metadata, and governance across your organization.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-mgmt-apicenter-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-mgmt-apimanagement-dotnet", + "name": "azure-mgmt-apimanagement-dotnet", + "summary": "Azure Resource Manager SDK for API Management in .NET.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-mgmt-apimanagement-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-mgmt-apimanagement-py", + "name": "azure-mgmt-apimanagement-py", + "summary": "Azure API Management SDK for Python. Use for managing APIM services, APIs, products, subscriptions, and policies.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-mgmt-apimanagement-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-mgmt-applicationinsights-dotnet", + "name": "azure-mgmt-applicationinsights-dotnet", + "summary": "Azure Application Insights SDK for .NET. Application performance monitoring and observability resource management.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-mgmt-applicationinsights-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-mgmt-arizeaiobservabilityeval-dotnet", + "name": "azure-mgmt-arizeaiobservabilityeval-dotnet", + "summary": "Azure Resource Manager SDK for Arize AI Observability and Evaluation (.NET).", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-mgmt-arizeaiobservabilityeval-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-mgmt-botservice-dotnet", + "name": "azure-mgmt-botservice-dotnet", + "summary": "Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-mgmt-botservice-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-mgmt-botservice-py", + "name": "azure-mgmt-botservice-py", + "summary": "Azure Bot Service Management SDK for Python. Use for creating, managing, and configuring Azure Bot Service resources.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-mgmt-botservice-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-mgmt-fabric-dotnet", + "name": "azure-mgmt-fabric-dotnet", + "summary": "Azure Resource Manager SDK for Fabric in .NET.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-mgmt-fabric-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-mgmt-fabric-py", + "name": "azure-mgmt-fabric-py", + "summary": "Azure Fabric Management SDK for Python. Use for managing Microsoft Fabric capacities and resources.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-mgmt-fabric-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-mgmt-mongodbatlas-dotnet", + "name": "azure-mgmt-mongodbatlas-dotnet", + "summary": "Manage MongoDB Atlas Organizations as Azure ARM resources using Azure.ResourceManager.MongoDBAtlas SDK. Use when creating, updating, listing, or deleting MongoDB Atlas organizations through Azure M...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-mgmt-mongodbatlas-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-mgmt-weightsandbiases-dotnet", + "name": "azure-mgmt-weightsandbiases-dotnet", + "summary": "Azure Weights & Biases SDK for .NET. ML experiment tracking and model management via Azure Marketplace. Use for creating W&B instances, managing SSO, marketplace integration, and ML observability.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-mgmt-weightsandbiases-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-microsoft-playwright-testing-ts", + "name": "azure-microsoft-playwright-testing-ts", + "summary": "Run Playwright tests at scale using Azure Playwright Workspaces (formerly Microsoft Playwright Testing). Use when scaling browser tests across cloud-hosted browsers, integrating with CI/CD pipeline...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-microsoft-playwright-testing-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-monitor-ingestion-java", + "name": "azure-monitor-ingestion-java", + "summary": "Azure Monitor Ingestion SDK for Java. Send custom logs to Azure Monitor via Data Collection Rules (DCR) and Data Collection Endpoints (DCE).", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-monitor-ingestion-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-monitor-ingestion-py", + "name": "azure-monitor-ingestion-py", + "summary": "Azure Monitor Ingestion SDK for Python. Use for sending custom logs to Log Analytics workspace via Logs Ingestion API.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-monitor-ingestion-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-monitor-opentelemetry-exporter-java", + "name": "azure-monitor-opentelemetry-exporter-java", + "summary": "Azure Monitor OpenTelemetry Exporter for Java. Export OpenTelemetry traces, metrics, and logs to Azure Monitor/Application Insights.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-monitor-opentelemetry-exporter-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-monitor-opentelemetry-exporter-py", + "name": "azure-monitor-opentelemetry-exporter-py", + "summary": "Azure Monitor OpenTelemetry Exporter for Python. Use for low-level OpenTelemetry export to Application Insights.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-monitor-opentelemetry-exporter-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-monitor-opentelemetry-py", + "name": "azure-monitor-opentelemetry-py", + "summary": "Azure Monitor OpenTelemetry Distro for Python. Use for one-line Application Insights setup with auto-instrumentation.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-monitor-opentelemetry-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-monitor-opentelemetry-ts", + "name": "azure-monitor-opentelemetry-ts", + "summary": "Instrument applications with Azure Monitor and OpenTelemetry for JavaScript (@azure/monitor-opentelemetry). Use when adding distributed tracing, metrics, and logs to Node.js applications with Appli...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-monitor-opentelemetry-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-monitor-query-java", + "name": "azure-monitor-query-java", + "summary": "Azure Monitor Query SDK for Java. Execute Kusto queries against Log Analytics workspaces and query metrics from Azure resources.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-monitor-query-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-monitor-query-py", + "name": "azure-monitor-query-py", + "summary": "Azure Monitor Query SDK for Python. Use for querying Log Analytics workspaces and Azure Monitor metrics.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-monitor-query-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-postgres-ts", + "name": "azure-postgres-ts", + "summary": "Connect to Azure Database for PostgreSQL Flexible Server from Node.js/TypeScript using the pg (node-postgres) package.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-postgres-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-resource-manager-cosmosdb-dotnet", + "name": "azure-resource-manager-cosmosdb-dotnet", + "summary": "Azure Resource Manager SDK for Cosmos DB in .NET.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-resource-manager-cosmosdb-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-resource-manager-durabletask-dotnet", + "name": "azure-resource-manager-durabletask-dotnet", + "summary": "Azure Resource Manager SDK for Durable Task Scheduler in .NET.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-resource-manager-durabletask-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-resource-manager-mysql-dotnet", + "name": "azure-resource-manager-mysql-dotnet", + "summary": "Azure MySQL Flexible Server SDK for .NET. Database management for MySQL Flexible Server deployments.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-resource-manager-mysql-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-resource-manager-playwright-dotnet", + "name": "azure-resource-manager-playwright-dotnet", + "summary": "Azure Resource Manager SDK for Microsoft Playwright Testing in .NET.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-resource-manager-playwright-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-resource-manager-postgresql-dotnet", + "name": "azure-resource-manager-postgresql-dotnet", + "summary": "Azure PostgreSQL Flexible Server SDK for .NET. Database management for PostgreSQL Flexible Server deployments.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-resource-manager-postgresql-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-resource-manager-redis-dotnet", + "name": "azure-resource-manager-redis-dotnet", + "summary": "Azure Resource Manager SDK for Redis in .NET.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-resource-manager-redis-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-resource-manager-sql-dotnet", + "name": "azure-resource-manager-sql-dotnet", + "summary": "Azure Resource Manager SDK for Azure SQL in .NET.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-resource-manager-sql-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-search-documents-dotnet", + "name": "azure-search-documents-dotnet", + "summary": "Azure AI Search SDK for .NET (Azure.Search.Documents). Use for building search applications with full-text, vector, semantic, and hybrid search.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-search-documents-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-search-documents-py", + "name": "azure-search-documents-py", + "summary": "Azure AI Search SDK for Python. Use for vector search, hybrid search, semantic ranking, indexing, and skillsets.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-search-documents-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-search-documents-ts", + "name": "azure-search-documents-ts", + "summary": "Build search applications using Azure AI Search SDK for JavaScript (@azure/search-documents). Use when creating/managing indexes, implementing vector/hybrid search, semantic ranking, or building ag...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-search-documents-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-security-keyvault-keys-dotnet", + "name": "azure-security-keyvault-keys-dotnet", + "summary": "Azure Key Vault Keys SDK for .NET. Client library for managing cryptographic keys in Azure Key Vault and Managed HSM. Use for key creation, rotation, encryption, decryption, signing, and verification.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-security-keyvault-keys-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-security-keyvault-keys-java", + "name": "azure-security-keyvault-keys-java", + "summary": "Azure Key Vault Keys Java SDK for cryptographic key management. Use when creating, managing, or using RSA/EC keys, performing encrypt/decrypt/sign/verify operations, or working with HSM-backed keys.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-security-keyvault-keys-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-security-keyvault-secrets-java", + "name": "azure-security-keyvault-secrets-java", + "summary": "Azure Key Vault Secrets Java SDK for secret management. Use when storing, retrieving, or managing passwords, API keys, connection strings, or other sensitive configuration data.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-security-keyvault-secrets-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-servicebus-dotnet", + "name": "azure-servicebus-dotnet", + "summary": "Azure Service Bus SDK for .NET. Enterprise messaging with queues, topics, subscriptions, and sessions.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-servicebus-dotnet", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-servicebus-py", + "name": "azure-servicebus-py", + "summary": "Azure Service Bus SDK for Python messaging. Use for queues, topics, subscriptions, and enterprise messaging patterns.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-servicebus-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-servicebus-ts", + "name": "azure-servicebus-ts", + "summary": "Build messaging applications using Azure Service Bus SDK for JavaScript (@azure/service-bus). Use when implementing queues, topics/subscriptions, message sessions, dead-letter handling, or enterpri...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-servicebus-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-speech-to-text-rest-py", + "name": "azure-speech-to-text-rest-py", + "summary": "Azure Speech to Text REST API for short audio (Python). Use for simple speech recognition of audio files up to 60 seconds without the Speech SDK.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-speech-to-text-rest-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-storage-blob-java", + "name": "azure-storage-blob-java", + "summary": "Build blob storage applications with Azure Storage Blob SDK for Java. Use when uploading, downloading, or managing files in Azure Blob Storage, working with containers, or implementing streaming da...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-storage-blob-java", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-storage-blob-py", + "name": "azure-storage-blob-py", + "summary": "Azure Blob Storage SDK for Python. Use for uploading, downloading, listing blobs, managing containers, and blob lifecycle.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-storage-blob-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-storage-blob-rust", + "name": "azure-storage-blob-rust", + "summary": "Azure Blob Storage SDK for Rust. Use for uploading, downloading, and managing blobs and containers.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-storage-blob-rust", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-storage-blob-ts", + "name": "azure-storage-blob-ts", + "summary": "Azure Blob Storage JavaScript/TypeScript SDK (@azure/storage-blob) for blob operations. Use for uploading, downloading, listing, and managing blobs and containers.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-storage-blob-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-storage-file-datalake-py", + "name": "azure-storage-file-datalake-py", + "summary": "Azure Data Lake Storage Gen2 SDK for Python. Use for hierarchical file systems, big data analytics, and file/directory operations.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-storage-file-datalake-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-storage-file-share-py", + "name": "azure-storage-file-share-py", + "summary": "Azure Storage File Share SDK for Python. Use for SMB file shares, directories, and file operations in the cloud.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-storage-file-share-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-storage-file-share-ts", + "name": "azure-storage-file-share-ts", + "summary": "Azure File Share JavaScript/TypeScript SDK (@azure/storage-file-share) for SMB file share operations.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-storage-file-share-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-storage-queue-py", + "name": "azure-storage-queue-py", + "summary": "Azure Queue Storage SDK for Python. Use for reliable message queuing, task distribution, and asynchronous processing.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-storage-queue-py", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-storage-queue-ts", + "name": "azure-storage-queue-ts", + "summary": "Azure Queue Storage JavaScript/TypeScript SDK (@azure/storage-queue) for message queue operations. Use for sending, receiving, peeking, and deleting messages in queues.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-storage-queue-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "azure-web-pubsub-ts", + "name": "azure-web-pubsub-ts", + "summary": "Build real-time messaging applications using Azure Web PubSub SDKs for JavaScript (@azure/web-pubsub, @azure/web-pubsub-client). Use when implementing WebSocket-based real-time features, pub/sub me...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-web-pubsub-ts", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "backend-architect", + "name": "backend-architect", + "summary": "Expert backend architect specializing in scalable API design, microservices architecture, and distributed systems.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/backend-architect", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "backend-dev-guidelines", + "name": "backend-dev-guidelines", + "summary": "Opinionated backend development standards for Node.js + Express + TypeScript microservices. Covers layered architecture, BaseController pattern, dependency injection, Prisma repositories, Zod valid...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/backend-dev-guidelines", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "backend-development-feature-development", + "name": "backend-development-feature-development", + "summary": "Orchestrate end-to-end backend feature development from requirements to deployment. Use when coordinating multi-phase feature delivery across teams and services.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/backend-development-feature-development", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "backend-security-coder", + "name": "backend-security-coder", + "summary": "Expert in secure backend coding practices specializing in input validation, authentication, and API security. Use PROACTIVELY for backend security implementations or security code reviews.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/backend-security-coder", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "backtesting-frameworks", + "name": "backtesting-frameworks", + "summary": "Build robust backtesting systems for trading strategies with proper handling of look-ahead bias, survivorship bias, and transaction costs. Use when developing trading algorithms, validating strateg...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/backtesting-frameworks", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "bamboohr-automation", + "name": "bamboohr-automation", + "summary": "Automate BambooHR tasks via Rube MCP (Composio): employees, time-off, benefits, dependents, employee updates. Always search tools first for current schemas.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/bamboohr-automation", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "basecamp-automation", + "name": "basecamp-automation", + "summary": "Automate Basecamp project management, to-dos, messages, people, and to-do list organization via Rube MCP (Composio). Always search tools first for current schemas.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/basecamp-automation", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "baseline-ui", + "name": "baseline-ui", + "summary": "Validates animation durations, enforces typography scale, checks component accessibility, and prevents layout anti-patterns in Tailwind CSS projects. Use when building UI components, reviewing CSS utilities, styling React views, or enforcing design consistency.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/baseline-ui", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "bash-defensive-patterns", + "name": "bash-defensive-patterns", + "summary": "Master defensive Bash programming techniques for production-grade scripts. Use when writing robust shell scripts, CI/CD pipelines, or system utilities requiring fault tolerance and safety.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/bash-defensive-patterns", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "bash-linux", + "name": "bash-linux", + "summary": "Bash/Linux terminal patterns. Critical commands, piping, error handling, scripting. Use when working on macOS or Linux systems.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/bash-linux", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "bash-pro", + "name": "bash-pro", + "summary": "Master of defensive Bash scripting for production automation, CI/CD", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/bash-pro", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "bash-scripting", + "name": "bash-scripting", + "summary": "Bash scripting workflow for creating production-ready shell scripts with defensive patterns, error handling, and testing.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/bash-scripting", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "bats-testing-patterns", + "name": "bats-testing-patterns", + "summary": "Master Bash Automated Testing System (Bats) for comprehensive shell script testing. Use when writing tests for shell scripts, CI/CD pipelines, or requiring test-driven development of shell utilities.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/bats-testing-patterns", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "bazel-build-optimization", + "name": "bazel-build-optimization", + "summary": "Optimize Bazel builds for large-scale monorepos. Use when configuring Bazel, implementing remote execution, or optimizing build performance for enterprise codebases.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/bazel-build-optimization", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "bdi-mental-states", + "name": "bdi-mental-states", + "summary": "This skill should be used when the user asks to \"model agent mental states\", \"implement BDI architecture\", \"create belief-desire-intention models\", \"transform RDF to beliefs\", \"build cognitive agent\", or mentions BDI ontology, mental state modeling, rational agency, or neuro-symbolic AI integration.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/bdi-mental-states", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "beautiful-prose", + "name": "beautiful-prose", + "summary": "A hard-edged writing style contract for timeless, forceful English prose without modern AI tics. Use when users ask for prose or rewrites that must be clean, exact, concrete, and free of AI cadence, filler, or therapeutic tone.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/beautiful-prose", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "behavioral-modes", + "name": "behavioral-modes", + "summary": "AI operational modes (brainstorm, implement, debug, review, teach, ship, orchestrate). Use to adapt behavior based on task type.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/behavioral-modes", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "bevy-ecs-expert", + "name": "bevy-ecs-expert", + "summary": "Master Bevy's Entity Component System (ECS) in Rust, covering Systems, Queries, Resources, and parallel scheduling.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/bevy-ecs-expert", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "bill-gates", + "name": "bill-gates", + "summary": "Agente que simula Bill Gates — cofundador da Microsoft, arquiteto da industria de software comercial, estrategista tecnologico global, investidor sistemico e filantropo baseado em dados. Use...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/bill-gates", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "billing-automation", + "name": "billing-automation", + "summary": "Build automated billing systems for recurring payments, invoicing, subscription lifecycle, and dunning management. Use when implementing subscription billing, automating invoicing, or managing recu...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/billing-automation", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "binary-analysis-patterns", + "name": "binary-analysis-patterns", + "summary": "Master binary analysis patterns including disassembly, decompilation, control flow analysis, and code pattern recognition. Use when analyzing executables, understanding compiled code, or performing...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/binary-analysis-patterns", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "biopython", + "name": "biopython", + "summary": "Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget;...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/biopython", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "bitbucket-automation", + "name": "bitbucket-automation", + "summary": "Automate Bitbucket repositories, pull requests, branches, issues, and workspace management via Rube MCP (Composio). Always search tools first for current schemas.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/bitbucket-automation", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "blockchain-developer", + "name": "blockchain-developer", + "summary": "Build production-ready Web3 applications, smart contracts, and decentralized systems. Implements DeFi protocols, NFT platforms, DAOs, and enterprise blockchain integrations.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/blockchain-developer", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "blockrun", + "name": "blockrun", + "summary": "Use when user needs capabilities Claude lacks (image generation, real-time X/Twitter data) or explicitly requests external models (\\\\\\\"blockrun\\\\\\\", \\\\\\\"use grok\\\\\\\", \\\\\\\"use gpt\\\\\\\", \\\\\\\"da...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/blockrun", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "blog-writing-guide", + "name": "blog-writing-guide", + "summary": "Write, review, and improve blog posts for the Sentry engineering blog following Sentry's specific writing standards, voice, and quality bar. Use this skill whenever someone asks to write a blog post, draft a technical article, review blog content, improve a draft, write a...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/blog-writing-guide", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "blueprint", + "name": "blueprint", + "summary": "Turn a one-line objective into a step-by-step construction plan any coding agent can execute cold. Each step has a self-contained context brief — a fresh agent in a new session can pick up any step without reading prior steps.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/blueprint", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "box-automation", + "name": "box-automation", + "summary": "Automate Box cloud storage operations including file upload/download, search, folder management, sharing, collaborations, and metadata queries via Rube MCP (Composio). Always search tools first for...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/box-automation", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "brainstorming", + "name": "brainstorming", + "summary": "Use before creative or constructive work (features, architecture, behavior). Transforms vague ideas into validated designs through disciplined reasoning and collaboration.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/brainstorming", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "brand-guidelines-anthropic", + "name": "brand-guidelines-anthropic", + "summary": "Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatt...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/brand-guidelines-anthropic", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "brand-guidelines-community", + "name": "brand-guidelines-community", + "summary": "Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatt...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/brand-guidelines-community", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "brevo-automation", + "name": "brevo-automation", + "summary": "Automate Brevo (Sendinblue) tasks via Rube MCP (Composio): manage email campaigns, create/edit templates, track senders, and monitor campaign performance. Always search tools first for current sche...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/brevo-automation", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "broken-authentication", + "name": "broken-authentication", + "summary": "This skill should be used when the user asks to \\\"test for broken authentication vulnerabilities\\\", \\\"assess session management security\\\", \\\"perform credential stuffing tests\\\", \\\"evaluate ...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/broken-authentication", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "browser-automation", + "name": "browser-automation", + "summary": "Browser automation powers web testing, scraping, and AI agent interactions. The difference between a flaky script and a reliable system comes down to understanding selectors, waiting strategies, an...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/browser-automation", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "browser-extension-builder", + "name": "browser-extension-builder", + "summary": "Expert in building browser extensions that solve real problems - Chrome, Firefox, and cross-browser extensions. Covers extension architecture, manifest v3, content scripts, popup UIs, monetization ...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/browser-extension-builder", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "bug-hunter", + "name": "bug-hunter", + "summary": "Systematically finds and fixes bugs using proven debugging techniques. Traces from symptoms to root cause, implements fixes, and prevents regression.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/bug-hunter", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "build", + "name": "build", + "summary": "build", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/build", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "building-native-ui", + "name": "building-native-ui", + "summary": "Complete guide for building beautiful apps with Expo Router. Covers fundamentals, styling, components, navigation, animations, patterns, and native tabs.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/building-native-ui", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "bullmq-specialist", + "name": "bullmq-specialist", + "summary": "BullMQ expert for Redis-backed job queues, background processing, and reliable async execution in Node.js/TypeScript applications. Use when: bullmq, bull queue, redis queue, background job, job queue.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/bullmq-specialist", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "bun-development", + "name": "bun-development", + "summary": "Modern JavaScript/TypeScript development with Bun runtime. Covers package management, bundling, testing, and migration from Node.js. Use when working with Bun, optimizing JS/TS development speed, o...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/bun-development", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "burp-suite-testing", + "name": "burp-suite-testing", + "summary": "This skill should be used when the user asks to \\\"intercept HTTP traffic\\\", \\\"modify web requests\\\", \\\"use Burp Suite for testing\\\", \\\"perform web vulnerability scanning\\\", \\\"test with Burp ...", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/burp-suite-testing", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "burpsuite-project-parser", + "name": "burpsuite-project-parser", + "summary": "Searches and explores Burp Suite project files (.burp) from the command line. Use when searching response headers or bodies with regex patterns, extracting security audit findings, dumping proxy history or site map data, or analyzing HTTP traffic captured in a Burp project.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/burpsuite-project-parser", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "business-analyst", + "name": "business-analyst", + "summary": "Master modern business analysis with AI-powered analytics, real-time dashboards, and data-driven insights. Build comprehensive KPI frameworks, predictive models, and strategic recommendations.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/business-analyst", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "busybox-on-windows", + "name": "busybox-on-windows", + "summary": "How to use a Win32 build of BusyBox to run many of the standard UNIX command line tools on Windows.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/busybox-on-windows", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "c-pro", + "name": "c-pro", + "summary": "Write efficient C code with proper memory management, pointer", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/c-pro", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "c4-architecture-c4-architecture", + "name": "c4-architecture-c4-architecture", + "summary": "Generate comprehensive C4 architecture documentation for an existing repository/codebase using a bottom-up analysis approach.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/c4-architecture-c4-architecture", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "c4-code", + "name": "c4-code", + "summary": "Expert C4 Code-level documentation specialist. Analyzes code directories to create comprehensive C4 code-level documentation including function signatures, arguments, dependencies, and code structure.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/c4-code", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "c4-component", + "name": "c4-component", + "summary": "Expert C4 Component-level documentation specialist. Synthesizes C4 Code-level documentation into Component-level architecture, defining component boundaries, interfaces, and relationships.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/c4-component", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "c4-container", + "name": "c4-container", + "summary": "Expert C4 Container-level documentation specialist.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/c4-container", + "updated_at": "2026-03-19T05:50:47Z" + }, + { + "slug": "c4-context", + "name": "c4-context", + "summary": "Expert C4 Context-level documentation specialist. Creates high-level system context diagrams, documents personas, user journeys, system features, and external dependencies.", + "downloads": 0, + "stars": 25738, + "category": "development", + "tags": [ + "agentic-skills", + "ai-agents", + "ai-workflows", + "antigravity", + "autonomous-coding" + ], + "source_url": "https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/c4-context", + "updated_at": "2026-03-19T05:50:47Z" } ] } diff --git a/scripts/fetch-featured-skills.mjs b/scripts/fetch-featured-skills.mjs index e989893..f2277ad 100644 --- a/scripts/fetch-featured-skills.mjs +++ b/scripts/fetch-featured-skills.mjs @@ -1,94 +1,426 @@ #!/usr/bin/env node /** - * Fetches popular skills from ClawHub API, resolves each skill's owner - * via detail API, and produces featured-skills.json with GitHub source URLs. + * Aggregates AI Agent Skills from a curated list of high-quality GitHub repositories. + * + * Fetches metadata and directory trees for each curated repo, detects individual skills + * within each repo, and outputs featured-skills.json with one entry per skill. + * + * API budget: ~14 requests total (7 Repos API + 7 Trees API). + * + * Requires: GITHUB_TOKEN environment variable. */ -const CLAWHUB_LIST_API = 'https://clawhub.ai/api/v1/skills?sort=downloads&limit=100' -const CLAWHUB_DETAIL_API = 'https://clawhub.ai/api/v1/skills' -const GITHUB_REPO = 'openclaw/skills' +import { existsSync, readFileSync, writeFileSync } from 'node:fs' +import { resolve } from 'node:path' + +// Load .env file +const envPath = resolve(import.meta.dirname, '..', '.env') +if (existsSync(envPath)) { + for (const line of readFileSync(envPath, 'utf-8').split('\n')) { + const trimmed = line.trim() + if (!trimmed || trimmed.startsWith('#')) continue + const idx = trimmed.indexOf('=') + if (idx === -1) continue + const key = trimmed.slice(0, idx).trim() + const value = trimmed.slice(idx + 1).trim() + if (!process.env[key]) process.env[key] = value + } +} + const OUTPUT_FILE = 'featured-skills.json' -const sleep = (ms) => new Promise((r) => setTimeout(r, ms)) +// Curated high-quality skill repositories (ordered by stars desc) +const CURATED_REPOS = [ + 'anthropics/skills', + 'sickn33/antigravity-awesome-skills', + 'K-Dense-AI/claude-scientific-skills', + 'travisvn/awesome-claude-skills', + 'VoltAgent/awesome-agent-skills', + 'anthropics/knowledge-work-plugins', + 'alirezarezvani/claude-skills', +] + +const MAX_SKILLS = 300 +const CONCURRENCY = 10 +const MAX_RATE_LIMIT_WAIT_SECS = 60 + +// Skill scan bases matching installer.rs SKILL_SCAN_BASES +const SKILL_SCAN_BASES = [ + 'skills', + 'skills/.curated', + 'skills/.experimental', + 'skills/.system', + '.claude/skills', +] + +// Directories to skip when scanning root-level subdirs +const ROOT_SKIP_DIRS = new Set([ + 'skills', '.claude', '.git', '.github', '.vscode', 'node_modules', + '.idea', '.DS_Store', 'dist', 'build', 'out', 'target', + 'docs', 'test', 'tests', '__tests__', 'examples', 'src', 'lib', +]) + +// Category classification rules +const CATEGORY_RULES = [ + { keywords: ['browser', 'automation', 'playwright', 'puppeteer'], category: 'browser-automation' }, + { keywords: ['security', 'audit', 'vulnerability', 'pentest'], category: 'security' }, + { keywords: ['devops', 'deploy', 'infra', 'docker', 'kubernetes'], category: 'devops' }, + { keywords: ['marketing', 'seo', 'ads', 'advertising'], category: 'marketing' }, + { keywords: ['database', 'sql', 'postgres', 'mongo'], category: 'database' }, + { keywords: ['git', 'github', 'pr', 'code-review'], category: 'development' }, + { keywords: ['ai', 'llm', 'agent', 'model'], category: 'ai-assistant' }, +] + +const GITHUB_TOKEN = process.env.GITHUB_TOKEN || '' + +// ─── HTTP helpers ─── async function fetchJson(url, retries = 3) { + const headers = { + Accept: 'application/vnd.github+json', + 'User-Agent': 'skills-hub-aggregator', + } + if (GITHUB_TOKEN) { + headers.Authorization = `Bearer ${GITHUB_TOKEN}` + } + for (let attempt = 0; attempt <= retries; attempt++) { - const res = await fetch(url, { - headers: { 'User-Agent': 'skills-hub-ci' }, - }) - if (res.status === 429 && attempt < retries) { - const delay = 2 ** (attempt + 1) * 1000 // 2s, 4s, 8s - console.warn(`Rate limited (429), retrying in ${delay / 1000}s... (${attempt + 1}/${retries})`) - await sleep(delay) + const res = await fetch(url, { headers }) + + if (res.status === 403 || res.status === 429) { + const resetHeader = res.headers.get('x-ratelimit-reset') + let waitSecs = resetHeader + ? Math.max(Number(resetHeader) - Math.floor(Date.now() / 1000), 1) + : Math.pow(2, attempt + 1) + + if (waitSecs > MAX_RATE_LIMIT_WAIT_SECS) { + console.warn(`Rate limited, reset in ${waitSecs}s (exceeds max ${MAX_RATE_LIMIT_WAIT_SECS}s) — skipping`) + return null + } + console.warn(`Rate limited (${res.status}), waiting ${waitSecs}s (attempt ${attempt + 1}/${retries + 1})...`) + await sleep(waitSecs * 1000) continue } - if (!res.ok) throw new Error(`${url} returned ${res.status}`) + + if (!res.ok) { + if (attempt < retries) { + await sleep(Math.pow(2, attempt) * 1000) + continue + } + return null + } + return res.json() } + return null } -async function getOwnerHandle(slug) { - try { - const data = await fetchJson(`${CLAWHUB_DETAIL_API}/${encodeURIComponent(slug)}`) - return data?.owner?.handle ?? '' - } catch { - return '' - } +function sleep(ms) { + return new Promise((r) => setTimeout(r, ms)) } +// Run async tasks with bounded concurrency +async function pMap(items, fn, concurrency) { + const results = new Array(items.length) + let idx = 0 + + async function worker() { + while (idx < items.length) { + const i = idx++ + results[i] = await fn(items[i], i) + } + } + + const workers = Array.from({ length: Math.min(concurrency, items.length) }, () => worker()) + await Promise.all(workers) + return results +} + +// ─── Step 1: Fetch curated repo metadata ─── + +async function fetchRepoMetadata(fullName) { + const url = `https://api.github.com/repos/${fullName}` + const data = await fetchJson(url) + if (!data || !data.full_name) { + console.warn(` Skipping ${fullName}: unable to fetch metadata`) + return null + } + return data +} + +async function fetchAllRepoMetadata() { + console.log(`Fetching metadata for ${CURATED_REPOS.length} curated repos...`) + const results = await pMap( + CURATED_REPOS, + async (fullName) => { + console.log(` Fetching: ${fullName}`) + return fetchRepoMetadata(fullName) + }, + CONCURRENCY, + ) + const repos = results.filter(Boolean) + console.log(`Successfully fetched ${repos.length}/${CURATED_REPOS.length} repos`) + return repos +} + +// ─── Step 2: Detect skills in each repo ─── + +function detectSkillsFromTree(treeItems) { + const filePaths = new Set() + const dirPaths = new Set() + for (const item of treeItems) { + if (item.type === 'blob') filePaths.add(item.path) + else if (item.type === 'tree') dirPaths.add(item.path) + } + + const skills = [] // { dirPath } + const foundDirs = new Set() + + // Scan SKILL_SCAN_BASES + for (const base of SKILL_SCAN_BASES) { + for (const dir of dirPaths) { + if (!dir.startsWith(base + '/')) continue + const rest = dir.slice(base.length + 1) + if (rest.includes('/')) continue // not a direct child + + const hasSkillMd = filePaths.has(dir + '/SKILL.md') + const isClaudeSkill = base === '.claude/skills' + + if (hasSkillMd || isClaudeSkill) { + if (!foundDirs.has(dir)) { + foundDirs.add(dir) + skills.push({ dirPath: dir }) + } + } + } + } + + // Scan root-level subdirectories (must have SKILL.md or .claude-plugin/plugin.json) + for (const dir of dirPaths) { + if (dir.includes('/')) continue + if (ROOT_SKIP_DIRS.has(dir) || dir.startsWith('.')) continue + if (foundDirs.has(dir)) continue + + if (filePaths.has(dir + '/SKILL.md') || filePaths.has(dir + '/.claude-plugin/plugin.json')) { + foundDirs.add(dir) + skills.push({ dirPath: dir }) + } + } + + // Single-skill repo: root has SKILL.md and no sub-skills found + if (skills.length === 0 && filePaths.has('SKILL.md')) { + skills.push({ dirPath: null }) + } + + return skills +} + +async function getRepoTree(owner, repo, branch) { + const url = `https://api.github.com/repos/${owner}/${repo}/git/trees/${encodeURIComponent(branch)}?recursive=1` + const data = await fetchJson(url, 2) + if (!data || !data.tree) return null + if (data.truncated) { + console.warn(` Warning: tree for ${owner}/${repo} was truncated, some skills may be missed`) + } + return data.tree +} + +// ─── Step 3: Classify ─── + +function classify(topics, description) { + const text = [...(topics || []), description || ''].join(' ').toLowerCase() + for (const rule of CATEGORY_RULES) { + if (rule.keywords.some((kw) => text.includes(kw))) { + return rule.category + } + } + return 'general' +} + +// ─── SKILL.md helpers ─── + +function parseSkillMdFrontmatter(content) { + const lines = content.split('\n') + if (lines[0].trim() !== '---') return null + let name = null + let description = null + for (let i = 1; i < lines.length; i++) { + const l = lines[i].trim() + if (l === '---') break + if (l.startsWith('name:')) { + name = l.slice(5).trim().replace(/^["']|["']$/g, '') + } else if (l.startsWith('description:')) { + description = l.slice(12).trim().replace(/^["']|["']$/g, '') + } + } + return { name, description } +} + +async function fetchSkillMdContent(owner, repo, branch, dirPath) { + const filePath = dirPath ? `${dirPath}/SKILL.md` : 'SKILL.md' + const url = `https://api.github.com/repos/${owner}/${repo}/contents/${encodeURIComponent(filePath)}?ref=${encodeURIComponent(branch)}` + const data = await fetchJson(url, 1) + if (!data || !data.content) return null + const content = Buffer.from(data.content, 'base64').toString('utf-8') + return parseSkillMdFrontmatter(content) +} + +// ─── Name helpers ─── + +function kebabToTitle(name) { + return name + .split(/[-_]/) + .map((w) => w.charAt(0).toUpperCase() + w.slice(1)) + .join(' ') +} + +function slugFromDirPath(dirPath, repoName) { + if (!dirPath) return repoName + const parts = dirPath.split('/') + return parts[parts.length - 1] +} + +// ─── Main ─── + async function main() { - console.log('Fetching skills from ClawHub API...') - let clawSkills - try { - const data = await fetchJson(CLAWHUB_LIST_API) - clawSkills = Array.isArray(data) ? data : data.items ?? data.skills ?? data.data ?? [] - } catch (err) { - console.error('Failed to fetch ClawHub API:', err.message) + if (!GITHUB_TOKEN) { + console.error('Error: GITHUB_TOKEN environment variable is required.') + console.error('Set it via: export GITHUB_TOKEN=ghp_xxx') process.exit(1) } - console.log(`Got ${clawSkills.length} skills from ClawHub`) - console.log('Resolving skill owners...') - const skills = [] - // Process in batches of 10 for reasonable parallelism - for (let i = 0; i < clawSkills.length; i += 10) { - const batch = clawSkills.slice(i, i + 10) - const results = await Promise.all( - batch.map(async (s) => { - const slug = s.slug ?? '' - if (!slug) return null - const owner = await getOwnerHandle(slug) - const source_url = owner - ? `https://github.com/${GITHUB_REPO}/tree/main/skills/${owner}/${slug}` - : '' - const stats = s.stats ?? {} - return { - slug, - name: s.displayName ?? s.name ?? slug, - summary: s.summary ?? s.description ?? '', - downloads: stats.downloads ?? s.downloads ?? 0, - stars: stats.stars ?? s.stars ?? 0, - source_url, - } - }), - ) - skills.push(...results.filter(Boolean)) - process.stdout.write(` ${Math.min(i + 10, clawSkills.length)}/${clawSkills.length}\r`) + // Step 1: Fetch curated repo metadata + const repos = await fetchAllRepoMetadata() + + // Step 2: Detect skills in each repo via Trees API + console.log('Scanning repo trees for skills...') + const skillEntries = [] // { repo, dirPath } + let treeFailures = 0 + + await pMap( + repos, + async (repo) => { + const [owner, repoName] = repo.full_name.split('/') + const tree = await getRepoTree(owner, repoName, repo.default_branch) + if (!tree) { + treeFailures++ + return + } + + const detected = detectSkillsFromTree(tree) + if (detected.length === 0) { + // No detectable skill structure — treat whole repo as single skill + skillEntries.push({ repo, dirPath: null }) + return + } + + for (const s of detected) { + skillEntries.push({ repo, dirPath: s.dirPath }) + } + }, + CONCURRENCY, + ) + + console.log(`Detected ${skillEntries.length} skills across ${repos.length} repos (${treeFailures} tree fetch failures)`) + + // Fallback: if no skills detected, keep existing local file + if (skillEntries.length === 0) { + if (existsSync(OUTPUT_FILE)) { + console.warn('No skills fetched from GitHub — keeping existing local featured-skills.json') + } else { + console.error('No skills fetched and no local fallback exists.') + process.exit(1) + } + return } - console.log('') - const matched = skills.filter((s) => s.source_url).length - console.log(`Matched ${matched}/${skills.length} skills to GitHub paths`) + // Step 3: Sort by stars desc, deduplicate, take top MAX_SKILLS + skillEntries.sort((a, b) => b.repo.stargazers_count - a.repo.stargazers_count) + + const seenSlugs = new Set() + const dedupedEntries = skillEntries.filter((entry) => { + const slug = slugFromDirPath(entry.dirPath, entry.repo.full_name.split('/')[1]) + if (seenSlugs.has(slug)) return false + seenSlugs.add(slug) + return true + }) + console.log(`After dedup: ${dedupedEntries.length} unique skills (removed ${skillEntries.length - dedupedEntries.length} duplicates)`) + + const topEntries = dedupedEntries.slice(0, MAX_SKILLS) + + // Step 4: Fetch SKILL.md for top skills to get real names + console.log(`Fetching SKILL.md for ${topEntries.length} skills...`) + const skillMdMap = new Map() // index -> { name, description } + await pMap( + topEntries, + async (entry, i) => { + const [owner, repoName] = entry.repo.full_name.split('/') + const md = await fetchSkillMdContent(owner, repoName, entry.repo.default_branch, entry.dirPath) + if (md) skillMdMap.set(i, md) + }, + CONCURRENCY, + ) + console.log(`Fetched SKILL.md for ${skillMdMap.size}/${topEntries.length} skills`) + + // Filter out entries without SKILL.md + const validEntries = topEntries.filter((_, i) => skillMdMap.has(i)) + console.log(`${validEntries.length} skills have SKILL.md (filtered out ${topEntries.length - validEntries.length})`) + + // Rebuild index mapping after filtering + const validMdList = validEntries.map((entry, _i) => { + const origIndex = topEntries.indexOf(entry) + return { entry, md: skillMdMap.get(origIndex) } + }) + + // Step 5: Build output + const categorySet = new Set() + const topSkills = validMdList.map(({ entry, md }) => { + const { repo, dirPath } = entry + const repoName = repo.full_name.split('/')[1] + const slug = slugFromDirPath(dirPath, repoName) + const name = md.name || slug + const summary = (md && md.description) || repo.description || '' + const category = classify(repo.topics, repo.description) + categorySet.add(category) + + let sourceUrl + if (dirPath) { + sourceUrl = `${repo.html_url}/tree/${repo.default_branch}/${dirPath}` + } else { + sourceUrl = repo.html_url + } + + return { + slug, + name, + summary, + downloads: 0, + stars: repo.stargazers_count, + category, + tags: (repo.topics || []).slice(0, 5), + source_url: sourceUrl, + updated_at: repo.updated_at, + } + }) + + // Re-sort after name update (stars desc, then name asc) + topSkills.sort((a, b) => b.stars - a.stars || a.name.localeCompare(b.name)) + + const categories = Array.from(categorySet).sort() const output = { updated_at: new Date().toISOString(), - skills, + total: topSkills.length, + categories, + skills: topSkills, } - const { writeFileSync } = await import('node:fs') writeFileSync(OUTPUT_FILE, JSON.stringify(output, null, 2) + '\n') - console.log(`Wrote ${skills.length} skills to ${OUTPUT_FILE}`) + console.log(`Wrote ${topSkills.length} skills (of ${skillEntries.length} detected) to ${OUTPUT_FILE}`) } -main() +main().catch((err) => { + console.error('Fatal error:', err) + process.exit(1) +}) diff --git a/src-tauri/src/core/featured_skills.rs b/src-tauri/src/core/featured_skills.rs index e738837..c948fa0 100644 --- a/src-tauri/src/core/featured_skills.rs +++ b/src-tauri/src/core/featured_skills.rs @@ -48,14 +48,18 @@ pub fn fetch_featured_skills(store: &SkillStore) -> Result> { fn fetch_featured_skills_inner(url: &str, store: &SkillStore) -> Result> { if let Ok(json_str) = fetch_from_url(url) { if let Ok(skills) = parse_and_filter(&json_str) { - let _ = store.set_setting(CACHE_KEY, &json_str); - return Ok(skills); + if !skills.is_empty() { + let _ = store.set_setting(CACHE_KEY, &json_str); + return Ok(skills); + } } } // Fallback to cache if let Ok(Some(cached)) = store.get_setting(CACHE_KEY) { if let Ok(skills) = parse_and_filter(&cached) { - return Ok(skills); + if !skills.is_empty() { + return Ok(skills); + } } } // Fallback to bundled JSON